body#app {
  background-color: #F2EAE5;
}
.banner--fixed img {
  background-color: #F2EAE5;
}
.lazy__bg.lazy.bg-no-repeat.entered.loaded {
    background-color: #F2EAE5;
}
@media (min-width: 1024px) {
  .banner-entry {
    height: 500px;
  }
}
/* هوفر احترافي لعناصر الجريد */
@media (min-width: 1024px) {
  .banner-entry {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .banner-entry .lazy__bg {
    transition: transform 0.45s ease;
  }

  .banner-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  }

  .banner-entry:hover .lazy__bg {
    transform: scale(1.07);
  }
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(7) > .container {
  margin-top: 30px;
  max-width: 50%;
}
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(8) > .container {
  margin-top: 30px;
  max-width: 50%;
}
}

/* 🔥 بوردر للكارد بلون الهوية الجديد */
.s-products-slider-card custom-salla-product-card,
custom-salla-product-card.s-product-card-entry {
  border: 2px solid #946547 !important;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s ease;
}

/* ✨ تأثير أثناء الهوفر */
.s-products-slider-card custom-salla-product-card:hover,
custom-salla-product-card.s-product-card-entry:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(148, 101, 71, 0.45);
  border-color: #946547;
}

/* ✨ تحسين بسيط للصورة مع الهوفر */
.s-products-slider-card custom-salla-product-card:hover img {
  transform: scale(1.04);
  transition: 0.4s ease-in-out;
}

/* 🎨 تنسيق زر إضافة للسلة بلون الهوية الجديد */
button[product-type="product"].s-button-element {
  background-color: #946547 !important;
  border: 2px solid #946547 !important;
  color: #fff !important;
  border-radius: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* ✨ كتابة النص أيقونة + نص بالأبيض */
button[product-type="product"].s-button-element .s-button-text,
button[product-type="product"].s-button-element .s-button-text span,
button[product-type="product"].s-button-element i {
  color: #fff !important;
}

/* ⚡ تأثير الهوفر */
button[product-type="product"].s-button-element:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(148, 101, 71, 0.55);
}

/* ✨ اللمعة المتحركة */
button[product-type="product"].s-button-element::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.5s;
}

/* ⚡ تحريك اللمعة عند الهوفر */
button[product-type="product"].s-button-element:hover::after {
  left: 130%;
}
.s-block__title .right-side:where([dir=rtl],[dir=rtl] *) {
  display: flex;
  justify-content: center; /* يوسّط أفقيًا */
  align-items: center;     /* يوسّط عموديًا (لو في ارتفاع) */
  width: 100%;             /* ياخد عرض كامل */
  text-align: center; 
}

.s-block__title .right-side:where([dir=rtl],[dir=rtl] *) h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #946547; /* لون الهيدر الجديد */
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 6px; /* مساحة للبوردر */
  border-bottom: 3px solid #946547; /* بوردر تحت العنوان */
  border-radius: 2px;
}
/* نخلي العنوان والأزرار جوه نفس الديف متوزعين */
/* 🎯 ضبط مكان العنوان */
.s-slider-block__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ✨ العنوان */
.s-slider-block__title-right h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #946547; /* لون الهوية */
  border: 2px solid #946547; /* بوردر بلون الهوية */
  border-radius: 12px;
  padding: 8px 24px;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ✨ لمعة متحركة تمر على الكلمة */
.s-slider-block__title-right h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(148, 101, 71, 0) 0%,
    rgba(148, 101, 71, 0.6) 50%,
    rgba(148, 101, 71, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shineTitle 3s infinite ease-in-out;
}

/* 💫 حركة اللمعة */
@keyframes shineTitle {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.s-slider-block__title-right:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0rem; 
}

/* إخفاء أزرار السلايدر */
button.s-slider-next.s-slider-nav-arrow,
button.s-slider-prev.s-slider-nav-arrow,
button.s-slider-prev.s-slider-nav-arrow.swiper-button-disabled {
    display: none;
}
@media (max-width: 767px) {
    .s-block--banners .grid.two-row {
        display: grid;                         
        grid-template-columns: repeat(2, 1fr); /* عمودين متساويين على الموبايل */
        gap: 1rem;                            
    }
}

section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(1) > .container {
  max-width: 100%;
padding:0;
}

section.s-block.s-block--fixed-banner.wide-placeholder {
    margin-top: 0;
}
.inner.bg-inherit.w-full {
    background-color: #F2EAE5;
}


/* توزيع الجريد في الموبايل */
@media (max-width: 767px) {
  .grid.one-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* صفين فوق */
    gap: 10px;
  }

  /* خلي العنصر الأخير في صف لوحده ويتوسّط */
  .grid.one-row .banner-entry:last-child {
    grid-column: 1 / -1;        /* يخليها تاخد عرض الجريد كله */
    justify-self: center;       /* توسيط العنصر */
    width: 70%;                 /* عرض أصغر شوي */
  }
}
@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;
}
}
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(7) > .container {
  margin-top: 30px;
}
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(8) > .container {
  margin-top: 30px;
}