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

/* البانر الأول ياخد ارتفاع كامل */
section.s-block.s-block--fixed-banner.wide-placeholder:first-of-type {
  margin-top: 0;
  height: 100%;
  overflow: hidden;
}
.banner-entry {
    height: 300px;
}
.md\:grid-cols-3 {
    gap: 0px;
}
.s-product-card-entry {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid #f1f1f1;
}

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

/* العنوان */
.s-product-card-content-title a {
  transition: color 0.3s ease;
}

/* السعر */
.s-product-card-price {
  color: #111;
  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;
}

/* ===== الهوفر ===== */
.s-product-card-entry:hover {
  transform: translateY(-8px);
  border-color: #56A7D6;
  box-shadow: 0 18px 45px rgba(86, 167, 214, 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: #56A7D6;
}

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

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

/* ===== الأساس ===== */
.s-button-primary-outline.s-button-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(
    120deg,
    #56A7D6,
    #7EC3E8,
    #56A7D6
  );
  background-size: 300% 300%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(86, 167, 214, 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(86, 167, 214, 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);
}

@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(86,167,214,.35);
  }
  50% {
    box-shadow: 0 18px 45px rgba(86,167,214,.6);
  }
  100% {
    box-shadow: 0 10px 25px rgba(86,167,214,.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-title a {
    display: block;
    font-size: 16px;
    color: #56A7D6;
}

.s-product-card-content-sub {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-product-card-price {
    color: #000000;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 21px;
}
/* 🎯 ضبط مكان العنوان */
.s-block__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

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

/* 💫 حركة اللمعة */
@keyframes shineTitle {
  0% { left: -75%; }
  100% { left: 125%; }
}
/* 🎯 ضبط مكان العنوان */
.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: #56A7D6;
  border: 2px solid #56A7D6;
  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(86, 167, 214, 0) 0%,
    rgba(86, 167, 214, 0.6) 50%,
    rgba(86, 167, 214, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shineTitle 3s infinite ease-in-out;
}

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

/* 💫 حركة اللمعة */
@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 {
    display: none;
}
button.s-slider-prev.s-slider-nav-arrow.swiper-button-disabled {
    display: none;
}
button.s-slider-prev.s-slider-nav-arrow {
    display: none;
}

/* 📱 موبايل */
@media (max-width: 767px) {

  /* العنوان العام */
  .s-block__title .right-side h2,
  .s-slider-block__title-right h2 {
    font-size: 1.3rem;        /* أصغر */
    padding: 6px 16px;        /* تقليل البوكس */
    border-radius: 10px;
    letter-spacing: 0.5px;
  }

  /* تقليل حجم اللمعة */
  .s-block__title .right-side h2::after,
  .s-slider-block__title-right h2::after {
    width: 40%;
    animation-duration: 2.5s; /* أسرع شوية */
  }

  /* تقليل المسافات حوالين العنوان */
  .s-block__title,
  .s-slider-block__title {
    margin-bottom: 10px;
  }

  /* لو في مسافات داخلية زيادة */
  .s-slider-block__title-right {
    padding: 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 #56A7D6;
}

/* ✨ الخط العلوي الداخلي */
.s-block--features__item::after {
  content: "";
  position: absolute;
  top: 0; /* لازق في البوردر من جوه */
  left: 0;
  width: 100%;
  height: 4px;
  background: #56A7D6;
  z-index: 2;
}

/* طبقة خلفية متحركة داخل الصندوق */
.s-block--features__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #56A7D6, #7EC3E8, #56A7D6, #7EC3E8);
  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(86, 167, 214, 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(86, 167, 214, 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(86, 167, 214, 0.35);
}

.s-block--features__item .feature-icon i {
  font-size: 2rem;
  color: #56A7D6;
  transition: transform 0.4s ease;
}

/* النصوص */
.s-block--features__item h2 {
  position: relative;
  z-index: 2;
  color: #56A7D6;
  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: #56A7D6;
  margin-top: 6px;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.store-footer__inner {
  background-color: white !important;
}

.store-footer {
  background-color: white;
}
/* ===== حركة الأيقونات ===== */
.s-cart-summary-wrapper:hover .s-cart-summary-icon {
  transform: rotate(-10deg);
  transition: transform 0.3s ease, color 0.35s ease;
}

.s-cart-summary-wrapper:hover .header-btn__icon.icon {
  transform: rotate(10deg);
  transition: transform 0.3s ease, color 0.35s ease;
}

/* أيقونات الهيدر */
.header-btn__icon,
.s-cart-summary-icon,
.sicon-shopping-bag {
  transition: all 0.3s ease-in-out;
}

/* الهوفر */
.header-btn:hover .header-btn__icon,
.s-cart-summary-wrapper:hover .s-cart-summary-icon,
.s-cart-summary-wrapper:hover .sicon-shopping-bag {
  color: #56A7D6;
  transform: scale(1.2);
}

/* ===== جراديانت الأيقونات ===== */
.header-btn__icon,
.s-cart-summary-icon,
.s-cart-summary-total {
  background: linear-gradient(90deg, #56A7D6, #7EC3E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* السعر فوق السلة */
.s-cart-summary-total {
  background: linear-gradient(#3E8FBE, #56A7D6, #7EC3E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* رقم السلة */
.s-cart-summary-count {
  background-color: #D6ECF7;
  color: #56A7D6;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
}

/* تأثير 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: #56A7D6;
}

/* الوضع الطبيعي */
.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: #56A7D6;
}

/* ===== توسيط صفحة السلة ===== */
.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) {
  .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%;                 /* عرض أصغر شوي */
  }
.banner-entry {
    height: 150px;
}
}
@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;

}

}