/* ===== قسم Trending Now ===== */
.trending-products-compact {
  padding: 60px 20px;
  background: #fde0e0;
  border-radius: 20px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.trending-products-compact h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #333;
}

/* السلايدر */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.trending-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* بطاقات المنتجات */
.trending-products-compact .product-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* صورة المنتج */
.product-image {
  position: relative;
  margin-bottom: 15px;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d6d;
  color: #fff;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 8px;
}

.badge.new {
  background: #28a745;
}

/* اسم المنتج */
.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

/* السعر */
.price {
  margin-bottom: 12px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.new-price {
  font-weight: 700;
  color: #ff4d6d;
}

/* الأزرار */
.product-card button {
  display: block;
  width: 100%;
  margin: 6px 0;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart {
  background: #ff4d6d;
  color: #fff;
}

.add-to-cart:hover {
  background: #e04361;
}

.quick-view {
  background: #f1f1f1;
  color: #333;
}

.quick-view:hover {
  background: #ddd;
}

/* أزرار السلايدر */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff4d6d;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: #ffffff;
  color: #ff4d6d;
}

.slider-btn.prev {
  left: -15px;
}

.slider-btn.next {
  right: -15px;
}

/* Responsive */
@media (max-width: 768px) {
  .trending-slider {
    gap: 12px;
  }
  .product-card {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 160px;
    padding: 15px;
  }
  .product-image img {
    height: 140px;
  }
}
