:root {   /* الألوان الرئيسية */   --primary-color:#0000ff;  --secondary-color:#928701;  --primary-color-2:#8488e3;  --secondary-color-2:#ece481;
  /* المتغيرات المشتقة */
  --main-color: var(--primary-color);
  --hover-color: var(--secondary-color);
  --background-color: var(--secondary-color-2);
  --border-color: var(--secondary-color);
  --text-color: var(--primary-color);

  /* تدرجات وخلفيات */
  --bg-gradient-start: var(--primary-color);
  --bg-gradient-end: var(--secondary-color);
  --glow-color: var(--secondary-color);
  --border-glow: var(--secondary-color);

  /* متغيرات القائمة (Navigation) */
  --nav-bg:var(--primary-color);
  --nav-text: var(--primary-color);
  --nav-border: var(--secondary-color);
  --nav-hover-bg: var(--secondary-color);
  --nav-hover-text: var(--secondary-color);

  /* متغيرات الكارد (بطاقات المنتجات) */
  --card-bg:var(--primary-color);
  --card-border: var(--secondary-color);
  --card-text: var(--primary-color);
  --card-hover-bg: var(--secondary-color);
  --card-hover-text:--secondary-color: 

  /* متغيرات الأزرار */
  --button-bg: var(--secondary-color);
  --button-text: #000000;

  /* اللوجو */
  --logo: url('https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/rAXEmr/V13uKYEyxuDhCdopqbw6uLV8AzmthuKsinSWo1Wb.png');
}




.store-footer {
  background-color:var(--primary-color) !important;
}

.store-footer__inner {
  background-color: !important;
  color:  !important;
  backdrop-filter: none;
}




/* 🖌️( البحث ) متغيرات الألوان لتعديلها بسهولة */

:root {
    --main-color:var(--primary-color-2);  /* اللون الأساسي */
    --hover-color:var(--secondary-color); /* لون التأثير عند التمرير */
    --background-color:var(--secondary-color-2); /* لون الخلفية */
    --border-color:var(--secondary-color-2); /* لون الإطار */
    --text-color:var(--primary-color); /* لون النص */
}

/* 🔥 تحسين وتجميل مربع البحث */
.top-navbar .s-search-input {
    width: 100%;
    
   padding: 12px;
  font-size: 16px;
  color: var(--primary-color);
  background:var(--secondary-color-2);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    outline: none;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 10px var(--primary-color);
}

/* ✨ تأثير الإضاءة عند تمرير الماوس */
.top-navbar .s-search-input:hover {
    border-color: var(--hover-color);
    box-shadow: 0 0 15px var(--hover-color);
    background-color:var(--primary-color-2);
}

/* 💡 تأثير متوهج عند النقر على حقل البحث */
.top-navbar .s-search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--main-color);
    box-shadow: 0 0 20px var(--main-color);
    transform: scale(1.05);
}

/* 🎯 تحسين تأثير الإدخال أثناء الكتابة */
.top-navbar .s-search-input::placeholder {
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}

.top-navbar .s-search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* 🎭 تأثير الاهتزاز الخفيف عند النقر */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(3px); }
    50% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.top-navbar .s-search-input:focus {
    animation: shake 0.3s ease-in-out;
}


.s-search-icon svg {
  height: 1rem;
  width: 1rem;
  fill: #9ca3af00;
}


/* 🎨 متغيرات الألوان لتسهيل التعديل */
:root {
    --bg-gradient-start:var(--primary-color); /* لون بداية التدرج */
    --bg-gradient-end:var(--primary-color); /* لون نهاية التدرج */
    --glow-color: var(--primary-color); /* لون التوهج */
    --border-glow:var(--secondary-color-2);; /* لون الحدود */
}

/* 🌟 تحسين مظهر `.bg-inherit` */
.bg-inherit {
   
    border-radius: 15px;
    padding: 5px;
    box-shadow: 0 0 15px var(--glow-color);
    position: relative;
    overflow: hidden;
    animation: glowingEffect 2s infinite alternate ease-in-out;
}

/* 🔥 تأثير التوهج المستمر */
@keyframes glowingEffect {
    0% { box-shadow: 0 0 10px var(--glow-color); }
    50% { box-shadow: 0 0 30px var(--glow-color); }
    100% { box-shadow: 0 0 10px var(--glow-color); }
}

