.newsletter-popup[hidden] { display: none !important; }
.newsletter-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    width: 360px;
    max-width: calc(100vw - 48px);
    max-height: calc(100dvh - 48px);
    overflow-y: auto;
    padding: 28px;
    border: 1px solid #dce7e5;
    border-radius: 16px;
    background: #fff;
    color: #193532;
    box-shadow: 0 12px 48px #19353226;
    animation: newsletter-enter .25s ease-out;
}
.newsletter-popup h2 { margin: 0 24px 10px 0; font-size: 24px; color: #193532; }
.newsletter-popup p { font-size: 14px; line-height: 1.5; margin: 0 0 16px; }
.newsletter-popup label { display: block; margin: 10px 0 4px; font-size: 14px; font-weight: 600; }
.newsletter-popup input { width: 100%; height: 44px; padding: 10px 12px; border: 1px solid #b5c5c2; border-radius: 6px; background: #fff; color: #193532; font-size: 16px; }
.newsletter-popup__close { position: absolute; top: 6px; right: 6px; width: 44px; height: 44px; border: 0; background: transparent; color: #193532; font-size: 28px; cursor: pointer; }
.newsletter-popup__submit { width: 100%; margin-top: 18px; padding: 12px; border: 0; border-radius: 6px; background: #193532; color: #fff; font-weight: 600; cursor: pointer; }
.newsletter-popup__submit:disabled { opacity: .6; cursor: wait; }
.newsletter-popup :focus-visible { outline: 3px solid #568f85; outline-offset: 3px; }
.newsletter-popup .newsletter-popup__status { margin: 14px 0 0; }
.newsletter-popup__status:empty { display: none; }
@keyframes newsletter-enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
    .newsletter-popup { right: 0; bottom: 0; width: 100%; max-width: none; max-height: 85dvh; padding: 24px 24px calc(20px + env(safe-area-inset-bottom)); border-radius: 16px 16px 0 0; }
}
@media (prefers-reduced-motion: reduce) { .newsletter-popup { animation: none; } }
