/* ================= PRODUCTS SECTION ================= */

.products-section {
  padding: 100px 60px;
  margin-top: 80px;
  background: #ffffff;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.products-container h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.products-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* ================= FILTERS ================= */

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.product-filters button {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  color: #333;
}

.product-filters button.active,
.product-filters button:hover {
  background: #0ea5a4;
  color: #ffffff;
  border-color: #0ea5a4;
}

/* ================= PRODUCT GRID ================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* PRODUCT CARD */
.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 22px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.product-card:hover {
  border-color: #0ea5a4;
}

/* PRODUCT IMAGE */
.product-image {
  width: 100%;
  height: 160px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* IMAGE HOVER */
.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* NAME */
.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

/* DETAILS */
.product-pack,
.product-price {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.product-expand {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}

.product-description {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.hidden {
  display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .products-section {
    padding: 70px 24px;
    margin-top: 50px;
  }

  .products-container h1 {
    font-size: 28px;
  }

  .products-intro {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 140px;
  }
}
