/* ================================
   HOLIDAY PROMO OVERLAY (STEP 1)
================================ */

.holiday-promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2147483646; /* higher than cart icon */
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday-promo-card {
    position: relative;
    max-width: 92%;
    max-height: 92%;
    animation: promoFadeIn 0.35s ease;
}

.holiday-promo-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.holiday-promo-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 30px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

.holiday-promo-close:hover {
    background: #ff4d00;
}

@keyframes promoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lock body scroll when overlay is open */
body.promo-open {
    overflow: hidden;
}
