:root {
  --section-bg: #eaeaea;
}

.page-hero {
  background: var(--section-bg);
  padding: 48px 0 24px;
}

.page-hero h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.products-section {
  background: var(--section-bg);
  padding: 20px 0 70px;
}

.product-card {
  border: 0;
  background: transparent;
  transition: transform 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.product-card img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-title {
  text-align: center;
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}

@media (max-width: 991.98px) {
  .page-hero {
    padding: 36px 0 18px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .product-img-wrap {
    min-height: 300px;
  }

  .product-card img {
    max-height: 240px;
  }
}
