/* =====================================================
   HOME – CAROUSEL
===================================================== */
.carousel-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(20, 83, 45, 0.7);
  padding: 18px 22px;
  border-radius: 10px;
}

.carousel-caption h2 {
  font-size: 32px;
  font-weight: 600;
}

.carousel-caption p {
  font-size: 16px;
}

/* =====================================================
   CATEGORIES
===================================================== */
.product-box {
  background: #fff7ed;
  padding: 35px 15px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-box i {
  font-size: 34px;
  margin-bottom: 12px;
  color: #2a1f1f;
}

.product-box h5 {
  font-weight: 600;
}

.product-box:hover {
  background: linear-gradient(135deg, #22c55e, #ea580c);
  color: #ffffff;
  transform: translateY(-8px);
}

.product-box:hover i {
  color: #ffffff;
}

/* =====================================================
   ALL PRODUCTS SECTION
===================================================== */
.products-section {
  background: #eef2f7;
  padding: 70px 0;
}

.products-title {
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 45px;
  color: #2a1f1f;
}

/* =====================================================
   PRODUCT CARD
===================================================== */
.product-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 20px;
  background: #ffffff;
}

/* Product Body */
.product-body {
  padding: 20px;
}

/* Meta */
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* Stars */
.stars i {
  color: #facc15;
  font-size: 14px;
}

.stars .gray {
  color: #d1d5db;
}

/* Price */
.price {
  font-size: 15px;
  color: #6b7280;
  font-weight: 600;
}

/* Text */
.product-body h5 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.product-body p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 768px) {

  /* Carousel */
  .carousel-img {
    height: 260px;
  }

  .carousel-caption h2 {
    font-size: 20px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  /* Categories */
  .product-box {
    padding: 25px 15px;
  }

  .product-box i {
    font-size: 28px;
  }

  /* Products */
  .products-title {
    font-size: 28px;
  }

  .product-card img {
    height: 200px;
  }
}
