/* الألوان الأساسية يتم سحبها الآن من قاعدة البيانات عبر index.php، نضع هنا ألوان احتياطية فقط */
:root {
    --brand-color: #3c092c; 
    --gold: #d4af37; 
    --soft-bg: #faf9f6; 
    --dark-text: #333333;
    --white: #ffffff;
    --red-offer: #e74c3c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* 🚀 تعديل تثبيت الفوتر: تحويل الـ Body إلى Flexbox ليملأ الشاشة 🚀 */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--soft-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.modal-open { overflow: hidden !important; touch-action: none; }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; will-change: opacity, transform; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* 📢 الشريط الإعلاني */
.announcement-bar { background-color: var(--brand-color); color: var(--gold); padding: 6px 15px; font-weight: bold; font-size: 0.95rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* 🚀 [تعديل مضغوط] تقليص الهيدر واللوجو لأقل ارتفاع ممكن عمودياً 🚀 */
header { 
    background: linear-gradient(var(--warm-overlay, rgba(60, 9, 44, 0.8)), var(--warm-overlay, rgba(60, 9, 44, 0.8))), url('https://images.unsplash.com/photo-1555252333-9f8e92e65df9?auto=format&fit=crop&w=1200&q=80'); 
    background-size: cover; 
    background-position: center; 
    padding: 10px 20px !important; 
    text-align: center; 
    border-bottom: 4px solid var(--gold); 
    position: relative; 
}
.header-logo { 
    width: 60px !important; 
    height: 60px !important; 
    object-fit: contain; 
    background: white; 
    border-radius: 50%; 
    padding: 3px; 
    border: 2px solid var(--gold); 
    margin-bottom: 2px !important; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
}
header h1 { 
    font-family: 'Amiri', serif; 
    font-size: 1.4rem !important; 
    color: var(--gold); 
    margin-bottom: 1px !important; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4); 
}
header p { 
    font-size: 0.85rem !important; 
    color: var(--white); 
    max-width: 700px; 
    margin: 0 auto; 
    line-height: 1.3; 
    font-weight: 400; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); 
}

