/* ============================================
   HOLIDAY POPUP MODAL STYLES
   Beautiful popup cards for holiday themes
   ============================================ */

.holiday-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.holiday-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.holiday-popup-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.holiday-popup-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.holiday-popup-overlay.show .holiday-popup-container {
    transform: scale(1) translateY(0);
}

.holiday-popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.holiday-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.holiday-popup-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.holiday-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: popupIconBounce 1s ease-in-out;
}

@keyframes popupIconBounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.holiday-popup-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    font-family: var(--font-arabic, 'Cairo', sans-serif);
}

.holiday-popup-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    font-family: var(--font-arabic, 'Cairo', sans-serif);
}

.holiday-popup-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.holiday-popup-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-arabic, 'Cairo', sans-serif);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.holiday-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========== CHRISTMAS POPUP ========== */
.holiday-popup-christmas {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid #c41e3a;
}

.holiday-popup-christmas .holiday-popup-content {
    background: linear-gradient(180deg, rgba(196, 30, 58, 0.05) 0%, transparent 100%);
}

.holiday-popup-christmas .holiday-popup-title {
    color: #c41e3a;
}

.holiday-popup-christmas .holiday-popup-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #228B22 100%);
    color: #ffffff;
}

.holiday-popup-christmas .holiday-popup-btn:hover {
    background: linear-gradient(135deg, #a0172e 0%, #1a7a1a 100%);
}

/* ========== EID FITR POPUP ========== */
.holiday-popup-eid_fitr {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
    border: 3px solid #f4d03f;
}

.holiday-popup-eid_fitr .holiday-popup-content {
    background: linear-gradient(180deg, rgba(244, 208, 63, 0.1) 0%, transparent 100%);
}

.holiday-popup-eid_fitr .holiday-popup-title {
    color: #2c5530;
}

.holiday-popup-eid_fitr .holiday-popup-btn {
    background: linear-gradient(135deg, #2c5530 0%, #f4d03f 100%);
    color: #ffffff;
}

.holiday-popup-eid_fitr .holiday-popup-btn:hover {
    background: linear-gradient(135deg, #1a3a1f 0%, #e6c035 100%);
}

/* ========== EID ADHA POPUP ========== */
.holiday-popup-eid_adha {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
    border: 3px solid #d4af37;
}

.holiday-popup-eid_adha .holiday-popup-content {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.holiday-popup-eid_adha .holiday-popup-title {
    color: #8b4513;
}

.holiday-popup-eid_adha .holiday-popup-btn {
    background: linear-gradient(135deg, #8b4513 0%, #d4af37 100%);
    color: #ffffff;
}

.holiday-popup-eid_adha .holiday-popup-btn:hover {
    background: linear-gradient(135deg, #6b3410 0%, #b8941f 100%);
}

/* ========== BACK TO SCHOOL POPUP ========== */
.holiday-popup-back_to_school {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    border: 3px solid #3b82f6;
}

.holiday-popup-back_to_school .holiday-popup-content {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
}

.holiday-popup-back_to_school .holiday-popup-title {
    color: #1e3a8a;
}

.holiday-popup-back_to_school .holiday-popup-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
}

.holiday-popup-back_to_school .holiday-popup-btn:hover {
    background: linear-gradient(135deg, #152c6b 0%, #2563eb 100%);
}

/* ========== TAWJEHI POPUP ========== */
.holiday-popup-tawjehi {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    border: 3px solid #8b5cf6;
}

.holiday-popup-tawjehi .holiday-popup-content {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

.holiday-popup-tawjehi .holiday-popup-title {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.holiday-popup-tawjehi .holiday-popup-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: #ffffff;
}

.holiday-popup-tawjehi .holiday-popup-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

/* ========== BLACK FRIDAY POPUP ========== */
.holiday-popup-black_friday {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid #ff0000;
}

.holiday-popup-black_friday .holiday-popup-content {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
}

.holiday-popup-black_friday .holiday-popup-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.holiday-popup-black_friday .holiday-popup-message {
    color: #e0e0e0;
}

.holiday-popup-black_friday .holiday-popup-close {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.holiday-popup-black_friday .holiday-popup-close:hover {
    background: rgba(255, 0, 0, 0.3);
}

.holiday-popup-black_friday .holiday-popup-btn {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}

.holiday-popup-black_friday .holiday-popup-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .holiday-popup-container {
        width: 95%;
        max-width: 95%;
    }
    
    .holiday-popup-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .holiday-popup-icon {
        font-size: 3rem;
    }
    
    .holiday-popup-title {
        font-size: 1.5rem;
    }
    
    .holiday-popup-message {
        font-size: 1rem;
    }
}

