.s-comment-form-input{     border: 1px solid  black !important;}

/* تغيير لون خلفية صندوق التعليقات والتقييمات */
.s-comments-container {
    background-color: #ffffff !important; /* هذا كود اللون الأبيض */
}



/* تغيير لون النجوم إلى الأصفر في قسم التقييمات والتعليقات */
.s-rating-stars-selected,
.s-rating-stars-selected svg {
    color: #ffc107 !important; /* لون أصفر ذهبي */
    fill: #ffc107 !important;
}



/* 1. استهداف الزر بدقة داخل المكون */
custom-salla-product-card .add-to-cart-btn {
    /* الخطوة الأهم: تغيير الخلفية للأحمر لكي يظهر الخط الأبيض */
    background-color: #ed1c24 !important; 
    border-color: #ed1c24 !important;
    
    /* جعل الخط أبيض */
    color: #ffffff !important;
    
    /* إزالة الظل ليكون التصميم مسطحاً وجميلاً */
    box-shadow: none !important;
}

/* 2. تلوين أيقونة السلة بالأبيض */
custom-salla-product-card .add-to-cart-btn svg,
custom-salla-product-card .add-to-cart-btn svg path {
    stroke: #ffffff !important;
}

/* 3. (إضافة جمالية) عند مرور الماوس نعكس الألوان */
custom-salla-product-card .add-to-cart-btn:hover {
    background-color: #ffffff !important; /* خلفية بيضاء */
    color: #ed1c24 !important; /* خط أحمر */
    border: 1px solid #ed1c24 !important; /* إطار أحمر */
}

/* تلوين الأيقونة بالأحمر عند مرور الماوس */
custom-salla-product-card .add-to-cart-btn:hover svg,
custom-salla-product-card .add-to-cart-btn:hover svg path {
    stroke: #ed1c24 !important;
}



