/* ===================== PRODUCT PAGE ===================== */

/* — Hero — */
.pp-product-hero {
  padding: 6.5rem 0 3rem;
  background: var(--pp-bg-soft);
  text-align: center;
}
.pp-product-hero .pp-badge { margin-bottom: 1rem; display: inline-block; }
.pp-product-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 680px;
  margin: 0.75rem auto 1.25rem;
}
.pp-product-hero p {
  max-width: 660px;
  margin: 0 auto 2rem;
  color: var(--pp-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* — Feature sections — */
.pp-product-feature {
  padding: 5rem 0;
  background: #fff;
}
.pp-product-feature--alt { background: var(--pp-bg-soft); }

.pp-product-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.pp-product-feature__img {
  border-radius: var(--pp-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  background: #fff;
  max-width: 560px;
  width: 100%;
}
.pp-product-feature__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}

.pp-product-feature__text .pp-badge { margin-bottom: 0.875rem; display: inline-block; }
.pp-product-feature__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.pp-product-feature__text p {
  color: var(--pp-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pp-product-feature__text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pp-product-feature__text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.55;
}
.pp-product-feature__text ul li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--pp-pink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4.5l3 3L11 1' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
}

/* — Responsive — */
@media (max-width: 768px) {
  .pp-product-hero { padding: 5rem 0 2.5rem; }
  .pp-product-feature { padding: 2.5rem 0; }
  .pp-product-feature__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  /* Always show image above text in stacked layout */
  .pp-product-feature__img { order: -1; }
  /* Full-width CTA buttons */
  .pp-product-feature__text .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .pp-product-hero { padding: 4.5rem 0 2rem; }
}
