/* ---------- POPUP OVERLAY ---------- */

.promo-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

/* ---------- POPUP CARD ---------- */

.promo-popup {
    position: relative;
    width: min(420px, 100% - 2.5rem);
    padding: 1.9rem 1.8rem 1.7rem;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(250, 250, 250, 0.1), transparent 55%),
        linear-gradient(135deg, #020617, #020617);
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Close button */

.promo-popup__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-popup__close:hover {
    border-color: #D4AF37;
    transform: scale(1.05);
}

/* Text */

.promo-popup__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fde68a;
}

.promo-popup__title {
    margin: 0 0 0.4rem;
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: #f9fafb;
}

.promo-popup__title span {
    color: #D4AF37;
}

.promo-popup__subtitle {
    margin: 0 0 0.9rem;
    font-size: 0.92rem;
    color: #cbd5f5;
}

/* bullets */

.promo-popup__points {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.86rem;
    color: #e5e7eb;
}

.promo-popup__points li {
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    margin-bottom: 0.35rem;
}

.promo-popup__points i {
    margin-top: 0.15rem;
    color: #22c55e;
}

/* CTAs */

.promo-popup__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.promo-popup__btn-whatsapp {
    flex: 1 1 100%;
    justify-content: center;
    font-size: 0.9rem;
}

.promo-popup__btn-call {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.86rem;
}

/* note */

.promo-popup__note {
    margin: 0;
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: left;
}

/* Reuse main button styles if available */

.promo-popup .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    text-decoration: none;
}

/* small screens */

@media (max-width: 480px) {
    .promo-popup {
        padding: 1.6rem 1.4rem 1.5rem;
    }

    .promo-popup__title {
        font-size: 1.4rem;
    }
}
