/* Women's Day 8/3 Theme */

/* Floating Flowers Animation */
.womens-day-flowers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.flower {
    position: absolute;
    font-size: 30px;
    animation: float-flower 15s linear infinite;
    opacity: 0;
}

@keyframes float-flower {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Women's Day Banner - DISABLED (Using floating icon instead) */
.womens-day-banner {
    display: none !important;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.womens-day-banner::before {
    content: '🌸';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    animation: pulse 2s ease-in-out infinite;
}

.womens-day-banner::after {
    content: '🌸';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    animation: pulse 2s ease-in-out infinite 1s;
}

.womens-day-content {
    position: relative;
    z-index: 1;
}

.womens-day-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

.womens-day-subtitle {
    font-size: 16px;
    margin: 10px 0 0 0;
    opacity: 0.95;
}

.womens-day-discount {
    display: inline-block;
    background: white;
    color: #ff6b9d;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: bounce-discount 2s ease-in-out infinite;
}

@keyframes bounce-discount {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Special Product Card for Women's Day */
.product-card-womens-day {
    position: relative;
    overflow: visible;
}

.product-card-womens-day::before {
    content: '💐 Quà 8/3';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255, 107, 157, 0.4);
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Heart Rain Effect */
.heart-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 998;
    overflow: hidden;
}

.heart {
    position: absolute;
    color: #ff6b9d;
    font-size: 20px;
    animation: fall-heart 10s linear infinite;
    opacity: 0;
}

@keyframes fall-heart {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Modal Popup for Women's Day */
.womens-day-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: popup 0.5s ease-out forwards;
}

@keyframes popup {
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.womens-day-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.womens-day-modal h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 20px;
}

.womens-day-modal p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.womens-day-modal .discount-code {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    margin: 20px 0;
    letter-spacing: 2px;
}

.womens-day-modal button {
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.womens-day-modal button:hover {
    background: #c44569;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .womens-day-title {
        font-size: 20px;
    }
    
    .womens-day-subtitle {
        font-size: 14px;
    }
    
    .womens-day-discount {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .womens-day-banner::before,
    .womens-day-banner::after {
        font-size: 25px;
    }
    
    .womens-day-modal {
        padding: 30px 20px;
    }
    
    .womens-day-modal h2 {
        font-size: 24px;
    }
    
    .womens-day-modal .discount-code {
        font-size: 18px;
        padding: 10px 20px;
    }
}
