/* ==================================================
   إعدادات عامة – نظيف + سريع
================================================== */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: inherit;
  background: #fff;
  color: #111;
}

/* ==================================================
   الهيدر (غير ثابت – بدون إزعاج)
================================================== */
header {
  position: relative !important;
  background: #fff;
  box-shadow: none;
  transition: transform 0.35s ease;
  z-index: 1000;
}

/* ==================================================
   إزالة عناصر مزعجة عامة
================================================== */
.breadcrumb,
hr,
.unnecessary-section,
.extra-info {
  display: none !important;
}

/* ==================================================
   الأزرار (واضحة – بدون فلاش)
================================================== */
button,
.btn,
.add-to-cart {
  background-color: #1e2085 !important;
  color: #fff !important;
  border-radius: 10px;
  padding: 12px 18px;
  border: none;
  box-shadow: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

button:hover,
.btn:hover,
.add-to-cart:hover {
  background-color: #181a6b !important;
  transform: translateY(-1px);
}

/* ==================================================
   بطاقات المنتجات (بدون وهج أو شعاع)
================================================== */
.product-card,
.product-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none !important;
  transition: transform 0.25s ease;
}

.product-card:hover,
.product-item:hover {
  transform: translateY(-3px);
}

/* ==================================================
   صور المنتجات
================================================== */
.product-card img,
.product-item img,
.product-details img {
  border-radius: 12px;
  object-fit: contain;
}

/* ==================================================
   صفحة المنتج
================================================== */
.product-details img {
  max-height: 420px;
}

/* ==================================================
   المسافات (راحة بصرية)
================================================== */
.container,
.section {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* ==================================================
   إبراز "الأكثر مبيعًا" (ذكي وهادئ)
================================================== */
.product-card .badge,
.product-item .badge {
  background-color: #1e2085;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 4px 10px rgba(30,32,133,0.25);
}

.product-card:has(.badge),
.product-item:has(.badge) {
  border: 1px solid rgba(30,32,133,0.15);
}

/* ==================================================
   إلغاء الصورة / المربع داخل زر السلايدر فقط
   (بدون التأثير على صور المنتجات)
================================================== */
.swiper-button-next img,
.swiper-button-prev img,
.swiper-button-next picture,
.swiper-button-prev picture {
  display: none !important;
}

.swiper-button-next,
.swiper-button-prev {
  background: none !important;
  box-shadow: none !important;
}

/* تأكيد بقاء صور المنتجات */
.product-card img,
.product-item img,
.product-details img {
  display: block !important;
}

/* ==================================================
   ================== الجوال ==================
================================================== */
@media (max-width: 768px) {

  body {
    font-size: 14px;
  }

  h1 { font-size: 18px; }
  h2 { font-size: 16px; }
  h3 { font-size: 15px; }

  .container,
  .section {
    padding: 14px !important;
  }

  /* بطاقات المنتجات */
  .product-card,
  .product-item {
    border-radius: 10px;
    transform: none !important;
  }

  .product-card img,
  .product-item img {
    border-radius: 8px;
  }

  /* زر الشراء */
  .add-to-cart,
  button,
  .btn {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
  }

  /* صورة المنتج */
  .product-details img {
    max-height: 300px;
  }

  /* شارة الأكثر مبيعًا */
  .product-card .badge,
  .product-item .badge {
    font-size: 10px;
    padding: 3px 6px;
    top: 8px;
    right: 8px;
  }

  /* سرعة الجوال */
  * {
    transition: none !important;
  }
}