/* Add custom CSS styles below */  
@media (min-width: 768px) {
    #app .md\:\!mb-\[110px\] {
        margin-bottom: 50px !important;
    }
}
.mb-8 {
    margin-top: 2rem !important;
}
.mb-8:first-of-type {
    margin-top: 0rem !important;
      margin-bottom: 0rem !important;
}

@media (max-width: 767px) {
    .s-products-slider-card {
        max-width: 250px !important;
    }
}
/* تنسيق القسم الرئيسي */
.title-heade {
    position: relative;
    display: inline-block;
    color: #b38b6d; /* لون متناسق مع البراند */
    padding-bottom: 10px;
    overflow: hidden;
    cursor: default;
    transition: color 0.3s ease;
}

/* حركة الخط اللي تحت الكلمة */
.title-heade::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* يبدأ من اليمين عشان العربي */
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(100%);
    animation: slideInLine 1.5s ease-out forwards;
}

/* حركة ظهور النص نفسه (Slide Up) */
.title-heade {
    animation: fadeInSlide 0.8s ease-out forwards;
    opacity: 0;
}

/* الأنيميشن */
@keyframes slideInLine {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تأثير خفيف عند التحويم (Hover) */
.title-heade:hover {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* تنسيق الزرار الجديد بدون صور */
.tab-trigger.s-button-btn {
    /* تدرج لوني فخم يشبه ألوان المكياج النود */
    background: linear-gradient(135deg, #f5e6d3 0%, #e0c3a0 100%) !important;
    
    border: 1.5px solid #d4af37 !important; /* إطار ذهبي نحيف */
    border-radius: 50px;
    color: #5d4037 !important; /* بني دافئ للخط */
    padding: 12px 30px !important;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(181, 149, 114, 0.15); /* ظل ناعم */
    cursor: pointer;
      margin-top: 2px;
}

/* تأثير الضوء (Glow) عند الوقوف بالماوس */
.tab-trigger.s-button-btn:hover {
    background: linear-gradient(135deg, #e0c3a0 0%, #f5e6d3 100%) !important; /* عكس التدرج */
    transform: translateY(-2px); /* رفعة بسيطة لفوق */
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: #3e2723 !important;
}

/* تأثير اللمعة (Shimmer) اللي طلبتها */
.tab-trigger.s-button-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.6s;
}

.tab-trigger.s-button-btn:hover::after {
    left: 100%;
}

/* لو الزرار غير نشط (Inactive) */
.tab-trigger.inactive {
    background: #f9f9f9 !important;
    border-color: #ddd !important;
    color: #aaa !important;
    pointer-events: none; /* يمنع الضغط */
    box-shadow: none;
}


/* تنسيق الحاوية الرئيسية للأيقونات */
/* ستايل موحد لجميع الأيقونات (البحث، المفضلة، السلة، الحساب) */
.side-account i, 
.side-account svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #5d4037 !important; /* لون بني دافئ */
    cursor: pointer;
}

/* تأثير عند الوقوف على أي أيقونة */
.side-account i:hover, 
.side-account a:hover svg, 
.side-account button:hover svg {
    color: #d4af37 !important; /* تتحول لذهبي */
    transform: translateY(-3px) scale(1.1); /* تترفع لفوق وتكبر سيكا */
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

/* ستايل خاص بلمسة البحث (Input) */
.s-search-input {
    border: 1px solid #e0c3a0 !important;
    background-color: #fdfaf7 !important;
    transition: all 0.3s ease;
}

.s-search-input:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2) !important;
}

/* عداد السلة (الرقم الصغير) */
.s-cart-summary-count {
    background-color: #d4af37 !important; /* لون ذهبي براند */
    color: #fff !important;
    font-weight: bold;
    border-radius: 50%;
    animation: bounce 2s infinite; /* أنيميشن بسيط عشان يلفت النظر */
}

/* زرار تسجيل الدخول (اللي كان شكله عادي) */
.header-btn {
    background: linear-gradient(135deg, #f5e6d3 0%, #d4af37 100%) !important;
    border: none !important;
    color: #5d4037 !important;
    box-shadow: 0 4px 10px rgba(181, 149, 114, 0.2);
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
}

.header-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f5e6d3 100%) !important;
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* أنيميشن ناعم لظهور العناصر */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* تحسين شكل أيقونة اللغة */
.lang-icone {
    font-size: 20px;
    padding: 5px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.05);
}


