/* ====== إعدادات عامة ====== */
.products-section {
  padding: 80px 50px;
  font-family: var(--font-family);
  background-color: #fefcff;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== العنوان ====== */
.products-header h1 {
  font-size: 2.5rem;
  color: #470d88;
  margin-bottom: 10px;
  text-align: center;
}

.products-header p {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* ====== شبكة الكروت ====== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ====== كرت المنتج ====== */
.product-card {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: center;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ====== صورة المنتج ====== */
.product-image-wrapper {
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}

.product-card:hover .product-image {
  transform: scale(1.1);
  filter: brightness(0.85);
}

/* ====== اسم المنتج ====== */
.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #470d88;
  margin: 15px 0 5px 0;
}

/* ====== وصف المنتج ====== */
.product-desc {
  font-size: 1rem;
  color: #555;
  padding: 0 15px 20px 15px;
  line-height: 1.4;
}

/* ====== Responsive ====== */
@media (max-width: 991px) {
  .product-image {
    height: 250px;
  }
  .product-name {
    font-size: 1.2rem;
  }
  .product-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 50px 20px;
  }
  .product-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 200px;
  }
  .product-name {
    font-size: 1.1rem;
  }
  .product-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .product-image {
    height: 180px;
  }
  .product-name {
    font-size: 1rem;
  }
  .product-desc {
    font-size: 0.85rem;
  }
}
 