@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "Cairo", "Poppins", "Ibarra Real Nova", sans-serif;
}
body#app {
  background-color: white;
}
.banner--fixed img {
  background-color: rgb(255 255 255);
}
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;
}
.footer-is-light .store-footer .store-footer__inner {
  background-image: url("https://i.postimg.cc/7ZRvMgKF/Frame-7.png");
  background-size: cover;        /* تغطي الفوتر بالكامل */
  background-repeat: no-repeat;  /* تمنع التكرار */
height: 50vh;
color : white;
}
/* ========================= */
/* ✨ ستايل هوفر كارت المنتج ✨ */
/* ========================= */
.s-product-card-entry {
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
}

/* تأثير الهوفر على الكارت */
.s-product-card-entry:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(125, 60, 152, 0.25); /* بنفسجي ناعم */
  border: 1px solid rgba(125, 60, 152, 0.2);
}

/* الصورة تتحرك شوي */
.s-product-card-entry:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* ========================= */
/* 💜 الزرار (إضافة للسلة) 💜 */
/* ========================= */
.s-button-element.s-button-primary-outline {
  border: 2px solid #7D3C98;
  color: #7D3C98;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}

/* تأثير الهوفر على الزرار */
.s-button-element.s-button-primary-outline:hover {
  background-color: #7D3C98;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(125, 60, 152, 0.3);
}

/* أنيميشن بسيطة عند الظهور */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.s-product-card-entry {
  animation: fadeUp 0.6s ease forwards;
}

/* ============================== */
/* 🎯 تأثير هوفر على أيقونات الهيدر */
/* ============================== */

/* الأيقونات (المستخدم والسلة) */
.header-btn i,
.s-cart-summary-wrapper i {
  transition: all 0.3s ease;
  color: #333; /* اللون الافتراضي */
}

/* هوفر أنيق بنفس لون الهوية */
.header-btn:hover i,
.s-cart-summary-wrapper:hover i {
  color: #7D3C98;
  transform: scale(1.1);
}

/* ============================== */
/* 💜 تخصيص لون فقاعة عداد السلة */
/* ============================== */
.s-cart-summary-count {
  background-color: #7D3C98 !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 12px;
  top: -6px;
  right: -6px;
  position: absolute;
  transition: transform 0.3s ease;
}

/* حركة خفيفة عند الهوفر */
.s-cart-summary-wrapper:hover .s-cart-summary-count {
  transform: scale(1.2);
}
/* ============================== */
/* 🎇 تنسيق عنوان "أحدث المنتجات" */
/* ============================== */
.s-slider-block__title-right {
  text-align: center !important; /* توسيط العنوان */
  width: 100%;
  margin: 40px 0 20px 0; /* مسافات مناسبة فوق وتحت */
}

.s-slider-block__title-right h2 {
  font-size: 1.5rem; /* تكبير الخط */
  font-weight: bold;
  text-transform: none;
  background: linear-gradient(90deg, #7D3C98, #b98ad6, #7D3C98);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: purpleShine 4s linear infinite;
}

/* ✨ أنيميشن اللمعة الراحية الجاية */
@keyframes purpleShine {
  0% { background-position: 300% center; }
  100% { background-position: -300% center; }
}
@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;
}
}