.product-page-bg {
  background: linear-gradient(
   90deg,
    #00b2a9 0%,
    #387A8B 100%
  );
  padding: 0px;
}
  
body {
  margin: 0;
  background: linear-gradient(
    90deg,
    #00b2a9 0%,
    #387A8B 100%
  );
}
.product-detail {
  max-width: 1150px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-family: Arial, sans-serif;
  color: #111;
}

.product-header {
  background: #13393f;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 32px;
}

.product-header h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.product-header p {
  max-width: 600px;
  margin: 0;
  line-height: 1.35;
}

.product-hero {
  height: 260px;
  overflow: hidden;
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  padding: 34px 32px 42px;
}

.product-description {
  font-size: 16px;
  line-height: 1.5;
}

.product-description h3 {
  margin-top: 0;
  color: #007f83;
}

.product-card {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,.22);
  margin-top: -90px;
  padding: 30px 32px;
  font-size: 15px;
  line-height: 1.45;
}

.product-card h4 {
  margin: 24px 0 14px;
}

.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.badges span {
  color: #009d9a;
  font-weight: bold;
  border-left: 3px solid #009d9a;
  padding-left: 10px;
}

.compliance p {
  margin: 0 0 8px;
}

.product-cta {
  background: #14393f;
  color: #ffffff;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.product-cta p {
  margin: 0;
}

@media(max-width:800px) {
  .product-header,
  .product-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-content {
    grid-template-columns: 1fr;
  }

  .product-card {
    margin-top: 0;
  }
  