.menu-btn { position: fixed; top: 12px; right: 20px; font-size: 1.4rem; color: var(--gold); cursor: pointer; z-index: 1001; transition: 0.3s; background: var(--brand-color); border: 2px solid var(--gold); outline: none; border-radius: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.menu-btn:hover { transform: scale(1.1); background: var(--gold); color: var(--brand-color); }

.side-menu { position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background-color: var(--white); box-shadow: -5px 0 15px rgba(0,0,0,0.1); z-index: 10000; transition: right 0.4s ease; display: flex; flex-direction: column; overflow-y: auto; }
.side-menu.active { right: 0; }
.side-menu-header { padding: 30px 20px 20px; background-color: var(--brand-color); color: var(--gold); display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--gold); }
.side-menu-header h3 { margin: 0; font-family: 'Amiri', serif; font-size: 1.5rem; }
.close-menu-btn { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.side-menu-content { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.menu-link { display: flex; align-items: center; gap: 15px; padding: 15px; text-decoration: none; color: var(--brand-color); font-weight: bold; font-size: 1.1rem; border-radius: 10px; transition: 0.3s; background-color: var(--soft-bg); border: 1px solid #eee; }
.menu-link i { font-size: 1.3rem; color: var(--gold); width: 25px; text-align: center; }
.menu-link:hover { background-color: var(--brand-color); color: var(--gold); }
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 9999; display: none; opacity: 0; transition: opacity 0.4s ease; }
.menu-overlay.active { display: block; opacity: 1; }

/* 🚀 تعديل تثبيت الفوتر: جعل الحاوية تتمدد وتدفع الفوتر للأسفل 🚀 */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
    flex: 1; 
    width: 100%;
}

/* البحث */
.search-bar-wrapper { position: relative; max-width: 600px; margin: 0 auto 15px; }
#mainSearchInput { width: 100%; padding: 15px 50px; border-radius: 50px; border: 2px solid var(--gold); font-family: 'Tajawal', sans-serif; font-size: 1.05rem; outline: none; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
#mainSearchInput:focus { border-color: var(--brand-color); box-shadow: 0 5px 20px rgba(60, 9, 44, 0.15); }
.search-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.2rem; }
.clear-search { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 1.2rem; cursor: pointer; display: none; width: 30px; height: 30px; border-radius: 50%; background: #f5f5f5; align-items: center; justify-content: center; }
.clear-search:hover { color: var(--red-offer); background: #fee; }
.search-dropdown { position: absolute; top: calc(100% - 20px); left: 0; right: 0; background: var(--white); border: 2px solid var(--gold); border-top: none; border-radius: 0 0 25px 25px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); list-style: none; padding: 20px 0 0 0; margin: 0; max-height: 250px; overflow-y: auto; z-index: 10; display: none; text-align: right; }
.search-dropdown li { padding: 12px 25px; cursor: pointer; transition: 0.2s; border-bottom: 1px solid #f9f9f9; font-size: 1.05rem; font-weight: 500; }
.search-dropdown li:hover { background: #faf9f6; color: var(--brand-color); font-weight: 700; padding-right: 30px; }
.quick-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tag-btn { background: #fff; border: 1px solid var(--gold); color: var(--brand-color); padding: 8px 20px; border-radius: 50px; cursor: pointer; font-size: 0.95rem; transition: 0.3s; font-weight: 700; }
.tag-btn:hover { background: var(--brand-color); color: var(--gold); transform: translateY(-2px); }

/* البطاقات والأقسام (تحديث الصورة لتأخذ كامل العرض) */
.best-sellers-section { margin-bottom: 40px; padding-top: 10px; }
.section-title { text-align: center; font-family: 'Amiri', serif; font-size: 2.2rem; color: var(--brand-color); margin-bottom: 30px; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--gold); position: absolute; bottom: -10px; right: 50%; transform: translateX(50%); border-radius: 5px; }
.carousel-wrapper { display: flex; flex-direction: column; gap: 15px; padding: 10px 0; }
.carousel-row { display: flex; gap: 15px; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 0 10px 15px 10px; }
.carousel-row::-webkit-scrollbar { height: 6px; }
.carousel-row::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.carousel-row::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* 🚀 تحديث مساحات الكارد لتمتد الصورة للحافة 🚀 */
.mini-card { background: var(--white); border: 1px solid #eaeaea; border-radius: 15px; padding: 0 0 12px 0; width: 140px; min-width: 140px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.04); cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; position: relative; overflow: hidden;}
.mini-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15); }
.mini-card-icon { display: none; }
.mini-card-img { width: 100% !important; height: 130px !important; object-fit: cover !important; border-radius: 15px 15px 0 0 !important; margin-bottom: 10px; display: block; border: none; border-bottom: 1px solid #eee; background-color: #f5f5f5;}
.mini-card h3 { font-size: 0.95rem; color: var(--brand-color); margin-bottom: 5px; font-weight: 700; line-height: 1.3; }
.mini-card .mini-price { font-size: 0.9rem; color: #27ae60; font-weight: bold; margin-top: auto; }
.quick-add-btn { background: var(--brand-color); color: var(--gold); border: none; width: 35px; height: 35px; border-radius: 50%; font-size: 1rem; cursor: pointer; margin-top: 10px; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.quick-add-btn:hover { transform: scale(1.1); background: var(--gold); color: var(--brand-color); }

/* 🚀 بطاقة عرض المزيد الذكية 🚀 */
.show-more-card { justify-content: center !important; align-items: center !important; background-color: var(--brand-color) !important; color: var(--gold) !important; border: 2px solid var(--gold) !important; padding: 15px !important; }
.show-more-card h3 { color: var(--gold) !important; margin: 0; font-size: 1.1rem; line-height: 1.5; padding: 0 !important;}
.show-more-card i { font-size: 1.5rem; margin-top: 10px; display: block; transition: 0.3s; }
.show-more-card:hover { background-color: var(--gold) !important; color: var(--brand-color) !important; }
.show-more-card:hover h3, .show-more-card:hover i { color: var(--brand-color) !important; }
.show-more-card:hover i { transform: translateX(-5px); }

/* 🚀 [تعديل مضغوط] ضغط قسم عرض الشهر عموديًا لأقصى حد ليكون ملمومًا في الشاشة 🚀 */
.special-offer-section { padding: 4px 0 !important; background: transparent; } 
.offer-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid var(--gold); display: flex; flex-wrap: wrap; position: relative; max-width: 950px; margin: 0 auto; }
.offer-badge { position: absolute; top: 12px; right: 12px; background: var(--red-offer); color: #fff; padding: 4px 15px; border-radius: 50px; font-weight: bold; font-size: 0.75rem; z-index: 5; }

/* ضغط كادر الفيديو الترويجي ليصبح ملموماً ومحكماً دون التأثير على أبعاد تشغيل الفيديو الفنية */
.offer-video-part { flex: 1; min-width: 300px; background: #000; height: 260px !important; position: relative; cursor: pointer; } 
.offer-video-part video { width: 100%; height: 100%; object-fit: cover; } 
.promo-play-btn { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: rgba(0,0,0,0.2); transition: 0.3s; z-index: 2; }
.promo-play-btn i { font-size: 3.2rem; color: rgba(255,255,255,0.9); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); transition: 0.3s; }

/* تقليص الحشو لبيانات العرض النصية لضغطها عمودياً وتوفير المساحة */
.offer-info-part { flex: 1; min-width: 300px; padding: 10px 20px !important; text-align: center; display: flex; flex-direction: column; justify-content: center; } 
.offer-info-part h2 { font-family: 'Amiri', serif; font-size: 1.5rem !important; color: var(--brand-color); margin-bottom: 2px !important; }
.offer-intro { font-weight: bold; color: var(--dark-text); margin-bottom: 2px !important; font-size: 0.9rem; }
.offer-features { list-style: none; padding: 0; text-align: right; margin-bottom: 6px !important; line-height: 1.3; color: #444; font-size: 0.85rem; }
.price-tag { margin: 2px 0 6px !important; }
.old-price { text-decoration: line-through; color: #555; font-size: 0.9rem; margin-left: 8px; }
.new-price { color: #27ae60; font-size: 1.6rem !important; font-weight: 800; }

.btn-claim {
    background-color: var(--brand-color) !important;
    color: var(--gold) !important;
    padding: 8px 24px !important;
    font-size: 0.95rem !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border: 2px solid var(--brand-color) !important;
    border-radius: 50px !important; 
    display: block !important;
    text-align: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
    transition: 0.3s ease !important;
}
.btn-claim:hover {
    background-color: var(--white) !important;
    color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
}

/* الخطوات والتقييمات */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; margin-top: 30px; }
.step-item { position: relative; }
.step-icon { width: 50px; height: 50px; background: var(--brand-color); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1.2rem; font-weight: bold; border: 2px solid var(--gold); }
.step-item h4 { font-size: 0.95rem; color: var(--brand-color); font-weight: 700; }
.reviews-wrapper { display: flex; gap: 15px; overflow-x: auto; padding: 10px 10px 20px; scrollbar-width: none; }
.reviews-wrapper::-webkit-scrollbar { display: none; }
.review-card { min-width: 250px; background: var(--soft-bg); padding: 20px; border-radius: 20px; border-right: 4px solid var(--gold); }
.review-text { font-size: 0.9rem; font-style: italic; color: #444; margin-bottom: 10px; line-height: 1.6; }
.review-author { font-size: 0.85rem; font-weight: 700; color: var(--brand-color); display: flex; align-items: center; justify-content: space-between; }
.stars { color: #f1c40f; font-size: 0.7rem; }

/* النوافذ المنبثقة والسلايدر */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); z-index: 9999; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; overflow-y: auto; padding: 20px; }
.modal-overlay.show { display: flex; opacity: 1; }
.modal-box { background: var(--white); width: 100%; max-width: 900px; max-height: 90vh; overflow: hidden; border-radius: 20px; display: flex; flex-direction: row; flex-wrap: wrap; position: relative; transform: scale(0.9); transition: transform 0.3s ease; margin: auto; }
.modal-overlay.show .modal-box { transform: scale(1); }
.close-modal { position: absolute; top: 15px; left: 15px; background: rgba(0,0,0,0.5); color: white; border: none; width: 35px; height: 35px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 100; display: flex; justify-content: center; align-items: center; }

/* السلايدر (تصميم تيك توك عمودي) */
.modal-media-section { width: 100%; flex: 1; min-width: 300px; background: #000; position: relative; min-height: 350px;}
.slider-track { width: 100%; height: 100%; position: relative; }
.modal-slide { display: none; width: 100%; height: 100%; position: absolute; top: 0; left: 0; justify-content: center; align-items: center; }
.modal-slide.active { display: flex; z-index: 5; }
.modal-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }
.modal-slide video { width: 100% !important; height: 100% !important; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 12px; pointer-events: none; }
.modal-slide video::-webkit-media-controls { display: none !important; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.8); border: none; width: 40px; height: 40px; border-radius: 50%; color: var(--brand-color); font-size: 1.5rem; cursor: pointer; z-index: 20; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 5px rgba(0,0,0,0.3);}
.prev-arrow { right: 10px; } .next-arrow { left: 10px; }
.slider-dots { position: absolute; bottom: 15px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 20; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s; }
.slider-dot.active { background: var(--gold); transform: scale(1.2); }

.modal-info { flex: 1; min-width: 300px; padding: 30px; display: flex; flex-direction: column; overflow-y: auto; max-height: 90vh; text-align: right;}
.modal-info h2 { font-family: 'Amiri', serif; font-size: 1.6rem; color: var(--brand-color); margin-bottom: 15px; border-bottom: 2px solid var(--gold); padding-bottom: 8px; display: inline-block;}
.pkg-details { list-style: none; padding: 0; margin: 0 0 15px 0; color: #555; font-size: 0.95rem; line-height: 1.6; }
.pkg-details li { margin-bottom: 6px; border-bottom: 1px dashed #eee; padding-bottom: 6px; }
.pkg-details li i { color: var(--gold); margin-left: 8px; font-size: 0.8rem; }
.pkg-price { font-size: 1.4rem; font-weight: bold; color: #27ae60; margin-bottom: 0; text-align: center; white-space: nowrap; } 
.btn-order-small { background-color: var(--brand-color); color: var(--gold); padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1rem; transition: 0.3s; border: 2px solid var(--brand-color); display: block; text-align: center; }
.btn-order-small:hover { background-color: var(--white); color: var(--brand-color); }
.add-to-cart-btn { background-color: var(--white); color: var(--brand-color); width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: 0.3s; border: 2px solid var(--brand-color); display: flex; justify-content: center; align-items: center; }
.add-to-cart-btn:hover { background-color: var(--brand-color); color: var(--gold); }
.share-btn { background-color: #f5f5f5; color: var(--brand-color); width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: 0.3s; border: 1px solid #ddd; display: flex; justify-content: center; align-items: center; }
.modal-qty-wrapper { display: flex; align-items: center; border: 1px solid var(--gold); border-radius: 50px; overflow: hidden; background: #fff; height: 40px; margin-left: 10px;}
.modal-qty-btn { background: none; border: none; width: 35px; height: 100%; display: flex; justify-content: center; align-items: center; cursor: pointer; color: var(--brand-color); transition: 0.3s; font-size: 1.1rem; }
.modal-qty-display { font-size: 1.1rem; font-weight: bold; color: var(--brand-color); width: 40px; text-align: center; border-left: 1px solid var(--gold); border-right: 1px solid var(--gold); display: flex; justify-content: center; align-items: center; height: 100%;} 

.suggestions-row::-webkit-scrollbar { height: 4px; }
.suggestions-row::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.suggestions-row::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* السلة والأسئلة الشائعة */
.cart-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding: 15px 0; }
.cart-item-title { font-weight: bold; color: var(--brand-color); font-size: 1rem; flex: 1;}
.cart-item-price { color: #27ae60; font-weight: bold; font-size: 1rem; white-space: nowrap; display: flex; align-items: center; gap: 8px;}
.qty-controls { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 50px; overflow: hidden; background: #fff;}
.qty-btn { background: none; border: none; width: 28px; height: 28px; display: flex; justify-content: center; align-items: center; cursor: pointer; color: var(--brand-color); transition: 0.3s; font-size: 1rem;}
.cart-item-qty { font-size: 0.95rem; font-weight: bold; color: #333; width: 25px; text-align: center; border-left: 1px solid #ddd; border-right: 1px solid #ddd; } 
.custom-radio, .custom-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; cursor: pointer; font-size: 0.95rem; color: #444; }
.cart-breakdown { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; font-size: 1rem; color: #555; border-top: 2px dashed var(--gold); padding-top: 15px; }

.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 12px; border: 1px solid #eee; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.faq-question { padding: 15px 20px; width: 100%; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.05rem; color: var(--brand-color); background: none; border: none; text-align: right; font-family: 'Tajawal', sans-serif; transition: background 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: #fafafa; }
.faq-answer p { padding: 15px 20px; color: #555; border-top: 1px solid #f0f0f0; font-size: 0.95rem; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

/* 🚀 [تعديل التوزيع] تنسيق الفوتر الجديد بـ Flexbox متوازن لترتيب العناصر بدقة 🚀 */
.main-footer { 
    text-align: center; 
    padding: 25px 20px 25px 20px !important; 
    background-color: var(--brand-color); 
    color: var(--white); 
    border-top: 4px solid var(--gold); 
    position: relative; 
    clear: both;
    margin-top: auto; /* يجبر الفوتر على الالتصاق بأسفل الشاشة بفضل الـ Flexbox في הbody */
}

.footer-container { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: flex-start !important; 
    max-width: 1200px; 
    margin: 0 auto 10px auto !important; 
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3) !important; 
    padding-bottom: 15px !important; 
    gap: 20px; 
}

.footer-right { 
    text-align: right !important; 
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.faq-footer-btn { 
    color: var(--gold) !important; 
    text-decoration: none !important; 
    font-size: 1.2rem !important; 
    font-weight: bold !important; 
    display: flex !important;
    flex-direction: column !important; 
    line-height: 1.4 !important;
    border-bottom: none !important;
    text-align: right !important;
}
.faq-footer-btn:hover {
    color: var(--white) !important;
}

.faq-btn-line1, .faq-btn-line2 { 
    display: block !important; 
    text-align: right !important;
}

.footer-left { 
    text-align: left !important; 
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
}

.social-follow-text { 
    font-size: 1.05rem !important; 
    font-weight: bold !important; 
    color: var(--white) !important; 
    margin-bottom: 8px !important; 
    text-align: left !important;
}

.social-icons { 
    display: flex !important; 
    gap: 12px !important; 
    justify-content: flex-end !important;
    margin-top: 0 !important;
}

.social-icons a { 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    width: 40px !important; 
    height: 40px !important; 
    color: var(--gold) !important; 
    border-radius: 50% !important; 
    border: 1px solid var(--gold) !important; 
    font-size: 1.3rem !important; 
    background-color: rgba(255, 255, 255, 0.1) !important; 
    text-decoration: none !important;
    transition: 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--gold) !important;
    color: var(--brand-color) !important;
    transform: translateY(-2px);
}

.copyright-bar { 
    margin-top: 10px !important;
    text-align: center !important; 
    font-size: 0.95rem !important; 
    color: #b5b5b5 !important; 
    font-weight: bold !important;
    position: static !important;
}

.floating-whatsapp { position: fixed; bottom: 20px; left: 20px; background-color: #25d366; color: #fff; width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; z-index: 100; animation: pulse-whatsapp 2s infinite; text-decoration: none; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.floating-cart { position: fixed; bottom: 90px; left: 20px; background-color: var(--brand-color); color: var(--gold); width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; z-index: 100; text-decoration: none; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; cursor: pointer; border: 2px solid var(--gold); }
.cart-badge { position: absolute; top: -5px; right: -5px; background: var(--red-offer); color: white; border-radius: 50%; width: 22px; height: 22px; font-size: 12px; display: flex; justify-content: center; align-items: center; font-weight: bold; border: 2px solid #fff; display: none; }

@keyframes pulse-whatsapp { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* 📱 التوافق الذكي لشاشات الجوال */
@media (max-width: 768px) {
    header { padding: 40px 20px; }
    header h1 { font-size: 1.8rem; }
    .menu-btn { font-size: 1.3rem; top: 15px; right: 15px; width: 40px; height: 40px; }
    .offer-video-part { height: 280px; }
    .modal-box { width: 100%; overflow-y: auto; flex-direction: column; flex-wrap: nowrap; }
    .modal-media-section { height: 350px; min-height: 350px; flex: none; width: 100%; } 
    .modal-info { padding: 20px; flex: none; width: 100%; max-height: none;}
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } 

    .main-footer {
        padding: 15px 15px 10px 15px !important; 
    }
    .footer-container { 
        flex-direction: column !important; 
        align-items: stretch !important; 
        text-align: right !important; 
        gap: 12px !important; 
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 5px !important;
    }
    .footer-right { 
        align-items: flex-start !important; 
        text-align: right !important; 
        width: 100% !important; 
    }
    .faq-footer-btn { 
        text-align: right !important; 
        align-items: flex-start !important;
        font-size: 1.1rem !important;
    }
    .faq-btn-line1, .faq-btn-line2 {
        text-align: right !important;
        width: 100% !important;
    }
    .footer-left { 
        align-items: flex-start !important; 
        text-align: right !important; 
        width: 100% !important; 
        margin-top: 0px !important;
    }
    .social-follow-text { 
        text-align: right !important; 
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
        width: 100% !important;
    }
    .social-icons { 
        justify-content: flex-start !important; 
        width: 100% !important;
    }
    .social-icons a {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.15rem !important;
    }
    .copyright-bar { 
        margin-top: 10px !important;
        font-size: 0.85rem !important;
        border-top: 1px dashed rgba(212, 175, 55, 0.2) !important;
        padding-top: 8px !important;
        text-align: center !important;
    }
}