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

/* الكونتينر داخل البانر ياخد كامل العرض */
.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;
}
section.s-block.s-block--fixed-banner.wide-placeholder:nth-of-type(7) > .container {
  margin-top: 0;
  max-width: 50%;
}
/* فقط لأجهزة الديسكتوب */
@media (min-width: 1024px) {
    .banner-entry {
        height: 351px;
    }
}
/* ================== زر أساسي مع Gradient ================== */
.s-button-element.s-button-primary-outline {
  background: linear-gradient(135deg, #D5A74D, #D5A74D, #D5A74D, #D5A74D);
  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%; }
}

/* Hover - Gradient + Shadow */
.s-button-element.s-button-primary-outline:hover {
  background: linear-gradient(45deg, #D5A74D, #D5A74D, #D5A74D, #D5A74D);
  background-size: 300% 300%;
  animation: gradientHoverGoldDark 6s ease infinite;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(213, 167, 77, 0.7), 0 0 35px rgba(213, 167, 77, 0.8);
  color: #fff !important;
}

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

/* Active */
.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, #D5A74D, #D5A74D);
  color: #fff !important;
  box-shadow: 0 0 20px rgba(213, 167, 77, 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(213, 167, 77, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(213, 167, 77, 0.9); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(213, 167, 77, 0.7); }
}
/* صندوق المميزات – تصميم متقدم */
.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 #D5A74D; /* لون الهوية الجديد */
}

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

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

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

.s-block--features__item p {
  position: relative;
  z-index: 2;
  color: #D5A74D; /* لون النص الجديد */
  margin-top: 6px;
  font-size: 18px;
  transition: color 0.3s ease;
}
/* توزيع الجريد في الموبايل */
@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%;                 /* عرض أصغر شوي */
  }
/* صندوق المميزات – تصميم متقدم */
.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 #D5A74D; /* لون الهوية الجديد */
}

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

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

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

.s-block--features__item p {
  position: relative;
  z-index: 2;
  color: #D5A74D; /* لون النص الجديد */
  margin-top: 6px;
  font-size: 12px;
  transition: color 0.3s ease;
}
}
@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: 0;
  max-width: 100%;
}
}