/* 🎭 تأثير الخلفية المتحركة */
@keyframes moveBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-inherit.animated {
    background-size: 200% 200%;
    animation: moveBackground 5s infinite alternate ease-in-out;
}

.sicon-user-circle::before {
  content: "\f072";
  color: black;}
  
  .sicon-shopping-bag::before {
  content: "\ef36";
  color: #0d0d0d;
}


  

/* ✨ حدود متوهجة تتغير بشكل جميل */
.bg-inherit::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--border-glow), transparent);
    z-index: -1;
    animation: borderGlowEffect 3s infinite alternate ease-in-out;
}

/* 🌟 تأثير الحدود المتوهجة */
@keyframes borderGlowEffect {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}





.s-products-slider-card {
    margin: 10px; /* مسافة حول كل كارد */
}




::before, ::after {
  --tw-content: '';
}
element {
}
.s-product-card-vertical {
  flex-direction: column;
}
.s-product-card-entry {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: space-between;
  border-radius: .75rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 0);
  
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}




/* 🎨(القائمه ) متغيرات الألوان */
:root {
    --nav-bg:var(--primary-color) !important; /* خلفية القائمة */
    --nav-border: #d7c4b6 !important; /* لون الإضاءة */
    --nav-text: #ffffff !important; /* لون النص */
    --nav-hover-bg:var(--secondary-color)!important; /* لون عند التفاعل */
    --nav-hover-text: #000000 !important; /* لون النص عند التفاعل */
}

/* 🚀 تحسين القائمة */
.mm-spn.mm-spn--navbar.mm-spn--main {
    background-color: var(--nav-bg) !important;
    border: 2px solid var(--nav-border) !important;
    border-radius: 12px !important;
    padding: 80px 20px 60px !important; /* ✅ مساحة أكبر */
    box-shadow: 0 0 20px var(--nav-border) !important;
    position: relative !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-align: center !important;
    overflow: visible !important;
}


/* ✨ تأثير نبض خفيف */
.logo-container {
    animation: pulse 1.5s infinite alternate ease-in-out;
}

@keyframes pulse {
    from { transform: translateX(-50%) scale(1); }
    to { transform: translateX(-50%) scale(1.1); }
}

/* 🎭 تحسين شكل عناصر القائمة */
.mm-spn.mm-spn--navbar.mm-spn--main a {
    color: var(--nav-text) !important;
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 16px 22px !important;
    display: block !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.4s ease-in-out;
    position: relative !important;
}

/* ✨ تأثير عند تمرير الماوس */
.mm-spn.mm-spn--navbar.mm-spn--main a:hover {
    background: var(--nav-hover-bg) !important;
    color: var(--nav-hover-text) !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--nav-hover-bg);
}

/* 🔄 تأثير ظهور القائمة */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.mm-spn.mm-spn--navbar.mm-spn--main {
    animation: fadeInSlide 0.6s ease-in-out;}
    
    }
    
    
    
    
    
    
  
  /* 🎨 متغيرات الألوان */
:root {
    --card-bg:var(--primary-color-2); /* خلفية الكارد */
    --card-border: var(--primary-color-2); /* لون الحدود */
    --card-text: #ffffff; /* لون النص */
    --card-hover-bg:var(--primary-color-2); /* لون عند التفاعل */
    --card-hover-text: #000000; /* لون النص عند التفاعل */
    --button-bg:var(--primary-color-2); /* لون زر الإضافة */
    --button-text: #000000; /* لون نص الزر */
}

/* 🚀 تصميم الكارد ثلاثي الأبعاد */
.s-products-slider-card.swiper-slide {
   
    border-radius: 20px;
    padding: 20px;
   
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  
    text-align: center;
    
    perspective: 1000px;
    overflow: hidden;
    transform-style: preserve-3d;
}



.feature-hover{background:var(--primary-color);}

.feature {
  color: black;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  background: #fff0;
}
/* 🖼️ تحسين الصور مع تأثير زجاجي */
.s-products-slider-card.swiper-slide img {
    width: 100%;
    border-radius: 15px;
    position: relative
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    filter: drop-shadow(0px 0px 10px var(--primary-color-2););
}

/* 🛒 تصميم زر الإضافة */
.s-products-slider-card.swiper-slide .add-to-cart {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    font-size: 18px;
    font-weight: bold;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    position: relative;
}

/* ✨ زر الإضافة مع تأثير نبض */
.s-products-slider-card.swiper-slide .add-to-cart:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px var(--primary-color-2);
    animation: pulse 1s infinite alternate;
}