/* تنسيق الحاوية الكبيرة للمميزات */
.g_features {
    background-color: #fdfaf7 !important; /* خلفية نود فاتحة جداً */
    padding: 40px 0;
    border-radius: 20px;
}

/* تنسيق البوكسات الخاصة بالمميزات */
.g_features .products-item {
    border: 1px solid #e0c3a0 !important; /* حدود ذهبية ناعمة */
    background: #ffffff !important;
    border-radius: 15px !important;
    padding: 25px 15px !important;
    margin: 5px; /* مسافة بسيطة بين الحدود */
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* تأثير عند الوقوف على البوكس */
.g_features .products-item:hover {
    border-color: #d4af37 !important; /* اللون يقلب ذهبي صريح */
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15); /* ظل ذهبي خفيف */
    transform: translateY(-8px); /* رفعة للبوكس كله */
}

/* حركة الخط السفلي اللي بيظهر عند الـ Hover */
.g_features .products-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #d4af37;
    transition: width 0.4s ease;
}

.g_features .products-item:hover::after {
    width: 100%; /* خط بيجري تحت البوكس */
}

/* تنسيق الأيقونة جوه البوكس المحدد */
.g_features .products-item i {
    font-size: 40px;
    color: #d4af37 !important;
    margin-bottom: 10px;
    display: block;
}

/* تنسيق النص جوه البوكس */
.g_features .products-item h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #5d4037 !important;
}

@media (max-width: 767px) {
    .g_cat .s-slider-swiper-wrapper {
        justify-content: center !important;
    }
}
/* استهداف أي سلايدر بيبدأ بـ ID سوبر */
div[id^="swiper-wrapper"] .products-item .image-parent {
    border: 2px solid #e0c3a0 !important; /* حدود بلون نود */
    border-radius: 20px !important;
    padding: 8px !important;
    background: #fff !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
}

/* التأثير عند التحويم */
div[id^="swiper-wrapper"] .products-item:hover .image-parent {
    border-color: #d4af37 !important; /* يقلب ذهبي */
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25) !important;
}

/* تنسيق العنوان */
div[id^="swiper-wrapper"] .products-item h3 {
    color: #5d4037 !important;
    font-weight: bold !important;
    margin-top: 15px !important;
    transition: 0.3s !important;
}

div[id^="swiper-wrapper"] .products-item:hover h3 {
    color: #d4af37 !important;
}
div[id^="swiper-wrapper"] img {
   border-radius: 10px;
}

@media (min-width: 992px) {
   div[id^="swiper-wrapper"] .lg\:max-w-\[15\%\] {
        max-width: 20% !important;
    }
}



.Gl_add_to_cart_btn_product button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important; /* مسافة بين الأيقونة والنص */
    text-wrap: nowrap !important;
    border-radius: 50px !important; /* حواف دائرية أنعم بكتير */
    border: 1px solid #d4af37 !important; /* إطار ذهبي رفيع */
background: linear-gradient(135deg, #45655a 0%, #2a3d36 100%) !important;    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2) !important;
}

/* تأثير عند الوقوف على الزرار (Hover) */
.Gl_add_to_cart_btn_product button:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b38b6d 100%) !important; /* يقلب ذهبي */
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
}

