/* ===================================
   PROMOTIONAL POPUP STYLES
   =================================== */

.promo-popup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    animation: fadeInPromo 0.3s ease;
}

.promo-popup-wrapper.show {
    display: flex;
}

.promo-popup-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideInPromo 0.4s ease;
    text-align: center;
}

.promo-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #e91e63;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 45px;
    transition: all 0.3s;
    font-weight: bold;
}

.promo-close-btn:hover {
    background: #c2185b;
    transform: rotate(90deg) scale(1.1);
}

.promo-popup-img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.promo-popup-box h2 {
    color: #e91e63;
    font-size: 34px;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.promo-popup-box p {
    font-size: 19px;
    color: #555;
    margin: 0 0 15px 0;
}

.promo-price {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin: 25px 0;
}

.promo-price-big {
    color: #e91e63;
    font-size: 42px;
}

.promo-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 20px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s;
    margin: 15px 0;
}

.promo-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
    color: white;
    text-decoration: none;
}

.promo-subtext {
    font-size: 15px;
    color: #888;
    margin: 15px 0 0 0;
}

@keyframes fadeInPromo {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInPromo {
    from { 
        transform: translateY(-60px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .promo-popup-box {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .promo-popup-box h2 {
        font-size: 26px;
    }
    
    .promo-popup-box p {
        font-size: 17px;
    }
    
    .promo-price {
        font-size: 22px;
    }
    
    .promo-price-big {
        font-size: 34px;
    }
    
    .promo-cta-btn {
        font-size: 19px;
        padding: 17px 35px;
    }
    
    .promo-close-btn {
        width: 38px;
        height: 38px;
        font-size: 24px;
        line-height: 38px;
    }
}