/* FC Popup Opt-in — styles */

#fc-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fc-fade-in 0.3s ease;
}

@keyframes fc-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#fc-popup-box {
    border-radius: 12px;
    padding: 36px 32px 28px;
    max-width: 440px;
    width: 92%;
    position: relative;
    font-family: Montserrat, Arial, sans-serif;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    animation: fc-slide-up 0.35s ease;
}

@keyframes fc-slide-up {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

#fc-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    padding: 0;
}

#fc-popup-close:hover { color: #555; }

#fc-popup-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

#fc-popup-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

#fc-popup-body {
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 18px;
}

#fc-popup-email {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
}

#fc-popup-email:focus { border-color: #90D324; }

#fc-popup-btn {
    width: 100%;
    padding: 13px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

#fc-popup-btn:hover { opacity: 0.88; }

#fc-popup-footer {
    font-size: 10px;
    text-align: center;
    margin: 10px 0 0;
    color: #bbb;
}

#fc-popup-success {
    text-align: center;
    padding: 12px 0 4px;
}

#fc-popup-success p {
    font-size: 14px;
    font-weight: 600;
    color: #424242;
}