/* لمعة خفيفة بتعدي على الزرار كل فترة عشان تشد العين */
.Gl_add_to_cart_btn_product button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* حركة بسيطة للأيقونة (السلة) */
.Gl_add_to_cart_btn_product button:hover i {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

/* 1. حاوية الكمية وسعر المنتج */
.sticky-product-bar {
    background: #fdfaf7 !important; /* خلفية نود هادئة */
    border-top: 1px solid #e0c3a0 !important;
    padding: 20px !important;
    border-radius: 15px 15px 0 0 !important;
}

/* 2. تخصيص مدخل الكمية (Quantity Input) */
salla-quantity-input {
    background: #fff !important;
    border: 1px solid #45655a !important; /* تحديد باللون الزيتي */
    border-radius: 8px !important;
    overflow: hidden;
}

salla-quantity-input button {
    color: #45655a !important;
}

/* 3. زر إضافة للسلة (بالتدرج الزيتي واللمعة) */
.s-button-element.s-button-primary {
    background: linear-gradient(135deg, #45655a 0%, #2a3d36 100%) !important;
    border: 1px solid #45655a;
    border-radius: .75rem !important;
     font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(69, 101, 90, 0.3) !important;
}

.s-button-element.s-button-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(69, 101, 90, 0.5) !important;
    filter: brightness(1.2);
}

/* 4. زر "اشتري الآن" أو الشراء السريع */
.s-fast-checkout-button {
    background: #fff !important;
    border: 2px solid #d4af37 !important; /* إطار ذهبي */
    color: #d4af37 !important;
    border-radius: 8px !important;
     margin-top: 10px !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.s-fast-checkout-button:hover {
    background: #d4af37 !important;
    color: #fff !important;
}

/* 5. أيقونة توفر المنتج (المنتج متوفر) */
.visa {
    background: rgba(69, 101, 90, 0.05) !important; /* خلفية زيتية خفيفة جداً */
    border: 1px dashed #45655a !important;
    color: #45655a !important;
}

.available-icon {
    color: #45655a !important;
    animation: pulse 2s infinite;
}

/* أنيميشن نبض للأيقونة */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}






/* 1. حولنا التبويبات لأزرار عايمة (Floating Pills) */
.s-tabs-header {
    background: transparent !important;
    border: none !important;
    display: flex !important;
    gap: 12px !important;
    padding: 10px !important;
    overflow-x: auto !important; /* عشان لو الموبايل شاشته صغيرة */
    scrollbar-width: none;
  justify-content: center;
}

.s-tabs-header-item {
    background: #f4f4f4 !important; /* لون رمادي فاتح جداً هادي */
    color: #666 !important;
    border-radius: 50px !important; /* شكل البيضة أو الكبسولة */
    padding: 8px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid transparent !important;
}

/* 2. التبويب النشط: بيتحول للون الزيتي فوراً وبياخد ظل */
.s-tabs-active {
    background: #45655a !important; /* الزيتي بتاعك */
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(69, 101, 90, 0.3) !important;
    transform: scale(1.05); /* بيكبر سنة عشان يبان إنه المختار */
}

/* 3. محتوى الكلام (الوصف): خليه جوه كارت "Clean" */
.s-tabs-content-wrapper {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 20px !important;
    margin-top: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important; /* ظل خفيف جداً */
}

/* 4. تنسيق النصوص: خليه "تاتش" بسيط */
.product__description p {
    margin-bottom: 12px !important;
    color: #444 !important;
}

.product__description strong {
    color: #45655a !important;
    background: rgba(69, 101, 90, 0.05); /* خلفية زيتية شفافة ورا العنوان */
    padding: 2px 10px;
    border-radius: 5px;
}
.s-tabs-header>salla-tab-header {
    overflow: visible !important;
    background: none !important;
}
.s-tabs-header-item span {
    text-wrap: nowrap;
    background: none !important;
}
.s-tabs-content-wrapper table{
  font-family: 'Cairo' !important;
}




.s-products-slider-card{
          margin-bottom: 10px;
}

/* استهداف كرت المنتج بشكل عام */
.s-product-card-entry {
    border: 1px solid #e0c3a0 !important; /* حدود نود راقية */
    border-radius: 12px !important;
    padding: 12px !important;
    background: #fff !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    margin-top: 10px;
}
.product-index .s-product-card-entry {
    padding: 5px !important;
}
.product-index .s-products-list-wrapper {
    gap: 10px;
}
/* تأثير عند الوقوف على الكرت */
.s-product-card-entry:hover {
    border-color: #45655a !important; /* الحدود تقلب زيتي */
    box-shadow: 0 12px 24px rgba(69, 101, 90, 0.12) !important;
    transform: translateY(-8px);
}

/* تنسيق الصورة وحوافها */
.s-product-card-image-full {
    border-radius: 8px !important;
    overflow: hidden !important;
}

.s-product-card-image-full img {
    transition: transform 0.6s ease !important;
}

.s-product-card-entry:hover img {
    transform: scale(1.1) !important; /* زووم للصورة */
}

/* اسم المنتج */
.s-product-card-content-title a {
    color: #45655a !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-top: 10px !important;
    display: block !important;
}

/* منطقة السعر */
.s-product-card-sale-price h4 {
    color: #45655a !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

/* سعر الخصم (المشطوب) */
.s-product-card-sale-price span.line-through {
    color: #b38b6d !important; /* بني فاتح */
    font-size: 13px !important;
}

/* زر إضافة للسلة داخل الكرت */
.Gl_add_to_cart_btn_product button {
    background: linear-gradient(135deg, #45655a 0%, #2a3d36 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    color: #fff !important;
    height: 42px !important;
    font-size: 14px !important;
    transition: 0.3s !important;
}

.Gl_add_to_cart_btn_product button:hover {
    filter: brightness(1.2);
    box-shadow: 0 4px 12px rgba(69, 101, 90, 0.3) !important;
}

/* أيقونات المفضلة والعين */
.s-product-card-wishlist-btn i, 
.quike-view i {
    color: #45655a !important;
}

.quike-view:hover {
    background-color: #45655a !important;
}


/* تنسيق أيقونة تكبير الصورة */
.sicon-arrow-expand {
    background-color: rgba(255, 255, 255, 0.9) !important; /* خلفية بيضاء شفافة سيكا */
    color: #45655a !important; /* اللون الزيتي بتاعك */
    border: 1px solid #e0c3a0 !important; /* إطار نود ذهبي */
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;
}

/* التأثير عند الوقوف بالماوس */
.sicon-arrow-expand:hover {
    background-color: #45655a !important; /* الخلفية تقلب زيتي */
    color: #ffffff !important; /* الأيقونة تقلب أبيض */
    border-color: #45655a !important;
    transform: scale(1.1) rotate(90deg); /* تكبر سيكا وتلف لفة خفيفة */
    box-shadow: 0 6px 12px rgba(69, 101, 90, 0.2) !important;
}

/* حركة بسيطة للأيقونة أول ما الكرت يظهر عشان تنبه العميل */
@keyframes expandPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.s-product-card-entry:hover .sicon-arrow-expand {
    animation: expandPulse 1s infinite ease-in-out;
}


/* 1. الحاوية الرئيسية - خلفية فاتحة جداً ونظيفة */
.store-footer {
    background-color: #fdfaf7 !important; /* لون كريمي فاتح جداً هادي */
    border-top: 1px solid #e0c3a0 !important; /* خط رفيع ذهبي نود */
    color: #45655a !important;
}

.store-footer__inner {
    background-color: transparent !important;
}

/* 2. العناوين - زيتي صريح عشان الوضوح */
.store-footer h3, 
.s-contacts-title, 
.s-apps-icons h3 {
    color: #45655a !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    position: relative;
    padding-bottom: 8px;
}

/* خط صغير تحت العناوين بلون ذهبي */
.store-footer h3::after, .s-contacts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: #d4af37 !important;
}
html[lang="en"] .store-footer h3::after,
html[lang="en"] .s-contacts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: auto !important;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #d4af37 !important;
}
/* 3. الروابط - بسيطة وراقية */
.s-menu-footer-item, .s-contacts-item span {
    color: #5d4037 !important; /* بني دافئ */
    font-size: 14px !important;
    transition: 0.3s;
}

.s-menu-footer-item:hover {
    color: #45655a !important;
    transform: translateX(-5px); /* حركة بسيطة لليمين */
}

/* 4. أيقونات التواصل - دوائر زيتية مفرغة */
.s-social-icon {
    background-color: transparent !important;
    border: 1px solid #45655a !important;
    color: #45655a !important;
    border-radius: 50%;
    padding: 6px;
    transition: 0.3s ease-in-out;
}

.s-social-link a:hover .s-social-icon {
    background-color: #45655a !important;
    color: #fff !important;
}

/* 5. منطقة الحقوق (Bottom Bar) - لون أبيض صريح */
.footer-margin {
    background-color: #ffffff !important;
    border-top: 1px solid #eee !important;
    padding: 20px 0 !important;
}

.copyright-text, .copyright-text a {
    color: #999 !important;
    font-size: 12px !important;
}

/* 6. أيقونات التواصل (الواتساب والهاتف) */
.s-contacts-icon svg {
    fill: #45655a !important; /* لون الأيقونات زيتي */
}
@media (max-width: 767px) {
  .store-footer h3::after, .s-contacts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 45%;
    width: 30px;
    height: 2px;
    background-color: #d4af37 !important;
}
}
.s-product-card-image-contain {
     object-fit: cover !important;
}
@media (max-width: 480px) {
    .s-tabs-header-item.s-tabs-bg-normal {
        padding: 10px 5px !important;
      font-size: 13px !important;
    }
}