/* ✨ تأثير نبض للزر */
@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}}


.store-footer__inner {
    background: linear-gradient(90deg, #red, #black); /* لون داكن أنيق */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}


/* خط متحرك بسيط أسفل الشريط */
.store-footer__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #434444, #d9eded);
    animation: subtleMove 4s infinite linear;
}

/* حركة ناعمة للخط السفلي */
@keyframes subtleMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}



/* 🎨 تأثير احترافي على صور المنتجات */
.s-product-card-image img {
    width: 100%;
    border-radius: 15px; /* زوايا ناعمة */
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, filter 0.4s ease-in-out;
    filter: drop-shadow(0px 0px 10px var(--primary-color-2););
    position: relative;
}

/* ✨ تأثير عند تمرير الماوس */
.s-product-card-image:hover img {
    transform: scale(1.1) rotateY(10deg) rotateX(5deg);
    box-shadow: 0 10px 25px var(--primary-color-2);
    filter: brightness(1.2) contrast(1.1);
}

/* 🌟 تأثير إضاءة متوهجة */
.s-product-card-image {
    position: relative;
    overflow: hidden;
}

.s-product-card-image::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color-2) 10%, transparent 70%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0;
    transform: scale(1.5);
}

.s-product-card-image:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* 🔄 تأثير انسيابي للصور */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.s-product-card-image img {
    animation: floating 3s infinite ease-in-out;
}






 

.banner--fixed {
    position: relative;
    overflow: hidden;
}

.banner--fixed img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s ease-in-out, opacity 0.6s ease-in-out;
}

/* تأثير الحركة عند التحريك */
.banner--fixed:hover img {
    transform: scale(1.08) rotate(0.5deg); /* تكبير بسيط مع إمالة طفيفة */
    opacity: 0.95; /* تخفيف بسيط في الشفافية لإحساس بالعمق */
}

/* تأثير التموج الناعم */
.banner--fixed::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 70%);
    animation: floatingEffect 6s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* حركة تموج ناعمة */
@keyframes floatingEffect {
    0% { transform: translateY(-5px) translateX(-5px); }
    50% { transform: translateY(5px) translateX(5px); }
    100% { transform: translateY(-5px) translateX(-5px); }
}







.s-product-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  margin: 1rem;
  
background: ;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: black;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}



/* عنوان المنتج بتدرج لوني أنيق */
.s-product-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* وصف المنتج بنص واضح ومقروء */
.s-product-card-content p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  line-height: 1.6;
  color: #ddd;
}

/* السعر بتفاصيل بارزة */
.s-product-card-content .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffdd57;
  margin-top: 0.8rem;
}

/* تأثير حدود متحركة في الأسفل عند التمرير */
.s-product-card-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #434444, #e6f4f3);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.s-product-card-content:hover::before {
  opacity: 1;
}

/* استجابة الشاشات المتوسطة */
@media (max-width: 768px) {
  .s-product-card-content {
    padding: 1rem;
    margin: 0.75rem;
  }
  .s-product-card-content h3 {
    font-size: 1.5rem;
  }
  .s-product-card-content p {
    font-size: 1rem;
  }
  .s-product-card-content .price {
    font-size: 1.2rem;
  }
}

/* استجابة الشاشات الصغيرة جدًا */
@media (max-width: 480px) {
  .s-product-card-content {
    padding: 0.8rem;
    margin: 0.5rem;
  }
  .s-product-card-content h3 {
    font-size: 1.3rem;
  }
  .s-product-card-content p {
    font-size: 0.9rem;
  }
  .s-product-card-content .price {
    font-size: 1.1rem;
  }
}








.s-button-primary-outline {
  display: inline-block;
  position: relative;
  padding: 0.1em 1.2em;             /* تقليل الحشو لتصغير الحجم */
  font-size: 0.9rem;                /* تقليل حجم النص */
  font-weight: 600;
  color: #fff;
  background: var(--secondary-color);
  border: 5px solid var(--secondary-color-2);
  border-radius: 22px;
  overflow: hidden;
  transition: color 0.3s ease, background 0.3s ease, 
              box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 6px var(--primary-color); /* إضاءة خفيفة مبدئية */
}

.s-button-primary-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #c4adad, rgb(217, 225, 220), red);
  transform: skewX(-30deg);
  transition: transform 0.5s ease;
}

