@media (min-width: 1024px) {
    .banner-entry {
        height: 355px;
    }
.navbar-brand img {
    max-height: 5rem;
}
.main-nav-container.fixed-pinned .navbar-brand img {
    max-height: 75px;
}
}
salla-slider.photos-slider .swiper-slide {
        margin:0;
        width: 100%;
        padding:0;
    }
    
salla-slider.photos-slider .swiper {
    padding: 0;
}
section.s-block.s-block--photos-slider {
    margin-top: 0;
}

---------------------
/* خلي الكونتينر داخل سلايدر الصور ياخد كامل العرض */
section.s-block.s-block--photos-slider > .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* شيل أي مارجن من فوق السلايدر */
section.s-block.s-block--photos-slider {
  margin-top: 0;
  overflow: hidden;
  width: 100%;
}

/* تأكيد إن السلايدرات ياخدوا العرض الكامل */
section.s-block.s-block--photos-slider .s-slider-container,
section.s-block.s-block--photos-slider .swiper-wrapper,
section.s-block.s-block--photos-slider .swiper-slide,
section.s-block.s-block--photos-slider img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

body#app {
  background-color: white;
}
.banner--fixed img {
  background-color: rgb(255 255 255);
}
.lazy__bg.lazy.bg-no-repeat.entered.loaded {
    background-color: white;
}
/* --------------------------------- 2. أول بانر (الهيرو) --------------------------------- */
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(1) > .container {
  max-width: 100%;
  margin-top: 0;
padding:0;
}


/* أول بانر بس من غير مارجن توب وياخد فول ويدث */
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(1) > .container {
  margin-top: 0;
  max-width: 100%;
}