@media (min-width: 576px) {
    .s-product-options-option {
        display: flex !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: flex-start;
        grid-gap: 1rem;
        gap: 1rem;
    }
}

.s-product-card-fit-height .s-product-card-image {
    height: 11rem;
    max-height: 300px!important;
}



/* 1. إزالة طبقة التعتيم والـ Overlay تماماً */
.s-block--banners .has-overlay.with-hover:after,
.s-block--banners .has-overlay:before {
    display: none !important;
}

/* 2. تنسيق الحاوية الرئيسية لجعل العناوين بالأسفل */
.s-block--banners .banner-entry {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    background: transparent !important;
      width: 100% !important;
}

/* 3. تصميم إطار الصورة (يشبه الصورة المرفقة) */
.s-block--banners .banner-entry .lazy__bg {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 25px !important; /* حواف دائرية كبيرة */
    border: 2px solid #e5d5c5 !important; /* لون الإطار الخارجي */
    padding: 10px !important; /* مسافة للإطار الداخلي */
    background-clip: content-box !important;
    transition: all 0.3s ease-in-out;
}

/* تأثير بسيط عند الهوفر على الصورة */
.s-block--banners .banner-entry:hover .lazy__bg {
    transform: scale(1.02);
    border-color: #d4bda6 !important;
}

