/* ===== قسم Fashion ===== */
.fashion-section {
  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 */
.fashion-banner {
  text-align: center;
  margin-bottom: 50px;
}

.fashion-banner h2 {
  font-size: 38px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.fashion-banner p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.fashion-banner .shop-now {
  background: #ff4d6d; /* نفس لون أزرار المنتجات */
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fashion-banner .shop-now:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* شبكة المنتجات */
.fashion-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* بطاقة الموضة */
.fashion-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.fashion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* صورة المنتج */
.fashion-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fashion-card:hover img {
  transform: scale(1.05);
}

/* معلومات المنتج */
.fashion-card .product-info {
  padding: 15px;
}

.fashion-card .product-info h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.fashion-card .product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  min-height: 38px;
}

/* السعر */
.fashion-card .product-price {
  font-size: 16px;
  font-weight: bold;
  color: #ff4d6d; /* نفس لون Add-to-Cart */
  margin-bottom: 10px;
}

/* زر الإضافة إلى السلة */
.fashion-card .add-to-cart {
  margin-top: auto;
  padding: 12px 20px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.fashion-card .add-to-cart:hover {
  background: #e04361;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .fashion-banner h2 { font-size: 30px; }
  .fashion-banner p { font-size: 14px; }
  .fashion-products { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fashion-card img { height: 180px; }
}

@media (max-width: 480px) {
  .fashion-products { grid-template-columns: 1fr; gap: 15px; }
  .fashion-card img { height: 150px; }
}
