/* ================================================
   Women's Day Theme & Popup Styles
   Active: March 2 – 10
   ================================================ */

/* ── Overlay ─────────────────────────────────── */
#womens-day-overlay {
    position: fixed;
    inset: 0;
    background: rgba(75, 0, 130, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wdFadeIn 0.4s ease forwards;
    padding: 16px;
}

#womens-day-overlay.wd-fade-out {
    animation: wdFadeOut 0.4s ease forwards;
}

/* ── Popup card ──────────────────────────────── */
#womens-day-popup {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 40px 36px 32px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(106, 13, 173, 0.35);
    border-top: 6px solid #C71585;
    animation: wdSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Decorative top icons ────────────────────── */
.wd-icons {
    font-size: 2.2rem;
    margin-bottom: 12px;
    letter-spacing: 6px;
    line-height: 1;
}

/* ── Heading ─────────────────────────────────── */
#womens-day-popup h2 {
    font-family: 'Poppins', sans-serif;
    color: #4B0082;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.3;
}

/* ── Body text ───────────────────────────────── */
#womens-day-popup p {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 10px;
}

/* ── Date label ──────────────────────────────── */
#womens-day-popup .wd-date {
    display: inline-block;
    background: linear-gradient(135deg, #6A0DAD, #C71585);
    color: #ffffff;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* ── CTA button ──────────────────────────────── */
.wd-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6A0DAD 0%, #C71585 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(106, 13, 173, 0.35);
}

.wd-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 13, 173, 0.45);
}

/* ── Close button ────────────────────────────── */
.wd-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.wd-close:hover {
    color: #4B0082;
}

/* ── Keyframes ───────────────────────────────── */
@keyframes wdFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes wdFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes wdSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Mobile tweaks ───────────────────────────── */
@media (max-width: 480px) {
    #womens-day-popup {
        padding: 32px 20px 24px;
    }
    #womens-day-popup h2 {
        font-size: 1.25rem;
    }
}