/* 4. تنسيق عنوان القسم (التايتل) */
.s-block--banners .banner-entry h3.text-with-border {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    color: #5d5d5d !important; /* لون نص هادئ */
    text-align: center !important;
    margin-top: 15px !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    opacity: 1 !important; /* شفافية كاملة للخط */
}

/* إزالة أي حدود أو خلفيات افتراضية داخل نص العنوان */
.s-block--banners .banner-entry h3 span {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* 5. تنسيق العنوان الرئيسي للقسم (الأقسام الرئيسية) */
.s-block__title h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* إضافة الخط الذهبي تحت العنوان الرئيسي كما في الصورة */
.s-block__title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4bda6, transparent);
}

section.s-block--banners {
    max-width: 900px !important;
 }
section.s-block--banners .s-block__title {
    align-items: center;
    display: flex;
    justify-content: center !important;
    margin-bottom: 0 !important;
}


.s-button-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important; /* مسافة بين الأيقونة والنص */
    text-wrap: nowrap !important;
    border-radius: 50px !important; /* حواف دائرية أنعم بكتير */
    border: 1px solid #d4af37 !important; /* إطار ذهبي رفيع */
background: linear-gradient(135deg, #45655a 0%, #2a3d36 100%) !important;    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2) !important;
}

@media (max-width: 767px) {
     .s-block--banners .banner-entry .lazy__bg,
  .s-block--banners .banner-entry{
    padding: 4px !important; 
}
 .s-block--banners  .grid-flow-row {
    grid-auto-flow: column;
    gap: 0 !important;
}
  .s-block--banners .banner-entry h3.text-with-border {

    padding: 0px !important;
    display: block !important;
    margin: 0 !important;
}
  .s-product-card-fit-height .s-product-card-image {
    height: 230px!important;
    max-height: 300px!important;
}
  .s-block--banners .banner-entry { 
    width: 125px !important;
}
  
.s-block--banners .banner-entry h3 span { 
    font-size: 15px !important;
}
  .s-product-card-content { 
    padding: 5px!important;
}
  .s-button-btn { 
    padding: 10px 10px !important;

}
}



/* تأثير عند الوقوف على الزرار (Hover) */
.s-button-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b38b6d 100%) !important; /* يقلب ذهبي */
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
}

/* لمعة خفيفة بتعدي على الزرار كل فترة عشان تشد العين */
.s-button-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* حركة بسيطة للأيقونة (السلة) */
.s-button-btn:hover i {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.topnav-is-dark .top-navbar { 
    background-color: rgb(44 65 57) !important;
}
.s-apps-icons {
  display: none !important;
}




salla-metadata .s-metadata-box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e2d6;
      padding: 0 !important;
}

salla-metadata .s-metadata-box-header {
      background: #1a3a2a;
    color: #fbc42a;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

salla-metadata .s-metadata-box-header i {
  color: #c9a84c;
}

salla-metadata .s-metadata-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid #f0ebe2;
}

salla-metadata .s-metadata-row:last-child {
  border-bottom: none;
}

salla-metadata .s-metadata-row-name {
  font-size: 13px;
  color: #7a6e5e;
  margin: 0;
}

salla-metadata .s-metadata-row-value {
  font-size: 13px;
  color: #1a3a2a;
  font-weight: 500;
  margin: 0;
}