.s-button-primary-outline:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  box-shadow: 0 0 10px rgba(52,152,219,0.6);  /* إضاءة أقوى عند hover */
  transform: scale(1.05);                       /* تأثير تكبير خفيف */
}

.s-button-primary-outline:hover::before {
  transform: translateX(300%);  /* حركة التدرج أكثر وضوحًا */
}

.s-button-primary-outline:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(52,152,219,0.3);
}









body:not(.product-index):not(.product-single):after {  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 999999;
background-color: color-mix(in srgb,  30%, transparent) !important;
  background-image:var(--logo);
  left: 0;
  background-repeat: no-repeat; 
  background-position: center;
  background-size: 360px;
  animation: pulse-in-out 2.5s ease-in-out forwards, background-change 2s ease-in forwards;
  transform: scale(0);
  border: none;
}  

@keyframes pulse-in-out {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  25% {
    opacity: 1;
    transform: scale(1.1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  75% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(0.1);
  }
}

@keyframes background-change {
  0% {
    background-color: rgba(255, 255, 255, 0.1);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.3);
  }
  100% {
    background-color: rgba(255, 255, 255, 0);
  }
} 

/* تهيئة العناصر عند بداية التحميل */
.slide--cat-entry {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px var(--primary-color);;
    
}

/* عند ظهور العنصر أثناء التمرير */
.slide--cat-entry.show {
    transform: translateY(0);
    opacity: 1;
}
.slide--cat-entry{background-color: var(--primary-color-2);
height: 100px;
}}

/* تأثير عند تمرير الماوس */
.slide--cat-entry:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide--cat-entry img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

/* تكبير ناعم للصورة عند المرور */
.slide--cat-entry:hover img {
    transform: scale(1.1);
}

/* تأثير شفاف جميل عند المرور */
.slide--cat-entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff82;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slide--cat-entry:hover::before {
    opacity: 1;
}



.s-slider-block__title h2 {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: white; /* لون الخط */
    padding: 15px 30px;
    border-radius: 115px;
    display: inline-block;
    background:linear-gradient(90deg, rgb(247, 243, 241) 0%, var(--primary-color-2) 99%, var(--primary-color) 100%); خلفية داكنة شفافة */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: subtleShake 3s infinite ease-in-out;
}

/* اهتزاز خفيف دوري */
@keyframes subtleShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-1px); }
}

/* عند تمرير الماوس: تكبير خفيف + ظل ناعم */
.s-slider-block__title h2:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--secondary-color);;
}






/* Footer Inner */
 .store-footer .store-footer__inner {
    background-color: red;
    color: red;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-image: url('');
    background-size: cover !important;
    background-position: center;
        border-radius: 55px;
    position: relative;
    transition: all 0.3s ease;
}



/* Footer Outer */

.store-footer__inner {
  background-color:red
  
  ;
  color: #f00 !important;
  border-radius: 50%;
  padding: 20px;
  backdrop-filter: blur(5px);
}
/* Additional Styling */
.leading-6 {
    line-height: 1.5rem;
    font-size: 1.25rem;
    color: #ff7f01;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

footer a i {
  background-color: #ff7f01;
}

.copyright-text p {
    color:var(--primary-color-2)
}

.s-payments-list-item {
    border: 1px solid #03161f;
}


salla-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--main-color);
}

/* Modern Price */

.s-slider-block__display-all {
    color: var(--main-color) ;
    /* animation: test 1200ms linear infinite !important; */
    font-size: 20px !important;
}
.s-slider-block__title h2 {

    font-size: 20px !important;
  color: black;
}
.s-cart-summary-total {
  color: black;
  font-weight: 500;
  background-color: transparent; /* No background */
  padding: 10px 0;
  border: none;
  text-align: center;
  position: relative;
  text-decoration: none;
  font-size: 20px;
}

.s-cart-summary-total:hover {
  text-decoration: underline; /* Underline text on hover */
}





.header-btn__icon {
    color: #fff;
    border: #817c78;
    background: var(--main-color);
}

.lazy__bg {
    width: 100%; /* جعل العنصر يأخذ العرض بالكامل */
    height: 100%; /* جعل العنصر يأخذ الارتفاع بالكامل */
    background-size: cover; /* جعل الصورة تملأ الكلاس بالكامل بدون تشويه */
    background-position: center; /* ضبط الصورة في المنتصف */
    background-repeat: no-repeat; /* منع تكرار الصورة */
    transition: transform 0.3s ease-in-out; /* تأثير ناعم عند التبديل */
}

