/* =========================
   Global Backgrounds
========================= */
body#app {
  background-color: #fff;
}

.banner--fixed img {
  background-color: rgb(255 255 255);
}

.lazy__bg.lazy.bg-no-repeat.entered.loaded {
  background-color: #fff;
}



/* =========================
   Product Card
========================= */
.s-product-card-entry {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(122, 23, 7, 0.15);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease;
}

.s-product-card-entry:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: #7A1707;
  box-shadow: 0 22px 55px rgba(122, 23, 7, 0.28);
}

.s-product-card-image img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.s-product-card-entry:hover .s-product-card-image img {
  transform: scale(1.1);
}

.s-product-card-content-title a {
  display: block;
  font-size: 16px;
  color: #7A1707;
  transition: color 0.3s ease;
}

.s-product-card-entry:hover .s-product-card-content-title a {
  color: #5c0f05;
}

.s-product-card-price {
  color: #111;
  font-size: 21px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.s-product-card-entry:hover .s-product-card-price {
  color: #7A1707;
}

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

/* =========================
   Buttons
========================= */
.s-product-card-content-footer .s-button-element {
  border-radius: 16px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.s-product-card-entry:hover
.s-product-card-content-footer
.s-button-element:not(.s-button-disabled) {
  background-color: #7A1707;
  border-color: #7A1707;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(122, 23, 7, 0.4);
}

/* =========================
   Primary Outline Button
========================= */
.s-button-primary-outline.s-button-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(120deg, #7A1707, #7A1707, #7A1707);
  background-size: 250% 250%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 14px 35px rgba(122, 23, 7, 0.4);
  animation: gradientFlow 7s ease infinite, softGlow 4s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.s-button-primary-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  animation: shimmerMove 5s infinite;
}

.s-button-primary-outline:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 30px 70px rgba(122, 23, 7, 0.65);
}

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

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

@keyframes softGlow {
  0%, 100% {
    box-shadow: 0 14px 35px rgba(122, 23, 7, 0.35);
  }
  50% {
    box-shadow: 0 22px 55px rgba(122, 23, 7, 0.6);
  }
}

@keyframes shimmerMove {
  0% { left: -140%; }
  100% { left: 140%; }
}
/* صندوق المميزات – تصميم متقدم */
.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 #7A1707;
}

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

.s-block--features__item .feature-icon i {
  font-size: 2rem;
  color: #7A1707; /* لون الأيقونة المختلف عن الخلفية */
  transition: transform 0.4s ease;
}

/* النصوص */
.s-block--features__item h2 {
  position: relative;
  z-index: 2;
  color: #7A1707;
  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: #7A1707;
  margin-top: 6px;
  font-size: 1rem;
  transition: color 0.3s ease;
}
/* 🎨 عنوان السلايدر مع لون الهوية فقط */
.s-slider-block__title-right h2 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* لون الهوية مع تدرج خفيف */
  background: linear-gradient(90deg, #7A1707, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* تنسيق بسيط بدون شادو أو حركة */
  margin: 0;
  padding: 0;
}

/* =========================
   Footer
========================= */
.store-footer,
.store-footer__inner {
  background-color: #7A1707;
}

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;
}
.banner-entry {
    height: 410px;
}
#main-content > section:nth-child(7) > div > a:nth-child(1) {
    height: 605px;
}
#main-content > section:nth-child(7) > div > a:nth-child(2) {
    height: 605px;
}
/* فقط لأجهزة الموبايل */
@media (max-width: 767px) {
    .banner-entry {
        height: 245px;
    }

    #main-content > section:nth-child(7) > div > a:nth-child(1) {
        height: 355px;
    }

    #main-content > section:nth-child(7) > div > a:nth-child(2) {
        height: 355px;
    }
}

---------------------
/* خلي الكونتينر داخل سلايدر الصور ياخد كامل العرض */
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;
}
=======
@media (min-width: 1024px) {
    salla-slider.photos-slider .swiper-slide {
        margin-left: 8rem;
        margin-right: 8rem;
        width: 0%;
    }
    salla-slider.photos-slider .swiper:where([dir=rtl],[dir=rtl] *) {
        padding-left: 0;
    }
}
salla-slider.photos-slider .swiper:where([dir=rtl],[dir=rtl] *) {
    padding-left: 0;
}
.rounded-md {
    border-radius: 0rem;
}
}
@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;

}

}