h2{
      font-weight: bold;

}

/* 1. تحسين الطبقة المظلمة (Overlay) لضمان وضوح النص فوق الصورة */
[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] .bg-primary {
    opacity: 0.5 !important; /* زيادة التعتيم قليلاً */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

/* 2. تحسين تصميم الكارت ليكون زجاجياً (Glassmorphism) */
[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] .theme-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 3. تنسيق الخطوط لجعلها أكثر فخامة */
[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] h2 {
    color: #ffffff !important;
    font-size: 3rem !important;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] p {
    color: #e0e0e0 !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] span {
    color: #ffd700 !important; /* لون ذهبي للعنوان الفرعي */
    font-weight: 800;
    letter-spacing: 2px;
}

/* 4. تصميم زر احترافي (Hover Effect) */
[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] .btn-filled {
    background: #ffffff !important;
    color: #000 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] .btn-filled:hover {
    transform: scale(1.05);
    background: #f0f0f0 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* 5. تأثير حركة خفيف للقسم عند التحميل */
[section-id="41198cf4-63e9-4884-814e-56e63c6b29a9"] .embla__slide {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}
/* تنسيق قسم الفيديو والخلفية الجذابة */
.luxury-videos-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 20px;
    /* خلفية متدرجة فخمة (داكنة مع لمسات زرقاء/بنفسجية عميقة) */
    background: linear-gradient(135deg, #0b0c10 0%, #1f2833 50%, #0b0c10 100%);
    min-height: 100vh;
    overflow: hidden;
}

/* تنسيق إطار الهاتف وإضافة الحركة */
.phone-frame {
    position: relative;
    border-radius: 40px; /* لتنعيم حواف الهاتف إذا لم تكن موجودة */
    /* إضافة ظل فخم يعطي عمقاً للتصميم */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.05);
    /* تطبيق الأنيميشن العائم */
    animation: float 5s ease-in-out infinite;
    transition: box-shadow 0.4s ease;
}

/* تأخير الحركة للعناصر الزوجية والفردية لتبدو طبيعية وغير متطابقة */
.phone-frame:nth-child(odd) {
    animation-duration: 4.5s;
}
.phone-frame:nth-child(even) {
    animation-duration: 5.5s;
    animation-delay: -2s; /* يبدأ من نقطة مختلفة */
}

/* تأثير عند تمرير الماوس (Hover) */
.phone-frame:hover {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.4); /* توهج ذهبي خفيف */
    z-index: 10;
}

/* تعريف حركة الطفو (Floating Animation) */
@keyframes float {
    0% {
        top: 0px;
    }
    50% {
        top: -15px; /* يرتفع للأعلى قليلاً */
    }
    100% {
        top: 0px;
    }
}

/* تحسين شكل الفيديو داخل الإطار */
.phone-screen {
    border-radius: inherit;
    overflow: hidden;
    background: #000;
}
.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 1. تنسيق خلفية القسم وتوسيط العنوان الرئيسي مع الخط السفلي */
.section-products {
    background-color: #fafafa; /* لون خلفية مقارب للصورة */
}

.section-products .flex.items-center.justify-between {
    justify-content: center !important;
    width: 100%;
    margin-bottom: 2rem;
}

.section-products h2 {
    position: relative;
    text-align: center;
    padding-bottom: 12px;
    font-weight: 700;
}

.section-products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background-color: #000; /* الخط الأسود الصغير تحت العنوان */
    border-radius: 2px;
}

/* 2. تحويل القائمة (List) إلى شبكة (Grid) متجاورة */
[data-grid-root="true"] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    max-width: 800px;
    margin: 0 auto;
}

/* 3. ترتيب محتوى البطاقة ليكون عمودياً بالكامل */
[data-product-card] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
    border: none !important;
}

/* 4. تنسيق حاوية الصورة */
[data-product-card] > a {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px;
}
[data-product-card] img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

/* 5. نقل أيقونة المفضلة (القلب) للزاوية العلوية اليسرى كما في الصورة */
[data-product-card] .btn-icon {
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    bottom: auto !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(4px);
    border-radius: 50%;
}

/* 6. توسيط النصوص والأسعار */
[data-product-card] .flex-1 {
    align-items: center !important;
    width: 100%;
}
[data-product-card] .flex-wrap {
    justify-content: center !important;
}

/* إخفاء الوصف النصي وشريط الخصم الأخضر لمطابقة الصورة التي لا تحتويهما */
[data-product-card] p.text-muted,
[data-product-card] .bg-success\/20 {
    display: none !important;
}

/* 7. تنسيق زر "أضف للسلة" ليكون أسود وعريض ومستدير بالكامل */
[data-product-card] .mt-auto {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: auto;
}

[data-product-card] .btn-outlined {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    width: 100% !important;
    border-radius: 9999px !important; /* يجعل الزر بشكل كبسولة */
    padding: 12px 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease;
}

[data-product-card] .btn-outlined:hover {
    background-color: #333 !important;
}

/* 8. التجاوب مع شاشات الجوال (بطاقة واحدة في كل سطر) */
@media (max-width: 768px) {
    [data-grid-root="true"] {
        grid-template-columns: 1fr !important;
        padding: 0 1rem;
    }
}
/* 1. تنسيق الكارت بتأثير زجاجي (Glassmorphism) */
.section-benefits .grid > div {
    background: rgba(255, 255, 255, 0.1); /* شفافية خفيفة */
    backdrop-filter: blur(12px); /* التأثير الضبابي */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* 2. إضافة تأثير حركة عند التمرير (Animation) */
.section-benefits .grid > div:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 3. تحسين مظهر النصوص والأيقونات داخل الكارت */
.section-benefits h3 {
    color: #fff; /* نغير اللون للأبيض ليظهر فوق الخلفية الضبابية */
    font-size: 1.5rem !important;
}

.section-benefits p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* 4. جعل خلفية القسم تبدو أكثر عمقاً (اختياري) */
.section-benefits {
    background: linear-gradient(135deg, #1e1e2f 0%, #3a3a5f 100%); /* خلفية داكنة متدرجة */
}

/* 5. تحسين الأيقونات */
.section-benefits img {
    filter: brightness(0) invert(1); /* جعل الأيقونات بيضاء اللون */
    transition: transform 0.3s ease;
}

.section-benefits .grid > div:hover img {
    transform: scale(1.1);
}

/* 1. إخفاء القسم افتراضياً في كل الصفحات */
.faq-section {
    display: none !important;
}

/* 2. إظهار القسم فقط إذا كان داخل الصفحة الرئيسية */
/* استبدل .home أو .template-index بالكلاس الذي تستخدمه منصتك للصفحة الرئيسية */
body.home .faq-section, 
body.template-index .faq-section,
body.index .faq-section {
    display: block !important;
}