/* تأثير اهتزاز عند تمرير الماوس */
@keyframes vibrate {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

.lazy__bg:hover {
    animation: vibrate 0.2s infinite; /* تشغيل الاهتزاز عند تحريك الماوس */
}




.s-product-card-content {
    /* أو أي عرض تريده */
     /* أو أي ارتفاع يناسبك */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}



.s-slider-v-centered .s-slider-block__title-nav button.swiper-button-disabled {
 
  display: none;
}
.banner--fixed img {
  
  background: none;
}
/* General Styles */
.leading-6 {
    line-height: 1.5rem;
    font-size: 1.25rem; /* Specify a consistent font size */
    color: var(--primary-color); /* Apply primary color */
    font-weight: 600; /* Add some weight for emphasis */
    text-transform: uppercase; /* Uppercase text for better readability */
    letter-spacing: 0.05em; /* Slight letter spacing for readability */
}


/* Responsive Styles */
@media (min-width: 1024px) {
    .store-footer h3 {
        margin-bottom: 1.25rem;
        padding: 12px;
    }
}
@media only screen and (min-width: 1024px) {
    @media (min-width: 1024px) {
        .main-menu {
            display: flex;
            margin: 1px;
        }
    }
}


.s-contacts-icon:where([dir="rtl"], [dir="rtl"] *) {
    margin-left: 0.625rem;
     transform: scale(1.1);
  background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color:black;
}
.s-contacts-icon:where([dir="rtl"], [dir="rtl"] *):hover {
    margin-left: 0.625rem;
     transform: scale(1.1);
  background: linear-gradient(135deg, var(--second-color), var(--main-color));
    color: #fff;
}
.hover\:text-primary:hover {
    color: #414042;
    color: #000000;
}
.s-product-card-sale-price:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]) {
    color: black;
    font-size: 16px;
    --tw-space-x-reverse: 1;
    font-weight: bold;
}
.s-product-card-sale-price h4 {
    --tw-text-opacity: 1 !important;
    color: rgba(153, 27, 27, 1) !important;
    font-size: 17px;
    font-weight: bold;
    color: rgba(153, 27, 27, var(--tw-text-opacity)) !important;
}
.store-footer a {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    font-size: 16px;
    font-weight: 400;
}
.store-footer {
  background: linear-gradient(135deg, var(--primary-color);, var(--primary-color););
  border-top: 2px dashed var(--second-color) !important;


    font-size: 14px;
    border-top-left-radius: 125px;
    border-top-right-radius: 125px;
    text-align: center;
    transition: box-shadow 0.3s;
    
    position: relative;
    overflow: hidden;
}

.store-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    backdrop-filter: blur(10px);
    z-index: -1;
}
.footer-is-light .store-footer .store-footer__inner
 {
    background-color: transparent;
    font-size: 18px !important;
    border-bottom-color: transparent;
}

.store-footer__inner {
    background-color: !important;
    color: white!important;
    border-radius: 50%;
    padding: 20px;
    backdrop-filter: blur(5px);
}






.store-footer__inner .flex {
    justify-content: center;
}

.store-footer__inner .max-w-sm {
    margin: auto;
}

.footer-list {
    color: white !important;
}

.store-footer__inner .max-w-sm {
    color: var(--primary-color)!important;
}

.store-footer a {
    color:white !important;
    text-decoration: none;
}

.store-footer a:hover {
    color: #fed009;
}

.s-contacts-header {
    display: none;
}

.s-contacts-list.s-contacts-list-vertical {
    align-items: center;
}

.store-footer i {
    color: white !important;
    border-color: transparent !important;
}

.store-footer .contact-social {
    border: none;
}

.store-footer__inner {
    text-align: center;
}

.store-footer__inner h3:hover {
    color: white !important;
    
    
      

}










.text-center {
    text-align: center;
    padding: 0;
    position: relative;
    font-weight: bold;
    font-size: 1.2rem;
}

