/* ===== قسم Mega Sale - بطاقات أفقية ===== */
.mega-sale {
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px 0;
  background: #fde0e0; /* نفس خلفية الأقسام الأخرى */
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Banner */
.sale-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}

.sale-text {
  flex: 1 1 100%;
  text-align: center;       /* يوسّط النص */
  display: flex;
  flex-direction: column;
  align-items: center;      /* يوسّط العناصر أفقياً */
  justify-content: center;  /* يوسّط العناصر عمودياً */
  margin-bottom: 30px;
}



.sale-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.sale-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.sale-text p span {
  color: #ff4d6d; /* لون مميز للتخفيض */
  font-weight: bold;
}

.sale-text .shop-now {
  background: #ff4d6d;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sale-text .shop-now:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* شبكة المنتجات */
.sale-products {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* بطاقة المنتج أفقية */
.sale-product-card {
  flex: 1 1 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 500px;
}

.sale-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* صورة المنتج */
.sale-product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.sale-product-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* محتوى البطاقة */
.sale-product-card .product-info {
  flex: 1;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sale-product-card .product-info h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.sale-product-card .price {
  margin-bottom: 15px;
}

.sale-product-card .price .old-price {
  text-decoration: line-through;
  color: #6c757d;
  margin-right: 8px;
}

.sale-product-card .price .new-price {
  font-weight: bold;
  color: #ff4d6d;
  font-size: 18px;
}

/* زر الإضافة إلى السلة */
.sale-product-card .add-to-cart {
  padding: 12px 25px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.sale-product-card .add-to-cart:hover {
  background: #e04361;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(224,67,97,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .sale-banner {
    flex-direction: column;
    text-align: center;
  }
  .sale-text h2 { font-size: 30px; }
  .sale-text p { font-size: 14px; }
  .sale-products {
    flex-direction: column;
    align-items: center;
  }
  .sale-product-card {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  .sale-product-card img {
    width: 100%;
    height: 200px;
  }
  .sale-product-card .product-info {
    padding: 15px;
  }
  .sale-product-card .add-to-cart {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .sale-product-card img { height: 180px; }
}
