.custom-cta {
  background: linear-gradient(90deg, #3a6b86, #2c4f63);
  padding: 40px 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-text {
  color: #fff;
  max-width: 600px;
}

.cta-text h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.cta-text p {
  font-size: 14px;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn.primary {
  background: #ffffff;
  color: #2c4f63;
}

.btn.primary:hover {
  background: #f1f1f1;
}

.btn.secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #2c4f63;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }
}




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;
}
/* --------------------------------- 2. أول بانر (الهيرو) --------------------------------- */
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;
}
@media (min-width: 1024px) {
    #main-content > section:nth-child(4) > div > a:nth-child(1) {
        height: 504px;
    }
#main-content > section:nth-child(4) > div > a:nth-child(2) {
    height: 504px;
}
#main-content > section:nth-child(4) > div > a:nth-child(3) {
    height: 504px;
}
#main-content > section:nth-child(10) > div > a:nth-child(1) {
    height: 330px;
}
#main-content > section:nth-child(10) > div > a:nth-child(2) {
    height: 330px;
}
}

#main-content > section:nth-child(6) > div {
    grid-template-columns: repeat(6,minmax(0,1fr));
}
.two-row .banner-entry:first-child {
    grid-column: span 1 / span 1; /* امتداد عمود واحد */
    grid-row: span 1 / span 2;    /* امتداد صفين */
}
.lazy__bg.lazy.bg-no-repeat.entered.loaded {
    background-size: contain !important;
}
/* ===== البوكس الأساسي ===== */
.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;
  color: #6F9DBB; /* لون الهوية الجديد */
}

/* السعر */
.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: #6F9DBB; /* تغيير لون الحدود عند الهوفر */
  box-shadow: 0 18px 45px rgba(111, 157, 187, 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: #6F9DBB;
}

/* السعر عند الهوفر */
.s-product-card-entry:hover 
.s-product-card-price {
  color: #6F9DBB;
}

/* زر الإضافة عند الهوفر */
.s-product-card-entry:hover 
.s-product-card-content-footer .s-button-element:not(.s-button-disabled) {
  background-color: #6F9DBB;
  border-color: #6F9DBB;
  color: #fff;
}

/* ===== زر primary outline ===== */
.s-button-primary-outline.s-button-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(
    120deg,
    #6F9DBB,
    #88B0D9,
    #6F9DBB
  );
  background-size: 300% 300%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(111, 157, 187, 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(111, 157, 187, 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 ===== */
@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(111,157,187,.35);
  }
  50% {
    box-shadow: 0 18px 45px rgba(111,157,187,.6);
  }
  100% {
    box-shadow: 0 10px 25px rgba(111,157,187,.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: #6F9DBB; /* اللون الجديد */
}

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

.s-product-card-price {
    color: #000000;
    font-weight: 700;
    font-size: 21px;
    transition: color 0.3s ease;
}
.store-footer__inner {
  background-color: #030712 !important;
}

.store-footer {
  background-color: #030712;
}
section.custom-cta {
    margin-bottom: -65px;
}
@media (max-width: 767px) {
    .s-block-trust-store-features__subtitle {
        font-size: 10px;
    }
#main-content > section:nth-child(4) > div > a:nth-child(1) {
        height: 465px;
    }
#main-content > section:nth-child(4) > div > a:nth-child(2) {
    height: 465px;
}
#main-content > section:nth-child(4) > div > a:nth-child(3) {
    height: 465px;
}
#main-content > section:nth-child(10) > div > a:nth-child(1) {
    height: 203px;
}
#main-content > section:nth-child(10) > div > a:nth-child(2) {
    height: 203px;
}
#main-content > section:nth-child(6) > div {
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.cta-text h2 {
    font-size: 13px;
}
.cta-text p {
    font-size: 11px;
}

}

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

}

}