.text-center::before {

    display: block;
    text-align: center;
    padding: 10px;
    color:var(--secondary-color-2);
    font-size: 1.2rem;
}
.copyright-text p {
    --tw-text-opacity: 1;

    color:white;
}
.store-footer h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}
@keyframes sigal {
    0% {
        filter: drop-shadow(2px 4px 6px #d5c48c)
    }

    100% {
        filter: none;
    }
} 
.banner-entry{
    width: 52vw;
    min-height: 200px;
    background: unset;
}
.flex-col {
  
  background-image: url(https://a.top4top.io/p_3449xg34a1.png);background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    margin: 0;
    padding: 0; 
}
.lazy__bg{
    background-size: 100% 100%;
     background-size: contain!important;
     background-repeat:no-repeat!important;

}     
.lazy__bg:hover {
    transform: scale(1.05);
    transition: .9s;
}

.gap-3{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    
}

@media only screen and (max-width: 600px) {
.banner-entry{
    height:auto;
}
}
@media (min-width: 768px){
.two-row .banner-entry:first-child {
    height: auto !important;
}
}
.main-nav-container {
    background: transparent;
}
.s-cart-summary-total {
    display: flex;
}

/* 2اللوجو */
  .rtl\:lg\:pr-20:where([dir="rtl"], [dir="rtl"] *) {
   text-align: center;
    content: "";
    display: block;
    height: 110px;
    width: 211px;
  margin: -19px auto 0px 4%;
      background-image: url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/rAXEmr/V13uKYEyxuDhCdopqbw6uLV8AzmthuKsinSWo1Wb.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: sigal 1200ms linear infinite;
}

.store-footer::after {
    animation: shake 3s infinite;
    content: "برمجة و تطــوير ADFAZ" !important;
    top: 0px;
    font-size: 16px;
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    color:  var(--four-color);
    padding: 10px;
    background-color: var(--main-color);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}


/* شريط طرق الدفع والشحن */

header.store-header:before { 
    content: '';
    background: url(https://g.top4top.io/p_3453mq2he1.png);
    background-repeat-y: no-repeat;
    background-position-x: 0;
    animation: scrollBrands 2000s linear alternate both infinite;
    background-size: contain;
    height: 50px;
    display: block;
    background-color:var(--primary-color);
    background-position: center;
    margin-bottom: 16px;
    z-index: 9999999999999999;
    color:black;
}

@keyframes scrollBrands {
    0% {
        background-position-x: 0
    }

    50% {
        background-position-x: 35000px
    }

    100% {
        background-position-x: 0
    }
}

@media(max-width: 767px) {
    header.store-header:before {
        background-size:180%;
        height: 39px;
        background-position: center;
        margin-bottom: -2px
    }
    
    section:nth-of-type(1).s-block--fixed-banner ,
section:nth-of-type(2).s-block--fixed-banner ,
section:nth-of-type(3).s-block--fixed-banner {
    margin-top: 0;
    margin-bottom: 0;
}





section:nth-of-type(1).s-block--photos-slider ,
section:nth-of-type(2).s-block--photos-slider ,
section:nth-of-type(3).s-block--photos-slider {
    margin-top: 0;
    margin-bottom: 0;
}

html, body {
    overflow-x: hidden;
}


html, body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}




/*   اراء العملاء   */

         .slider-wrapper {
                width: 100%;
                overflow: hidden;
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                background:;
                padding: 50px 0;
                margin-bottom: 50px;
            }
            .slider-title {
     font-size: 2em;
  font-weight: bold !important;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
            }
            .review-container {
                display: flex;
                gap: 20px;
                transition: transform 0.5s ease-in-out;
                width: 90%;

            }
            .review {
  flex: 0 0 calc(28% - 20px);
                background: var(--1);
                padding: 20px;
                border-radius: 10px;
                text-align: center;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-height: 170px;
                position: relative;
                transition: transform 0.3s ease;
            }
            .review:hover {
                transform: scale(1.05);
            }
            .review img {
width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -46px;
            }
            .review p {
                color: var(--primary-color);
            }
            .review .name {
                font-weight: bold;
                color: var(--secondary-color);
                margin-top: 10px;
            }
            .stars {
                color: gold;
                font-size: 18px;
                margin-bottom: 10px;
            }
            @media (max-width: 768px) {
                .review {
                    flex: 0 0 calc(71% - 20px);
                }
            }
            @media (max-width: 991px) {
                .review {
                    flex: 0 0 calc(51% - 20px);
                }
            }
            
            #photos-2-slider .swiper-slide {
  width: 40% !important;
}
@media(max-width:991px) {
#photos-2-slider .swiper-slide {
  width: 55% !important;
}
}



@media (max-width: 768px) {
    .s-products-list-vertical-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* يقسم الكروت إلى عمودين */
        gap: 20px !important; /* يضيف مسافة بين الكروت */
    }
}