/* ================= HERO ================= */
.products-hero {
  position: relative;
  height: 100vh;
  min-height: 350px;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(255,255,255,0.7); */
}

.products-hero-content {
  position: relative;
  z-index: 2;
}

.products-hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #0f172a;
}

.products-hero-content h1 span {
  color: #facc15;
}

.products-hero-content p {
  color: #475569;
  font-size: 18px;
  margin-top: 10px;
}

/* ================= PRODUCTS ================= */
.products-section {
  background: #f8fafc;
  padding: 100px 20px;
}

.products-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(250,204,21,0.25);
}

/* Image */
.product-image {
  height: 240px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Content */
.product-content {
  padding: 30px;
  text-align: center;
}

.product-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.product-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.product-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #facc15;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: #eab308;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-container {
    grid-template-columns: 1fr;
  }
}
