.products_hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  background-image:
    
    url("../images/products/products-hero-bg.jpg");

  background-size: cover;
  background-position: center;

   padding: 190px 5% 60px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.products_hero_content {
  width: 100%;
  text-align: center;
  color: white;
  transform: translateY(-60px);
}

.products_hero_content h1 {
  font-size: clamp(50px, 7vw, 105px);
  line-height: 1.05;
  margin: 20px 0;
}

.products_hero_content > p {
  max-width: 1400px;
  margin: 0 auto 80px;
  font-size: 38px;
  line-height: 1.8;
}

.product_cards {
  width: 85%;
  max-width: none;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.product_card {
  text-decoration: none;
  color: #111;

  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 30px;
  overflow: hidden;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.product_card img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background-color: white;
  display: block;

  transition: transform 0.6s ease;
}

.product_card div {
  padding: 28px;
}

.product_card h3 {
  font-size: 38px;
  margin: 0 0 12px;
}

.product_card p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.product_card:hover {
  transform: translateY(-18px) scale(1.03);
  box-shadow: 0 40px 95px rgba(0, 0, 0, 0.2);
}

.product_card:hover img {
  transform: scale(1.08);
}

@media (max-width: 1300px) {
  .product_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .products_hero {
    padding: 150px 24px 80px;
  }

  .product_cards {
    grid-template-columns: 1fr;
  }

  .products_hero_content > p {
    font-size: 22px;
  }

  .product_card img {
    height: 300px;
  }
}