/* =========================
   تحسين عام للمتجر
========================= */
body {
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

/* =========================
   البنرات (حل جذري)
========================= */
.salla-slider img,
.main-slider img,
.banner img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .salla-slider img,
  .main-slider img,
  .banner img {
    object-fit: contain !important;
  }
}

/* =========================
   الهيدر
========================= */
header img {
  max-height: 50px !important;
}

@media (max-width: 768px) {
  header img {
    max-height: 40px !important;
  }
}

/* تقليل ارتفاع الهيدر */
header {
  padding: 8px 0 !important;
}

/* =========================
   الكارد (المنتجات)
========================= */
.product {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* صورة المنتج */
.product img {
  border-radius: 12px;
}

/* =========================
   السعر
========================= */
.product .price {
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

/* =========================
   زر اضافة للسلة (احترافي)
========================= */
button,
.btn {
  border-radius: 12px !important;
  font-weight: bold;
  transition: 0.3s;
}

button:hover,
.btn:hover {
  transform: scale(1.05);
}

/* زر الشراء */
.btn-primary {
  background: #000 !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: #222 !important;
}

/* =========================
   المسافات (موبايل UX)
========================= */
@media (max-width: 768px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .product {
    margin-bottom: 10px;
  }
}

/* =========================
   الفوتر
========================= */
footer {
  background: #111;
  color: #fff;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: #fff;
}

/* =========================
   تحسين السكروول
========================= */
::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}