*, ::before, ::after{color: #234b70 !important;}

.custom-size-guide-btn{color: #234b70 !important;}


.s-comments-page{display: none;}

.mt-4{color: black  !important;;
     font-size: 5;
     font-weight: bold;}
/* /* ==========================================================
   تنسيق الفوتر: توسيع المسافات ورفع أيقونات الدفع
   ========================================================== */

/* 1. تنسيق الحاوية الرئيسية للفوتر (توسيعها من فوق ومن تحت) */
footer.bg-black {
    padding-top: 60px !important;    /* مسافة وسيعة من فوق */
    padding-bottom: 20px !important; /* مسافة مبدئية من تحت */
}

/* 2. إصلاح مشكلة تلاصق العناصر (اللوجو، الروابط، التواصل) */
/* نزيد المسافة بين كل عمود وعمود في الشبكة */
footer .grid {
    gap: 3rem !important; /* تكبير الفجوة بين العناصر */
}

/* 3. رفع أيقونات الدفع والحقوق عن أسفل الشاشة (المشكلة الرئيسية) */
/* نستهدف القسم السفلي الذي يحتوي على الخط الفاصل */
footer .border-t {
    padding-top: 30px !important;
    padding-bottom: 50px !important; /* هذه هي التي سترفع الأيقونات للأعلى */
    margin-top: 30px !important;
}

/* 4. تحسين شكل أيقونات الدفع لتكون مرتبة */
footer salla-payments {
    margin-top: 15px !important;
    display: block !important;
}







/* =========================================================
   تنسيق قسم المميزات: لون الخلفية + الترتيب الأفقي في الجوال
   ========================================================= */

/* 1. تغيير خلفية الحاوية الرئيسية */
/* استهدفنا العنصر بنفس الكلاسات الموجودة في الكود حقك */
div.w-full.max-w-6xl.mx-auto.py-8.mt-4 {
    background-color: #a1bcd9 !important; /* لون الخلفية */
    border-radius: 8px !important;        /* تدوير الحواف قليلاً */
    padding: 10px !important;             /* تقليل الهوامش الداخلية */
}

/* 2. إجبار العناصر تكون بجانب بعض في الجوال */
@media (max-width: 768px) {
    
    /* الوصول للشبكة (Grid) داخل هذا الدف وتحويلها إلى فليكس */
    div.w-full.max-w-6xl.mx-auto.py-8.mt-4 .grid {
        display: flex !important;
        flex-direction: row !important;      /* ترتيب أفقي */
        justify-content: space-around !important;
        align-items: flex-start !important;
        gap: 2px !important;
    }

    /* ضبط عرض كل أيقونة لتأخذ ثلث المساحة */
    div.w-full.max-w-6xl.mx-auto.py-8.mt-4 .feature-container {
        width: 32% !important;
        padding: 0 2px !important;
        text-align: center !important;
    }

    /* تصغير الخطوط والأيقونات لتناسب الجوال */
    div.w-full.max-w-6xl.mx-auto.py-8.mt-4 .feature-container h3 {
        font-size: 10px !important;
        white-space: nowrap !important; /* يمنع نزول العنوان لسطرين */
        margin-bottom: 2px !important;
    }

    div.w-full.max-w-6xl.mx-auto.py-8.mt-4 .feature-container p {
        font-size: 8px !important;
        line-height: 1.1 !important;
        color: #555374 !important;
    }

    div.w-full.max-w-6xl.mx-auto.py-8.mt-4 .feature-container i {
        font-size: 18px !important; /* حجم الأيقونة */
        margin-bottom: 2px !important;
    }
}




.calculate-btn{background-color: #87cefa !important;
                  color: #234b70 !important;
}



/* ====================================================
   تعديل المسافات: تقليل ارتفاع الدف وضغط الفراغات
==================================================== */

/* 1. ضغط الحاوية الأب (السكشن) لإلغاء الفراغات الكبيرة */
/* نستهدف السكشن الذي يحتوي على كلاسات البادينج */
section.mx-auto.px-4.py-8 {
    padding-top: 10px !important;    /* تقليل الفراغ العلوي للحاوية */
    padding-bottom: -15px !important; /* تقليل الفراغ السفلي للحاوية */
}

/* 2. تنسيق العنوان (بوكسر سحاب) */
section h2.text-4xl {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    
    /* التحكم بالارتفاع هنا: */
    /* 10px من فوق تكفي، و 15px من تحت */
    margin: 1px auto 1px auto !important;
    
    width: auto !important;
    color: #234b70 !important;
    padding: 0 !important;
}

/* 3. الإبقاء على الخطوط الجمالية كما هي */
section h2.text-4xl::before,
section h2.text-4xl::after {
    content: "" !important;
    display: block !important;
    width: 80px !important;
    height: 2px !important;
    background-color: #234b70 !important;
    opacity: 0.6 !important;
    border-radius: 10px !important;
}

section h2.text-4xl::before { margin-left: 15px !important; }
section h2.text-4xl::after { margin-right: 15px !important; }

/* 4. إخفاء الزر (للتذكير فقط لضمان عدم ظهوره) */
section .mt-4.md\:mt-0 { display: none !important; }




.s-button-btn, .s-price-range-number-input{background-color: RED !important;
                                           
                                      color: #FFFFFF !important;    }

.s-quantity-input-input{background-color: RED !important;
 }




/* تغيير لون الرقم داخل خانة الكمية */
.s-quantity-input-input {
    color: #050f2c !important;
    -webkit-text-fill-color: #050f2c !important; /* لضمان التغيير في متصفحات الجوال */
    font-weight: bold !important; /* جعل الرقم عريض ليصبح أوضح */
}

/* تغيير لون الزائد والناقص */
.s-quantity-input-button {
    color: #050f2c !important;
}

/* استهداف الأيقونة نفسها (SVG) لضمان تغيير لونها */
.s-quantity-input-button svg, 
.s-quantity-input-button svg path {
    fill: #050f2c !important;
}





/* الطريقة الثانية: استهداف مباشر وعميق للزر الداخلي */
.s-add-product-button-main salla-button .s-button-element,
.s-add-product-button-main salla-button .s-button-btn,
.s-add-product-button-main salla-button .s-button-text {
    color: #050f2c !important;
    fill: #050f2c !important; /* في حال كان هناك أيقونات */
}




.text-center.px-4.lg\:px-12{width: 80%; /* أو أي عرض محدد */
    margin: 0 auto; /* السر هنا: الهوامش الجانبية تلقائية */}

/* 1. إخفاء السلايدر القديم نهائياً */
.banners-slider-459 {
    display: none !important;
}

/* 2. تنسيق العنصر الجديد البديل (الذي سنضيفه بالجافاسكريبت) */
.my-new-static-grid {
    display: flex;
    flex-direction: row; /* جنب بعض */
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* تنسيق الصور الجديدة */
.my-new-static-grid div {
    flex: 1;
}

.my-new-static-grid img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    display: block;
}

/* للجوال: فوق بعض */
@media (max-width: 768px) {
    .my-new-static-grid {
        flex-direction: column;
        gap: 10px;
    }
}


/****************************************/

.bg-black{height: 150% !important;}

/* --- تنسيق الصورتين (واحدة فوق الأخرى لتكبير الحجم والوضوح) --- */

.custom-static-banners {
    display: flex;
    flex-direction: column;  /* هذا الأمر يجعل الصور تترتب عمودياً (فوق بعض) */
    gap: 20px;               /* زيادة المسافة بين الصورة العلوية والسفلية */
    width: 100%;
    margin: 20px 0;
    padding: 0 0;            /* إلغاء الهوامش الجانبية للاستفادة من كامل العرض */
}

.banner-item {
    width: 100%;             /* يجبر العنصر على أخذ العرض الكامل للصفحة */
    display: flex;
    justify-content: center;
}

.banner-item img {
    width: 100% !important;  /* تكبير الصورة لتملأ العرض بالكامل */
    height: auto !important;
    border-radius: 10px;     /* تحسين الحواف */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* ظل خفيف لإبراز الصور */
}
 */






/* ================================================= */
/* تنسيق حاوية الزر بعد نقلها */
/* ================================================= */
.py-3{display: none;}

.s-block s-block--fixed-banner wide-placeholder
{margin-top: 20%;}

.moved-btn-container {
    position: static !important; /* إلغاء التموضع الحر */
    opacity: 1 !important; /* جعلها ظاهرة دائماً */
    visibility: visible !important;
    transform: none !important;
    width: 90% !important;
    margin-top: 10px !important; /* مسافة بين السعر والزر */
    display: inline-block !important;
    margin-right:5%; 
    margin-bottom:3%; 
    /* padding: 0 5px !important; /* هوامش جانبية بسيطة */ */


  
}
.s-quantity-input-input{color: #ffffff !important;}
.s-button-text{ color: #ffffff !important;}


.text-white{background-color: #AFEEEE;
}

.px-4{padding: 0px;
     margin-top: 10px; 
     margin-right: 2%;}
.hydrated{padding-top: 0px;}

.mt-4{margin-right:3%; }
.swiper-button-disabled{display: none;}

/* ================================================= */
/* تنسيق شكل الزر ليصبح أزرق وعريض */
/* ================================================= */
button.add-to-cart-btn {
    width: 100% !important;
    height: 40px !important; /* ارتفاع ثابت للزر */
    background-color: RED !important; /* اللون الأزرق */
    border-radius: 8px !important;
    font-weight: bold !important;
    font-size: 14px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
  color: #FFFFFF !important;
}

button.add-to-cart-btn:hover {
    background-color: #0056b3 !important; /* لون أغمق عند التحويم */
    transform: translateY(-2px) !important; /* حركة بسيطة للأعلى */
}

/* إصلاح محاذاة البطاقة لتستوعب الزر الجديد */
.custom-salla-product-card .group {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.button.add-to-cart-btn.bg-white.hover\:bg-primary.hover\:text-white.transition-all.duration-300.p-2.shadow-lg.hover\:shadow-xl.disabled\:cursor-not-allowed.disabled\:opacity-70.border.border-transparent.hover\:border-primary
{    color: red !important;
}


/* حاوية القسم بالكامل - الخلفية السماوية */
.faq-wrapper {
    width: 100%;
    background-color: #f5f9ff; /* لون الخلفية */
    padding: 60px 20px;
    margin-top: 40px;
    direction: rtl;
    font-family: inherit; /* يأخذ خط الموقع */
}

/* تحديد عرض المحتوى في الوسط */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* العنوان */
.faq-title {
    text-align: center;
    color: #234b70; /* اللون الكحلي للعنوان */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* البطاقة البيضاء التي تحتوي الأسئلة */
.faq-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* سطر السؤال */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

/* زر السؤال */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    transition: background 0.2s;
}

.faq-question:hover {
    background-color: #fcfcfc;
}

.q-text {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.q-icon {
    font-size: 24px;
    color: #999;
    font-weight: 300;
    margin-right: 15px;
}

/* منطقة الجواب (للحركة الانسيابية) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.answer-content {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* عند تفعيل السؤال */
.faq-item.active .q-text {
    color: #007bff; /* تلوين السؤال عند الفتح - اختياري */
}


.s-products-slider-wrapper{display: none;}

.accordion-item .question{color: black;
                         font-size: 20px ;
                         font-weight: bold}

.-translate-y-2{font-size: 15px;}



.max-w-sm{  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border-radius: 10px ;
 }

/******************************/
/*****************************************/

/* --- تنسيق زر "اعرف مقاسك مع سحاب" (معدل للوضوح) --- */
.custom-size-guide-btn {
    /* لون خلفية فاتح أو لون Accent لتمييز الزر */
    background-color: #f0f0f0; /* لون رمادي فاتح جديد */
    color: #333; /* لون الخط داكن للوضوح */
    
    border: 1px solid #ccc;
    padding: 6px 15px; /* زيادة التعبئة */
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold; /* زيادة سمك الخط */
    cursor: pointer;
    margin: 0 0 10px 15px; 
    display: inline-flex; 
    align-items: center;
    transition: all 0.3s;
}

/* إضافة أيقونة مقاس وهمية لتحسين المظهر */
.custom-size-guide-btn::before {
    content: "📏"; /* رمز شريط قياس أو رمز مسطرة */
    margin-left: 8px;
    font-size: 16px;
}

.custom-size-guide-btn:hover {
    background-color: #e0e0e0; /* يصبح أغمق عند التمرير */
    border-color: #999;
}

/* --- تنسيق النافذة المنبثقة (Modal) وبقية العناصر (كما هي) --- */
.custom-modal {
    display: none; 
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: flex-start; 
    overflow-y: auto; 
}

.custom-modal-content {
    background-color: #fff;
    margin-top: 5vh; 
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 10px;
    width: 95%; 
    max-width: 450px; 
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: right;
}

.close-btn {
    color: #aaa;
    float: left; 
    font-size: 30px;
    font-weight: normal;
    cursor: pointer;
}

.modal-label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

#sizeModal input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; 
    text-align: right;
    font-size: 17px;
    direction: ltr; 
}

.body-type-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

.body-type-btn {
    flex-grow: 1;
    padding: 10px 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
}

.body-type-btn.selected {
    border-color: #000;
    background-color: #f5f5f5;
    font-weight: bold;
}

/* زر "وش مقاسي؟" - الأصفر المميز */
.calculate-btn {
    width: 100%;
    padding: 18px;
    background-color: #ffe000; 
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 5px;
    text-decoration: none; 
    display: block;
    text-align: center;
}

.calculate-btn:hover {
    background-color: #e6cc00;
}

.custom-hidden {
    display: none !important;
}

.custom-modal-result-content {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

#recommendedSize {
    font-size: 4em;
    font-weight: 700;
    color: #000;
    margin: 10px 0 20px 0;
}

.recommendation-text {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
    display: block;
}

.contact-btn {
    background-color: #25D366; 
    color: #fff;
    margin-top: 20px;
}

.contact-btn:hover {
    background-color: #128C7E;
} */