/* Newsletter Popup */
#nl-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .3s ease;
}

#nl-popup-overlay.visible {
    opacity: 1;
}

#nl-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.95);
    max-width: 420px;
    width: calc(100% - 32px);
    background: #F7F7F5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

#nl-popup-overlay.visible #nl-popup {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

/* Close button */
#nl-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

/* Cover image */
#nl-popup-cover {
    width: 160px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Typography */
#nl-popup-eyebrow {
    margin: 0 0 6px;
    font-family: var(--font-2), Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9AB295;
}

#nl-popup-heading {
    margin: 0 0 10px;
    font-family: var(--font-0), Georgia, serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 300;
    color: #1B231A;
}

#nl-popup-desc {
    margin: 0 0 20px;
    font-family: var(--font-2), Arial, sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #555;
}

/* Form — matches footer newsletter form */
#nl-popup-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
}

#nl-popup-form input[type="email"] {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    flex: 1;
    min-width: 0;
    font-family: var(--font-2), Arial, sans-serif;
    font-size: 15px;
    outline: none;
}

/* Feedback */
#nl-popup-feedback {
    margin: 10px 0 0;
    font-family: var(--font-2), Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #50684B;
    min-height: 20px;
}

/* Fine print */
#nl-popup-policy {
    margin: 14px 0 0;
    font-family: var(--font-2), Arial, sans-serif;
    font-size: 11px;
    line-height: 16px;
    color: #999;
    font-style: italic;
}

#nl-popup-policy a {
    color: inherit;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
    #nl-popup-heading {
        font-size: 22px;
        line-height: 28px;
    }

    #nl-popup-form {
        flex-direction: column;
    }

    #nl-popup-form input[type="email"] {
        width: 100%;
    }

    #nl-popup-form button {
        width: 100%;
    }
}
