
    /* قسم السلايدر بالكامل */
.product-carousel-section {
  padding: 20px 0;
  max-width: 1200px;
  margin: auto;
}

/* كل منتج داخل السلايدر */
.product-box {
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* الصورة */
.product-box img {
  width: 100% !important;
  max-width: 250px;
  height: 250px !important;
  object-fit: cover !important;
  border-radius: 10px;
}

/* عنوان المنتج */
.product-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 5px;
  color: #333;
  text-align: center;
}

/* السعر */
.product-price {
  font-size: 18px;
  color: #C8735A;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

/* زر إضافة للسلة */
.product-box .button,
.product-box a.button {
    background-color: #C8735A;
    color: white;
    border: none;
    padding: 15px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}


.product-box .button,
.product-box a.button:hover {
  background-color: #fff;
  color: #C8735A;
  border: 2px solid ;
}

/* إخفاء التقييم */
.star-rating {
  display: none !important;
}



.product-image-wrap {
    width: 55%;
    height: 80%;          /* هذا هو السر */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-wrap img.product-img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