/* الكونتينر داخل البانر ياخد كامل العرض */
.index section.s-block.s-block--fixed-banner.wide-placeholder > .container {
  max-width: 100%;
  padding: 0;
}
/* البانر الأول ياخد ارتفاع كامل */
section.s-block.s-block--fixed-banner.wide-placeholder:first-of-type {
  margin-top: 0;
  height: 100%;
  overflow: hidden;
}
/* =======================================
   🔹 أزرار Gradient & Hover
======================================= */
.s-button-element.s-button-primary-outline {
  background: linear-gradient(135deg, #152a38, #2a4452, #1f3746, #152a38);
  background-size: 400% 400%;
  animation: gradientGoldDark 8s ease infinite;
  color: #fff !important;
  border: none !important;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.4s ease;
}

@keyframes gradientGoldDark {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.s-button-element.s-button-primary-outline:hover {
  background: linear-gradient(45deg, #152a38, #2a4452, #1f3746, #152a38);
  background-size: 300% 300%;
  animation: gradientHoverGoldDark 6s ease infinite;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(21,42,56,0.7), 0 0 35px rgba(41,68,82,0.8);
  color: #fff !important;
}

@keyframes gradientHoverGoldDark {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.s-button-element.s-button-primary-outline:active {
  transform: scale(0.95);
}

/* ---------------------------------
   Hover ناعم + Gradient متحرك + ظل نيون
--------------------------------- */
.s-button-element {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.s-button-element:hover {
  background: linear-gradient(90deg, #152a38, #2a4452);
  color: #fff !important;
  box-shadow: 0 0 20px rgba(21,42,56,0.7);
  transform: translateY(-3px);
}

/* ---------------------------------
   تأثير “موجة ضوء” عند Hover
--------------------------------- */
.s-button-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.s-button-element:hover::before {
  left: 120%;
}

/* ---------------------------------
   تأثير نبض (Pulse)
--------------------------------- */
.s-button-element:hover {
  animation: pulseBtn 0.8s ease infinite;
}

@keyframes pulseBtn {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(21,42,56,0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(21,42,56,0.9); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(21,42,56,0.7); }
}

/* =======================================
   الكارد الأساسي
======================================= */
.s-product-card-entry {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(270deg, #152a38, #2a4452, #152a38, #1f3746);
  background-size: 600% 600%;
  animation: card-gradient-move 8s ease infinite;
  color: #fff;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 12px rgba(21,42,56,0.3);
}
.s-product-card-content-title a:hover {
    color: white;
}
/* Hover effect للكارد */
.s-product-card-entry:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(21,42,56,0.5), 0 0 15px #152a38 inset;
}

/* حركة Gradient للكارد */
@keyframes card-gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* تأثير على الصورة عند Hover */
.s-product-card-entry:hover .s-product-card-image img {
  transform: translateY(-10px) scale(1.08);
  transition: transform 0.5s ease-in-out;
  filter: brightness(1.1) saturate(1.2);
}

/* النصوص */
.s-product-card-content-title a {
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
}

.s-product-card-content-title a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2a4452; /* لون متناغم مع الهوية الجديدة */
  transition: width 0.4s ease;
}

.s-product-card-entry:hover .s-product-card-content-title a::after {
  width: 100%;
}

/* الأسعار */
.s-product-card-price {
  color: #fff;
  font-weight: 600;
  transition: color 0.4s ease;
}

/* Hover للزرار داخل الكارد */
.s-product-card-entry:hover .s-button-element {
  background: linear-gradient(270deg, #152a38, #2a4452, #1f3746);
  color: #fff !important;
  border-color: #152a38 !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px #152a38, 0 0 30px #2a4452 inset;
}

/* السلة داخل الكارد */
.s-product-card-entry .s-button-text i {
  display: inline-block;
  animation: cart-slide-in 0.8s forwards;
  opacity: 1;
}

.s-product-card-entry:hover .s-button-text i {
  animation: cart-slide-out 0.8s forwards;
}

@keyframes cart-slide-in {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes cart-slide-out {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-50px); opacity: 0; }
}
/* صندوق المميزات – تصميم متقدم */
.s-block--features__item {
  position: relative;
  background: #fff; /* خلفية افتراضية */
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
  border: 2px solid #152a38; /* لون الهوية الجديد */
}

/* طبقة خلفية متحركة داخل الصندوق */
.s-block--features__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #152a38, #2a4452, #152a38, #2a4452);
  background-size: 200% 200%;
  z-index: 0;
  border-radius: 16px;
  transition: opacity 0.5s ease;
  opacity: 0;
  animation: bgMove 6s linear infinite;
}

/* حركة الخلفية داخل الصندوق */
@keyframes bgMove {
  0% { background-position: 0% 0%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 0%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 0%; }
}

/* هوفر الصندوق */
.s-block--features__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(21, 42, 56, 0.3); /* لون الهوية الجديد بدرجة شفافة */
}

.s-block--features__item:hover::before {
  opacity: 0.3; /* ظهور الخلفية المتحركة بهدوء */
}

/* الأيقونة بلون مميز عن الخلفية */
.s-block--features__item .feature-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #fff; /* خلفية الأيقونة لتبرز عن البوكس */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(21, 42, 56, 0.2); /* ظل الهوية الجديد */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.s-block--features__item:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 20px rgba(21, 42, 56, 0.35);
}

.s-block--features__item .feature-icon i {
  font-size: 2rem;
  color: #152a38; /* لون الأيقونة الجديد */
  transition: transform 0.4s ease;
}

/* النصوص */
.s-block--features__item h2 {
  position: relative;
  z-index: 2;
  color: #152a38; /* لون الهوية الجديد */
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.s-block--features__item p {
  position: relative;
  z-index: 2;
  color: #152a38; /* لون الهوية الجديد */
  margin-top: 6px;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.banner-entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0.1) 100%
  );
  transform: skewX(-25deg);
}

/* حركة اللمعة عند الهوفر */
.banner-entry:hover::after {
  left: 150%;
  transition: left 1s ease;
}
/* ======= صندوق التقييمات (Testimonials) ======= */
.s-reviews-testimonial {
  position: relative;
  background: #152a38; /* لون الهوية */
  border-radius: 16px;
  padding: 20px 25px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: pointer;
  margin: 15px 0;
  color: #fff;
  box-shadow: 0 6px 15px rgba(21, 42, 56, 0.3);
}

/* خلفية متدرجة متحركة خفيفة */
.s-reviews-testimonial::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #152a38, #2a4452, #1f3746, #152a38);
  background-size: 400% 400%;
  border-radius: 16px;
  opacity: 0.15;
  z-index: 0;
  animation: testimonialGradient 8s ease infinite;
}

/* حركة الـ Gradient */
@keyframes testimonialGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* هوفر الصندوق */
.s-reviews-testimonial:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(21, 42, 56, 0.45);
  background: linear-gradient(135deg, #152a38, #2a4452, #152a38, #2a4452);
}

/* محتوى داخلي */
.s-reviews-testimonial__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* صورة الأفاتار */
.s-reviews-testimonial__avatar {
  flex-shrink: 0;
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(21, 42, 56, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.s-reviews-testimonial:hover .s-reviews-testimonial__avatar {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(21, 42, 56, 0.45);
}

.s-reviews-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* نص التقييم */
.s-reviews-testimonial__text {
  flex: 1;
}

.s-reviews-testimonial__text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
}

.s-reviews-testimonial__text p::before {
  content: '“';
  position: absolute;
  left: -15px;
  top: -5px;
  font-size: 2rem;
  color: #ffd700; /* لون ذهب خفيف للتمييز */
}

/* اسم المراجع */
.s-reviews-testimonial__name_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.s-reviews-testimonial__info h2 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffd700; /* لون اسم المراجع */
}

/* نجوم التقييم */
.s-reviews-testimonial__rating svg path {
  fill: #ffd700; /* نجوم ذهبية */
  transition: transform 0.3s ease;
}

