body#app {
  background-color: white;
}
.banner--fixed img {
  background-color: rgb(255 255 255 / 0%);
}
.lazy__bg.lazy.bg-no-repeat.entered.loaded {
    background-color: white;
}
.banner-entry {
    height: 240px;
}
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%;
}
#main-content > section:nth-child(2) {
    margin-top: 0px;
}
.s-block__title {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
section.s-block.s-block--bundle-text-content {
    background-color: #FDF4F9;
}
#main-content > section:nth-child(8) {
    background-color: #FDF4F9;
  margin-top: 0px;
}
#main-content > section:nth-child(9) {
    background-color: #FDF4F9;
  margin-top: 0px;
}
#main-content > section:nth-child(10) {
    background-color: #FDF4F9;
  margin-top: 0px;
}
#main-content > section:nth-child(11) {
    background-color: #FDF4F9;
  margin-top: 0px;
}
#main-content > section:nth-child(12) {
    background-color: #FDF4F9;
  margin-top: 0px;
}
.store-footer {
  background-image: url('https://i.postimg.cc/j2D6TJn0/Group-1261154908-(1).png');  /* ضع هنا رابط الصورة */
  background-size: cover;      /* لجعل الصورة تغطي كامل الفوتر دون أن تتأكل أو تتقص */
  background-position: center; /* توسيط الصورة */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  padding: 50px 0;             /* إضافة بعض الهوامش للفوتر */
}
.store-footer__inner {
    background-color: rgb(29 31 31 / 0%);
}
#main-content > section:nth-child(3) {
    background-color: #ffffff;
}
/* توزيع الجريد في الموبايل */
@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: 50%;                 /* عرض أصغر شوي */
  }
.banner-entry {
    height: 107px;
}
}
.s-product-card-entry {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f1f1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* صورة المنتج */
.s-product-card-image img {
  transition: transform 0.6s ease;
}

/* العنوان */
.s-product-card-content-title a {
  display: block;
  font-size: 16px;
  color: #952A53;
  transition: color 0.3s ease;
}

/* السعر */
.s-product-card-price {
  color: #000;
  font-size: 21px;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* زر الإضافة */
.s-product-card-content-footer .s-button-element {
  border-radius: 14px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ===== Hover ===== */
.s-product-card-entry:hover {
  transform: translateY(-8px);
  border-color: #952A53;
  box-shadow: 0 18px 45px rgba(149, 42, 83, 0.25);
}

/* تكبير الصورة */
.s-product-card-entry:hover .s-product-card-image img {
  transform: scale(1.08);
}

/* تغيير لون العنوان */
.s-product-card-entry:hover
.s-product-card-content-title a {
  color: #952A53;
}

/* السعر */
.s-product-card-entry:hover
.s-product-card-price {
  color: #952A53;
}

/* زر الإضافة */
.s-product-card-entry:hover
.s-product-card-content-footer .s-button-element:not(.s-button-disabled) {
  background-color: #952A53;
  border-color: #952A53;
  color: #fff;
}

/* ===== الأساس ===== */
.s-button-primary-outline.s-button-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(
    120deg,
    #952A53,
    #c24474,
    #952A53
  );
  background-size: 300% 300%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(149, 42, 83, 0.35);
  animation:
    gradientFlow 6s ease infinite,
    breatheGlow 3.5s ease-in-out infinite;
  transition: transform .4s ease, box-shadow .4s ease;
}

/* ===== shimmer layer ===== */
.s-button-primary-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  animation: shimmerMove 4.5s infinite;
}

/* ===== الأيقونة ===== */
.s-button-primary-outline .sicon-shopping-bag {
  margin-left: 6px;
  animation: iconFloat 2.8s ease-in-out infinite;
}

/* ===== Hover Cinematic ===== */
.s-button-primary-outline:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 25px 60px rgba(149, 42, 83, 0.6);
}

/* تسريع اللمعة */
.s-button-primary-outline:hover::before {
  animation-duration: 1.5s;
}

/* الأيقونة تتحرك بقوة */
.s-button-primary-outline:hover .sicon-shopping-bag {
  animation: iconJump .6s ease;
}

/* ===== Click ===== */
.s-button-primary-outline:active {
  transform: scale(.95);
}

/* ===== Animations ===== */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes breatheGlow {
  0% {
    box-shadow: 0 10px 25px rgba(149,42,83,.35);
  }
  50% {
    box-shadow: 0 18px 45px rgba(149,42,83,.6);
  }
  100% {
    box-shadow: 0 10px 25px rgba(149,42,83,.35);
  }
}

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

@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes iconJump {
  0% { transform: translateX(0); }
  50% { transform: translateX(-6px) rotate(-10deg); }
  100% { transform: translateX(0); }
}

/* ===== المحتوى ===== */
.s-product-card-content {
  display: flex;
  place-content: center;
  align-items: center;
}

.s-product-card-content-sub {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  #main-content > section:nth-child(8) > div > a > picture > img {
    position: relative;
    left: 17%;
  }
#main-content > section:nth-child(10) > div > a > picture > img {
    position: relative;
    left: 15%;
}
#main-content > section:nth-child(12) > div > a > picture > img {
    position: relative;
    left: 12%;
}
}

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;
}