/* Products Page Styles */
/* Hero Section */
.products-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}

.products-hero .hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/images/hero-products.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  display: flex;
  align-items: center;
}

.products-hero .hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.products-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.products-hero h1 {
  font-size: 72px;
  font-weight: 550;
  font-family: var(--font-family-title);
  color: #ffffff;
  margin: 0 0 24px 0;
  width: 864px;
}

.products-hero .hero-description {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  margin: 0 auto 32px;
  max-width: 600px;
}

.products-hero .btn {
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-hero {
    min-height: 500px;
    padding: 80px 0;
  }

  .products-hero h1 {
    font-size: 56px;
    width: auto;
    max-width: 90%;
  }

  .products-hero .hero-description {
    font-size: 16px;
    max-width: 90%;
  }
}

@media (max-width: 640px) {
  .products-hero {
    min-height: 400px;
    padding: 60px 0;
  }

  .products-hero h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .products-hero .hero-description {
    font-size: 14px;
    line-height: 20px;
  }
}