.s-reviews-testimonial:hover .s-reviews-testimonial__rating svg {
  transform: scale(1.1);
}

/* أيقونة الاقتباس */
.s-reviews-testimonial__icon {
  position: absolute;
  top: 15px; right: 15px;
  width: 32px; height: 32px;
  opacity: 0.15;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.s-reviews-testimonial:hover .s-reviews-testimonial__icon {
  opacity: 0.3;
  transform: scale(1.2) rotate(10deg);
}

.s-reviews-testimonial__icon svg path {
  fill: #ffd700;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .s-reviews-testimonial__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .s-reviews-testimonial__avatar {
    margin-bottom: 10px;
  }

  .s-reviews-testimonial__name_wrapper {
    justify-content: center;
  }
.main-nav-container.fixed-pinned .navbar-brand img {
    max-height: 69px;
}
}
/* ====== إضافة انيميشن للتنقل بين الآراء ====== */
.s-reviews-testimonial {
  position: relative;
  background: #152a38;
  border-radius: 16px;
  padding: 20px 25px;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease, opacity 0.6s ease;
  cursor: pointer;
  margin: 15px 0;
  color: #fff;
  box-shadow: 0 6px 15px rgba(21, 42, 56, 0.3);

  /* إعداد الحركة عند التغيير بين التقييمات */
  opacity: 0;
  transform: translateX(30px); /* البداية خارج الشاشة قليلًا */
  animation: testimonialFadeIn 0.8s forwards;
}

/* keyframes لتأثير Fade + Slide */
@keyframes testimonialFadeIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* عند التغيير بين التقييمات التالية */
.s-reviews-testimonial.fade-out {
  opacity: 0;
  transform: translateX(-30px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.store-footer__inner {
    background-color: #162C3A;
}
.store-footer {
    background-color: #162C3A;
}


ظبط الوان التيكست في القائمه الجانبيه علي الموبايل 
.mm-spn a {
    color: #000000;
}
 .mm-spn.mm-spn--light {
        color: #000 !important;
    }
.bg-inherit {
    background-color: #162C3A;
}
.sub-menu.w-56 {
    color: #162C3A;
}
/* تغيير لون النص للعناصر الأساسية عند الهوفر */
.main-menu > li.root-level > a:hover span {
    color: #ffffff !important;
}
.main-menu>.has-children:hover>a {
    color: #ffffff;
}

.top-navbar .s-search-input {
    background-color: #162C3A !important;
    border-style: none;
}
i.sicon-menu.text-primary.text-2xl {
    color: white;
}

li#\31 808892800 {
    color: white;
}
li#\39 81070627 {
    color: white;
}
/* ======= أيقونات الهيدر والسلة بالهوية الجديدة ======= */
.header-btn__icon,
.s-cart-summary-icon,
.s-cart-summary-total {
  background: linear-gradient(90deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

/* السعر فوق السلة بالجراديانت */
.s-cart-summary-total {
  background: linear-gradient(#fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* رقم السلة داخل دائرة */
.s-cart-summary-count {
  background-color: #2a4452; /* لون داكن من الهوية الجديد */
  color: #fff; /* نص أبيض ليتباين مع الخلفية */
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

/* تأثير hover على أيقونات السلة والبروفايل */
.s-cart-summary-wrapper:hover i.header-btn__icon,
.s-cart-summary-wrapper:hover i.sicon-shopping-bag,
.header-btn:hover i.header-btn__icon {
  transform: scale(1.1) rotate(-5deg) translate(3px, -3px);
  transition: transform 0.3s ease, color 0.3s ease;
  color: #152a38; /* لون الهوية الجديد */
}

/* العودة للوضع الطبيعي للأيقونات */
.s-cart-summary-wrapper i.header-btn__icon,
.s-cart-summary-wrapper i.sicon-shopping-bag,
.header-btn i.header-btn__icon {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #152a38;
}

/* ======= وضع السلة في المنتصف ======= */
.pt-5.flex.flex-col.items-start.lg\:flex-row.pb-6.lg\:pb-20 {
    justify-content: center; /* الآن السلة في المنتصف */
    align-items: center; /* لضبط المحاذاة عموديًا */
}

@media(max-width:767px){
#photos-0-slider > div.swiper.s-slider-container.swiper-initialized.swiper-horizontal.swiper-rtl.swiper-ios.swiper-backface-hidden{
   padding:0;
}
.s-products-slider-card {
    max-width: 185px;

}
.main-nav-container {
    min-height: 56px;
}
  .s-button-element:not(:disabled):not([loading]) {
    font-size: 11px;

}

}
/* تخلي البانرات جنب بعض في الموبايل */
@media (max-width: 767px) {
  .grid.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
.banner-entry {
    height: 106px;
}
li#\31 808892800 {
    color: black;
}
li#\39 81070627 {
    color: black;;
}
}