/* ═══════════════════════════════════════════════
   SNORPLE PRODUCT PAGE CSS
   Used by product-chinstrap.html and other
   dedicated product landing pages.
═══════════════════════════════════════════════ */


/* ═══════════════════════════════════════════
   PRODUCT HERO
═══════════════════════════════════════════ */
.product-hero {
  background: var(--white);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border);
}
.product-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-hero-img-col {
  position: sticky;
  top: 88px;
}
.product-hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.12);
  display: block;
}

/* ── Breadcrumb ─────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: #bbb; }

/* ── Product Title ──────────────────────── */
.product-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}

/* ── Rating Row ─────────────────────────── */
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}
.product-rating-row:hover .product-rating-count { text-decoration: underline; }
.product-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; line-height: 1; }
.product-rating-score { font-size: 16px; font-weight: 700; color: var(--text); }
.product-rating-count { font-size: 14px; color: var(--blue); }

/* ── Price ──────────────────────────────── */
.product-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1;
}

/* ── Short Description ──────────────────── */
.product-short-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── Features List ──────────────────────── */
.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 0;
}
.product-features-list li {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.product-features-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA Button ─────────────────────────── */
.btn-product-cta {
  display: block;
  width: 100%;
  background: var(--teal);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  transition: background .15s, transform .1s;
}
.btn-product-cta:hover {
  background: #145f56;
  transform: translateY(-1px);
  color: #fff;
}

/* ── Trust Line ─────────────────────────── */
.product-trust-line {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-trust-line span {
  display: inline-block;
  margin: 0 4px;
  color: var(--green);
  font-weight: 600;
}

/* ── Small Trust Icons Row ──────────────── */
.product-trust-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--trust-bg);
  border-radius: 8px;
  padding: 14px 16px;
}
.product-trust-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}
.product-trust-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.product-trust-icon span {
  font-size: 11px;
  font-weight: 600;
  color: var(--trust-text);
  line-height: 1.3;
}


/* ═══════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════ */
.reviews-section-pp {
  padding: 72px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.reviews-section-pp .section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

.reviews-heading-row {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-heading-row .rev-big-stars {
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 8px;
}
.reviews-heading-row h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.reviews-heading-row p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Rating Breakdown Bars */
.rating-summary {
  max-width: 520px;
  margin: 0 auto 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}
.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}
.rating-bar-label .bar-star { color: var(--gold); }
.rating-bar-track {
  flex: 1;
  background: var(--light-gray);
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.rating-bar-pct {
  font-size: 12px;
  color: var(--text-muted);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* reviews-bar-* aliases used by product-combo and product-mouthpiece */
.reviews-bars { display: flex; flex-direction: column; gap: 10px; }
.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}
.reviews-bar-track {
  flex: 1;
  background: var(--light-gray);
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}
.reviews-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.reviews-bar-pct {
  font-size: 12px;
  color: var(--text-muted);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Individual Review Cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-card-pp {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}
.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.review-verified {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-not-verified {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.review-meta-right {
  text-align: right;
  flex-shrink: 0;
}
.review-stars-row {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.review-date {
  font-size: 12px;
  color: var(--text-muted);
}
.review-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.review-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Reply from Snorple Team */
.review-reply {
  background: #eef6f0;
  border-left: 3px solid var(--green);
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: 16px;
}
.review-reply-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.review-reply-text {
  font-size: 14px;
  color: #2d5a3a;
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   WHY IT WORKS — HERO CONTENT BLOCK
═══════════════════════════════════════════ */
.why-hero-section {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}


/* ═══════════════════════════════════════════
   OTHER SOLUTIONS
═══════════════════════════════════════════ */
.other-solutions {
  padding: 64px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.other-solutions .section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.other-solutions-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Product Hero — single column */
  .product-hero { padding: 32px 0 40px; }
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }
  .product-hero-img-col { position: static; }
  .product-hero-img { max-width: 100%; }

  .product-title { font-size: 28px; }
  .product-price { font-size: 34px; }
  .btn-product-cta { font-size: 17px; padding: 16px; }

  .product-trust-icons { gap: 4px; padding: 12px 10px; }
  .product-trust-icon span { font-size: 10px; }

  /* Reviews */
  .reviews-section-pp { padding: 48px 0; }
  .reviews-section-pp .section-inner { padding: 0 20px; }
  .rating-summary { padding: 20px; }
  .review-card-pp { padding: 20px; }
  .review-card-header { flex-direction: column; }
  .review-meta-right { text-align: left; }

  /* Solutions grid — single column */
  .solutions-grid { grid-template-columns: 1fr; }
  .other-solutions .section-inner { padding: 0 20px; }

  /* Why it works sections */
  .why-hero-section { padding: 40px 0; }
  .why-hero-section .section-inner { padding: 0 20px; }
  .why-hero-section .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Clinically Proven / proven-section responsive */
  .proven-section .two-col { grid-template-columns: 1fr; gap: 28px; }
  .proven-section .section-inner { padding: 0 20px; }
  .proven-right { order: -1; }

  /* Features section responsive */
  .features-section .two-col { grid-template-columns: 1fr; gap: 28px; }
  .features-section .section-inner { padding: 0 20px; }
  .features-section .col-left { text-align: center; }

  /* Media bar responsive */
  .media-bar { padding: 18px 20px; }
  .media-bar-inner { gap: 18px; }
  .media-logo-img { height: 36px; }

}
