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;
}
/* فقط لأجهزة الديسكتوب */
@media (min-width: 1024px) {
    #main-content > section:nth-child(4) > div > a:nth-child(1) {
        height: 380px;
    }
#main-content > section:nth-child(4) > div > a:nth-child(2) {
    height: 380px;
}
  .md\:grid-cols-3 {
    grid-template-columns: repeat(4,minmax(0,1fr));
}
  .two-row .banner-entry:first-child {
    grid-column: span 1 / span 1; /* امتداد عمود واحد */
    grid-row: span 1 / span 2;    /* امتداد صفين */
}
.banner-entry {
    height: 413px;

}
  .navbar-brand img {
    max-height: 4rem;
}
#main-content > section:nth-child(3) > div.grid.one-row.md\:grid-cols-2.grid-flow-row.gap-3.sm\:gap-8 > a:nth-child(1) {
    height: 190px;
}

#main-content > section:nth-child(3) > div.grid.one-row.md\:grid-cols-2.grid-flow-row.gap-3.sm\:gap-8 > a:nth-child(2){
height: 190px;  
}
}
.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: #d62a58;
  box-shadow: 0 18px 45px rgba(214, 42, 88, 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: #d62a58;
}

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

/* زر الإضافة */
.s-product-card-entry:hover 
.s-product-card-content-footer .s-button-element:not(.s-button-disabled) {
  background-color: #d62a58;
  border-color: #d62a58;
  color: #fff;
}
/* ===== الأساس ===== */
.s-button-primary-outline.s-button-btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: none;
  background: linear-gradient(
    120deg,
    #d62a58,
    #ff5f8f,
    #d62a58
  );
  background-size: 300% 300%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(214, 42, 88, 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(214, 42, 88, 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(214,42,88,.35);
  }
  50% {
    box-shadow: 0 18px 45px rgba(214,42,88,.6);
  }
  100% {
    box-shadow: 0 10px 25px rgba(214,42,88,.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: #EA4473;
}
.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;
}
@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;

}
.grid.one-row.md\:grid-cols-2.grid-flow-row.gap-3.sm\:gap-8 {
    grid-template-columns: repeat(2,minmax(0,1fr));
}
  .grid.md\:grid-cols-3.two-row.grid-flow-row.gap-3.sm\:gap-8 {
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.banner-entry {
    height: 255px;
}
#main-content > section:nth-child(4) > div > a:nth-child(1) {
        height: 230px;
    }
#main-content > section:nth-child(4) > div > a:nth-child(2) {
    height: 230px;
}
#main-content > section:nth-child(3) > div.grid.one-row.md\:grid-cols-2.grid-flow-row.gap-3.sm\:gap-8 > a:nth-child(1) {
    height: 130px;
}

#main-content > section:nth-child(3) > div.grid.one-row.md\:grid-cols-2.grid-flow-row.gap-3.sm\:gap-8 > a:nth-child(2){
height: 130px;  
}
}
.store-footer__inner {
    background-color: #E78DA9;
}
.store-footer {
    background-color: #E78DA9;
}