/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
/* اسم المنتج داخل كرت المنتج - سطر واحد فقط */
custom-salla-product-card h4 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  display: block !important;
  max-width: 100% !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  height: 1.4em !important;
  text-align: center !important;
}
.flex.justify-start.relative.pe-8.container {
  justify-content: center !important;
}
/* توحيد ارتفاع كرت المنتج */
custom-salla-product-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 500px !important;
  padding: 16px !important;
  border-radius: 12px !important;
  background-color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  transition: box-shadow 0.3s ease !important;
}

custom-salla-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* توحيد مقاس صورة المنتج */
custom-salla-product-card img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 8px !important;
}

/* السعر */
custom-salla-product-card .price {
  font-size: 15px !important;
  font-weight: bold !important;
  color: #000 !important;
  text-align: center !important;
  margin-top: 8px !important;
}

/* زر السلة */
custom-salla-product-card .product-card__add-to-cart,
custom-salla-product-card button,
custom-salla-product-card .add-to-cart-button {
  font-size: 14px !important;
  color: #666 !important;
  background: none !important;
  border: 1px solid #ccc !important;
  padding: 6px 12px !important;
  width: fit-content !important;
  margin: 0 auto;
  display: block !important;
  border-radius: 20px !important;
  transition: all 0.3s ease;
}

custom-salla-product-card .product-card__add-to-cart:hover,
custom-salla-product-card button:hover,
custom-salla-product-card .add-to-cart-button:hover {
  color: #000 !important;
  border-color: #000 !important;
}
/* خلفية شريط التصنيفات */
nav[aria-label="Categories"] {
  background-color: #1f1f1f !important;
}

/* لون الروابط داخل الشريط */
nav[aria-label="Categories"] a {
  color: #c59d5f !important;
  font-weight: 500 !important;
}

/* تغيير اللون عند التمرير */
nav[aria-label="Categories"] a:hover {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  /* ضبط عدد الكروت في الصف بالجوال */
  .grid.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important; /* مسافة خفيفة بينهم */
  }

  /* تصغير كرت المنتج */
  custom-salla-product-card {
    min-height: auto !important;
    padding: 10px !important;
  }

  /* تصغير صورة المنتج */
  custom-salla-product-card img {
    height: 200px !important;
    object-fit: contain !important;
  }
}
/* تنعيم حواف كروت المنتجات بالجوال وبالابتوب */
custom-salla-product-card {
  border-radius: 12px !important; /* حواف خفيفة ومرتبة */
  border: 1px solid #e0e0e0 !important; /* خط رمادي خفيف حول الكرت */
  overflow: hidden !important;
  background: #ffffff !important;
  padding: 12px !important;
  transition: box-shadow 0.3s ease;
}

/* تأثير بسيط عند المرور */
custom-salla-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* تنعيم شكل صورة المنتج أيضاً */
custom-salla-product-card img {
  border-radius: 8px !important;
}.custom-categories-bar {
  background-color: #c59d5f;
  padding: 10px 0;
  text-align: center;
}

.custom-categories-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.custom-categories-bar ul li a {
  color: #1f1f1f;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-categories-bar ul li a:hover {
  color: #fff;
}