html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  /* Put gradient on the whole page */
  background: linear-gradient(90deg, #997346, #f2c987);
  background-attachment: fixed; /* keeps gradient static */
  background-size: cover;

}

/* Hero Section */
.product-hero {
  position: relative;
  background: linear-gradient(90deg, #997346, #f2c987); /* gradient behind */
  color: #fff;
  text-align: center;

  /* section height */
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Background image over gradient – start lower */
.product-hero::before {
  content: "";
  position: absolute;
  /* leave gradient visible at the top */
  top: 0;              /* adjust this = gap before image */
  left: 0;
  right: 0;
  bottom: 0;

  background: url("img/products/bg5.png") center/cover no-repeat;
  z-index: 1;
}

/* Glass effect container */
.product-hero-content {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #072638;
  background: rgba(255, 255, 255, 0.6); /* translucent */
  backdrop-filter: blur(8px);
  padding: 20px 30px;
  border-radius: 15px;
}

.product-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.product-hero-content p {
  font-size: 1.2rem;
}


/* Product Sections */
.product-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  gap: 60px;
}
.product-section.reverse {
  flex-direction: row-reverse;
  text-align: center;
}

.product-text {
  flex: 1;
}
.product-text h2 {
  font-size: 3rem;
  margin-bottom: 05px;
  color: #072638;
}
.product-text p {
  font-size: 1.2rem;
  color: #072638;
}

.product-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image .patch {
  width: 100%;
  max-width: 300px;
  border-radius: 30px;
}
.product-image .product {
  position: absolute;
  width: 80%;
  max-width: 1000px;
}

/* Responsive */
@media (max-width: 900px) {
  .product-section {
    flex-direction: column;
    text-align: center;
  }
  .product-section.reverse {
    flex-direction: column;
  }
  .product-image {
    margin-bottom: 20px;
  }
}
