/* ===========================
   تنسيق عام بخلفية بيضاء ونصوص سوداء
   =========================== */
body.index {
  background-color: #fff;
  color: #000;
  font-family: 'Cairo', sans-serif;
  transition: all 0.5s ease-in-out;
}

/* ===========================
   شاشة البداية (الشعار المتحرك)
   =========================== */
#intro-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

#intro-logo img {
  width: 160px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===========================
   الهيدر
   =========================== */
.top-navbar {
  background-color: #fff !important;
  border-bottom: 1px solid #eee;
  display: none !important;
  justify-content: center;
  align-items: end;
  gap: 25px;
  transition: all 0.3s ease;
}
.top-navbar a {
  color: #000 !important;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-navbar a:hover {
  color: #555 !important;
}

/* ===========================
   السلايدر
   =========================== */
section:first-of-type {
  margin-top: 0;
}
salla-slider.photos-slider .swiper-slide {
  display:none ;
}

/* 🔒 إخفاء أزرار التنقل في السلايدر بجميع المقاسات */
.carousel-slider .s-slider-block__title-nav,
.carousel-slider .swiper-button-next,
.carousel-slider .swiper-button-prev,
.carousel-slider .swiper-pagination {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===========================
   البنرات
   =========================== */
a.banner-entry {
  height: 540px;
  background-color: transparent;
}
a.banner-entry div {
  background-size: contain;
  background-repeat: no-repeat;
}

/* للشاشات الصغيرة */
@media (max-width: 767px) {
  a.banner-entry {
    height: 160px;
  }
}


/* ===========================
   المنتجات
   =========================== */
.s-product-card-content {
  background-color: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.s-product-card-content:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.s-product-card-content-title a,
h4.s-product-card-price {
  color: #000;
}
.s-product-card-content-title a:hover {
  color: #777;
}

.s-button-primary-outline {
  background-color: #000;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}
.s-button-primary-outline:hover {
  background-color: #333;
}

/* ===========================
   الفوتر
   =========================== */
.footer-is-light .store-footer .store-footer__inner,
.footer-is-light .store-footer {
  background-color: #fff;
  color: #000;
  border: none;
}
.footer-is-light .store-footer a {
  color: #000;
}
.footer-is-light .store-footer a:hover {
  color: #999;
}

/* ===========================
   تكبير الشعار في الهيدر
   =========================== */
/* ===== تكبير الشعار في الهيدر ===== */
/* ===== الحاوية ===== */
.navbar-brand {
  height: auto !important;
  max-height: none !important;
  display: flex !important;
  align-items: center;
}

/* ===== الشعار ===== */
.navbar-brand img {
  width: auto !important;       /* السماح للعرض الطبيعي */
  height: 120px !important;     /* الحجم الكبير الفعلي */
  max-width: none !important;   /* إزالة أي قيود على العرض */
  object-fit: contain !important; /* الحفاظ على نسبة الشعار */
  transition: transform 0.3s ease;
}

/* ===== media query لتجنب القيود على الشاشات الصغيرة ===== */
@media (min-width: 480px) {
  .navbar-brand img {
    height: 120px !important;
    max-width: none !important;
  }
}

/* ===== تأثير Hover ===== */
.navbar-brand img:hover {
  transform: scale(1.1);
}

/* ===========================
   الشريط العلوي (الأزرار مثل البحث + السياسات)
   =========================== */
.top-navbar {
 display: none;
}

.top-navbar ul,
.top-navbar .nav {
  display: flex;
  align-items: center;
  justify-content: center; /* توسيط الأزرار */
  gap: 25px;
}

.top-navbar a {
  color: #000 !important;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-navbar a:hover {
  color: #555 !important;
  text-decoration: underline;
}

/* ===========================
   تحسين شكل زر البحث
   =========================== */
.top-navbar .search-icon,
.s-search__toggle {
  display: none;
  }

.top-navbar .search-icon:hover,
.s-search__toggle:hover {
   display: none;
}

/* ===========================
   للشاشات الصغيرة (تجاوب الهاتف)
   =========================== */
@media (max-width: 767px) {
  .header-logo img {
    max-height: 65px !important;
  }

  .top-navbar ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .top-navbar a {
    font-size: 14px;
  }
}

/* ===== حركة ظهور العناصر ===== */
.s-product-card,
.banner-entry,
section.s-block,
footer,
header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease-in-out;
}

.show-element {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.navbar-brand img {
  width: auto !important;
  height: 120px !important;
  max-width: none !important;
  object-fit: contain !important;
}