/* ===== PDP — Product Detail Page ===== */

/* Breadcrumbs row */
.pdp-crumbs {
  padding: 18px 0 0;
}
.pdp-crumbs .breadcrumbs {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.pdp-crumbs .breadcrumbs a { color: var(--ink-2); text-decoration: none; }
.pdp-crumbs .breadcrumbs a:hover { color: var(--green-deep); }
.pdp-crumbs .sep { margin: 0 8px; opacity: 0.5; }
.pdp-crumbs .current { color: var(--green-ink); font-weight: 600; }

/* ===== Hero — Layout A (default split) ===== */
.pdp-hero {
  padding: 28px 0 64px;
  background: var(--paper);
}
.pdp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  display: block;
  grid-template-columns: none;
  position: sticky;
  top: 90px;
}
.pdp-gallery-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #EDE7DA 0%, #DCD3BE 100%);
  border: 1px solid var(--line);
}
.pdp-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-gallery-flag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--green-ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pdp-gallery-flag .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.pdp-gallery-flag.holy {
  background: var(--gold);
  color: var(--green-ink);
}
.pdp-gallery-flag.holy .dot { background: var(--green-ink); }

.pdp-gallery-stamp {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(14,59,39,0.92);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.pdp-gallery-stamp svg { width: 18px; height: 18px; color: var(--gold); }
.pdp-gallery-stamp strong { color: var(--gold); font-weight: 800; }

.pdp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.pdp-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex; align-items: center; justify-content: center;
}
.pdp-thumb:hover { border-color: var(--green-deep); }
.pdp-thumb.active { border-color: var(--green-ink); border-width: 2.5px; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb-icon {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  flex-direction: column;
  gap: 4px;
}
.pdp-thumb-icon svg { width: 22px; height: 22px; }

/* Buy box */
.pdp-buy { padding: 0; }
.pdp-buy-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.pdp-buy-eyebrow .line { flex: 0 0 32px; height: 2px; background: var(--gold); }
.pdp-buy-eyebrow .pill {
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--green-ink);
  border-radius: 100px;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.pdp-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--green-ink);
  margin: 0 0 14px;
}
.pdp-title .accent { color: var(--gold-deep); font-style: italic; font-weight: 800; }

.pdp-tagline {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 22px;
  font-weight: 500;
  max-width: 50ch;
}

.pdp-rating-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pdp-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.08em;
}
.pdp-rating-num { font-weight: 800; color: var(--green-ink); }
.pdp-rating-link {
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.pdp-rating-divider { width: 1px; height: 16px; background: var(--line); }
.pdp-rating-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--green-deep);
  padding: 4px 10px;
  background: var(--green-soft);
  border-radius: 100px;
}
.pdp-rating-tag svg { width: 12px; height: 12px; }

/* NPK strip */
.pdp-npk-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
  background: var(--white);
}
.pdp-npk-cell {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.pdp-npk-cell:last-child { border-right: 0; }
.pdp-npk-cell .lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pdp-npk-cell .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -0.02em;
}
.pdp-npk-cell .val .unit { font-size: 12px; color: var(--ink-3); margin-left: 2px; font-weight: 500; }
.pdp-npk-cell.accent { background: var(--green-soft); }
.pdp-npk-cell.accent .val { color: var(--green-deep); }

/* Highlights bullets */
.pdp-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 26px;
}
.pdp-highlight {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.pdp-highlight .ic {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  margin-top: 1px;
}
.pdp-highlight .ic svg { width: 13px; height: 13px; }

/* Variant select */
.pdp-variant {
  margin-bottom: 22px;
}
.pdp-variant-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.pdp-variant-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-ink);
}
.pdp-variant-help {
  font-size: 13px;
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-variant-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pdp-variant-opt {
  position: relative;
  padding: 16px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}
.pdp-variant-opt:hover { border-color: var(--green-deep); }
.pdp-variant-opt.active {
  border-color: var(--green-ink);
  background: var(--green-soft);
}
.pdp-variant-opt .size {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.pdp-variant-opt .area {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 2px;
}
.pdp-variant-opt .price {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-deep);
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.pdp-variant-opt .save {
  position: absolute;
  top: -8px; right: 10px;
  background: var(--gold);
  color: var(--green-ink);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* Subscribe / one-time toggle */
.pdp-buy-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.pdp-mode {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
}
.pdp-mode:hover { border-color: var(--green-deep); }
.pdp-mode.active { border-color: var(--green-ink); background: var(--paper); }
.pdp-mode-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-ink);
}
.pdp-mode-head .badge-save {
  font-size: 10px;
  background: var(--gold);
  color: var(--green-ink);
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.pdp-mode-sub { font-size: 12px; color: var(--ink-3); font-weight: 500; }

/* Buy CTA row */
.pdp-cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.pdp-qty {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}
.pdp-qty button {
  width: 44px;
  display: grid; place-items: center;
  background: transparent;
  color: var(--green-ink);
  font-size: 18px;
  font-weight: 700;
  transition: background 0.15s ease;
}
.pdp-qty button:hover { background: var(--paper); }
.pdp-qty input {
  width: 44px;
  border: 0;
  background: transparent;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-ink);
  outline: 0;
}
.pdp-add-cart {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--green-deep);
  color: var(--paper);
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.15s ease;
  width: 100%;
}
.pdp-add-cart:hover {
  background: var(--green-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(14,59,39,0.25);
}
.pdp-add-cart svg { width: 18px; height: 18px; }
.pdp-add-cart .price-now { font-family: 'JetBrains Mono', monospace; font-weight: 800; }
.pdp-add-cart .strike { opacity: 0.55; text-decoration: line-through; font-weight: 500; font-size: 13px; margin-left: 2px; }

.pdp-secondary-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--green-ink);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 24px;
}
.pdp-secondary-cta:hover { border-color: var(--green-ink); background: var(--paper); }
.pdp-secondary-cta svg { width: 16px; height: 16px; color: var(--green-deep); }

/* Trust mini-rows */
.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  background: var(--paper-2);
  border-radius: 14px;
}
.pdp-trust-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.35;
  font-weight: 500;
}
.pdp-trust-item .ic {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--green-ink);
  color: var(--gold);
  display: grid; place-items: center;
}
.pdp-trust-item .ic svg { width: 15px; height: 15px; }
.pdp-trust-item strong { color: var(--green-ink); display: block; font-weight: 800; font-size: 13px; }

/* ===== Hero variant B (full-bleed image with overlay buy) ===== */
.pdp-hero.variant-b .pdp-hero-grid { display: block; position: relative; }
.pdp-hero.variant-b .pdp-gallery {
  position: relative;
  top: auto;
  margin-bottom: -180px;
}
.pdp-hero.variant-b .pdp-gallery-main {
  aspect-ratio: 21/10;
  border-radius: 28px;
}
.pdp-hero.variant-b .pdp-buy {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 36px 32px;
  margin: 0 60px;
  box-shadow: 0 28px 60px -24px rgba(14,59,39,0.25);
}
.pdp-hero.variant-b .pdp-gallery-thumbs { display: none; }
.pdp-hero.variant-b .pdp-title { font-size: clamp(34px, 4vw, 48px); }

/* ===== Section blocks ===== */
.pdp-section { padding: 80px 0; }
.pdp-section.alt { background: var(--paper-2); }
.pdp-section.dark { background: var(--green-ink); color: var(--paper); }

.pdp-sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}
.pdp-sec-head .kicker { color: var(--green-deep); }
.pdp-section.dark .pdp-sec-head .kicker { color: var(--gold); }
.pdp-section.dark .pdp-sec-head .kicker::before { background: var(--gold); }
.pdp-sec-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green-ink);
  margin: 0;
  text-wrap: balance;
}
.pdp-section.dark .pdp-sec-head h2 { color: var(--paper); }
.pdp-sec-head h2 .accent { color: var(--gold-deep); font-style: italic; }
.pdp-section.dark .pdp-sec-head h2 .accent { color: var(--gold); }
.pdp-sec-head .lead { font-size: 16.5px; color: var(--ink-2); line-height: 1.55; margin: 0; font-weight: 500; max-width: 50ch; }
.pdp-section.dark .pdp-sec-head .lead { color: rgba(247,244,236,0.78); }

/* ===== Why-this-blend (composition story) ===== */
.pdp-blend-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pdp-blend-list {
  display: flex; flex-direction: column;
  gap: 18px;
}
.pdp-blend-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.2s ease;
}
.pdp-blend-item:hover { border-color: var(--green-deep); transform: translateY(-2px); }
.pdp-blend-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green-ink);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pdp-blend-mark.k { background: var(--gold); color: var(--green-ink); }
.pdp-blend-mark.fe { background: var(--green-deep); color: var(--gold); }
.pdp-blend-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.01em;
}
.pdp-blend-role { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; line-height: 1.4; font-weight: 500; }
.pdp-blend-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
}

/* Bag visual */
.pdp-bag {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #1F5F3F 0%, #0E3B27 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.pdp-bag-img {
  position: relative;
  width: 80%;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.4));
}
.pdp-bag-img img { width: 100%; height: auto; display: block; }
.pdp-bag-cap {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--paper);
}
.pdp-bag-cap .lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.pdp-bag-cap .val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; }

/* ===== Application planner ===== */
.pdp-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pdp-plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
}
.pdp-plan-card.now {
  background: var(--green-ink);
  color: var(--paper);
  border-color: var(--green-ink);
}
.pdp-plan-card.now * { color: inherit; }
.pdp-plan-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}
.pdp-plan-card.now .pdp-plan-num { color: var(--gold); }
.pdp-plan-when {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.pdp-plan-card.now .pdp-plan-when { color: var(--paper); }
.pdp-plan-meta {
  display: flex; gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.pdp-plan-card.now .pdp-plan-meta { color: rgba(247,244,236,0.7); }
.pdp-plan-meta span { display: inline-flex; align-items: center; gap: 4px; }
.pdp-plan-meta svg { width: 12px; height: 12px; }
.pdp-plan-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.pdp-plan-card.now .pdp-plan-desc { color: rgba(247,244,236,0.85); }
.pdp-plan-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green-deep);
}
.pdp-plan-card.now .pdp-plan-tag {
  background: var(--gold);
  color: var(--green-ink);
}

.pdp-plan-tip {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-ink);
}
.pdp-plan-tip svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--gold-deep); }

/* ===== Specs / What's in the box ===== */
.pdp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.pdp-spec-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.pdp-spec-row:nth-child(2n) { border-right: 0; }
.pdp-spec-row:nth-last-child(-n+2) { border-bottom: 0; }
.pdp-spec-key {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pdp-spec-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-ink);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.01em;
}
.pdp-spec-val.text { font-family: 'Geist', sans-serif; }

/* ===== Comparison table ===== */
.pdp-compare {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.pdp-compare-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  background: var(--green-ink);
  color: var(--paper);
}
.pdp-compare-head > div {
  padding: 18px 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-right: 1px solid rgba(247,244,236,0.1);
}
.pdp-compare-head > div:last-child { border-right: 0; }
.pdp-compare-head .me {
  background: var(--gold);
  color: var(--green-ink);
}
.pdp-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}
.pdp-compare-row > div {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.pdp-compare-row > div:last-child { border-right: 0; }
.pdp-compare-row .feat {
  font-weight: 700;
  color: var(--green-ink);
  background: var(--paper-2);
}
.pdp-compare-row .me {
  background: rgba(201,169,97,0.08);
  font-weight: 700;
  color: var(--green-ink);
}
.pdp-compare-row svg { width: 16px; height: 16px; flex-shrink: 0; }
.pdp-compare-row .yes { color: var(--green-deep); }
.pdp-compare-row .no { color: #B33A2A; opacity: 0.5; }

/* ===== Lab results card ===== */
.pdp-lab {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 32px;
}
.pdp-lab-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  flex-wrap: wrap; gap: 14px;
}
.pdp-lab-head .who {
  display: flex; align-items: center; gap: 14px;
}
.pdp-lab-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-ink);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.pdp-lab-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--green-ink);
}
.pdp-lab-sub { font-size: 12px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }
.pdp-lab-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--green-soft);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}
.pdp-lab-stamp svg { width: 14px; height: 14px; }

.pdp-lab-rows {
  display: flex; flex-direction: column;
  gap: 14px;
}
.pdp-lab-row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  gap: 16px;
  align-items: center;
}
.pdp-lab-name-cell {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-ink);
}
.pdp-lab-name-cell .sub { font-size: 11px; font-weight: 500; color: var(--ink-3); margin-top: 1px; display: block; }
.pdp-lab-bar {
  position: relative;
  height: 8px;
  background: var(--paper-2);
  border-radius: 100px;
  overflow: hidden;
}
.pdp-lab-bar-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, var(--green-light) 0%, var(--green-deep) 100%);
  border-radius: 100px;
}
.pdp-lab-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-ink);
  text-align: right;
}

/* ===== Reviews ===== */
.pdp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.pdp-rev-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.pdp-rev-big {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.pdp-rev-big .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pdp-rev-big .of { font-size: 18px; color: var(--ink-3); font-weight: 600; }
.pdp-rev-stars { font-size: 18px; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 4px; }
.pdp-rev-count { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.pdp-rev-bars {
  margin: 22px 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.pdp-rev-bar {
  display: grid;
  grid-template-columns: 14px 1fr 28px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}
.pdp-rev-bar .track { height: 6px; background: var(--paper-2); border-radius: 100px; overflow: hidden; }
.pdp-rev-bar .fill { height: 100%; background: var(--gold); border-radius: 100px; }
.pdp-rev-write {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--green-ink);
  color: var(--paper);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}
.pdp-rev-write:hover { background: var(--green-deep); }

.pdp-rev-list {
  display: flex; flex-direction: column;
  gap: 18px;
}
.pdp-rev-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
}
.pdp-rev-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap; gap: 10px;
}
.pdp-rev-who {
  display: flex; align-items: center; gap: 12px;
}
.pdp-rev-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-ink);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.pdp-rev-name { font-weight: 800; font-size: 14px; color: var(--green-ink); }
.pdp-rev-meta { font-size: 12px; color: var(--ink-3); margin-top: 1px; display: flex; gap: 8px; }
.pdp-rev-verified {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--green-deep);
  font-weight: 700;
}
.pdp-rev-verified svg { width: 11px; height: 11px; }
.pdp-rev-stars-row { color: var(--gold); font-size: 14px; letter-spacing: 0.08em; }
.pdp-rev-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--green-ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.pdp-rev-body {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 12px;
}
.pdp-rev-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
}
.pdp-rev-tags span {
  background: var(--paper-2);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ===== FAQ ===== */
.pdp-faq {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.pdp-faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.pdp-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-ink);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.pdp-faq-q .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.pdp-faq-q .icon svg { width: 14px; height: 14px; }
.pdp-faq-item.open .icon { background: var(--green-ink); color: var(--gold); transform: rotate(45deg); }
.pdp-faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 500;
}
.pdp-faq-item.open .pdp-faq-a { padding: 0 26px 22px; max-height: 400px; }

/* ===== Sticky add-to-cart bar (mobile-style, but desktop too) ===== */
.pdp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
  padding: 12px 0;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.pdp-sticky.shown { transform: translateY(0); }
.pdp-sticky-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.pdp-sticky-prod {
  display: flex; align-items: center; gap: 14px;
}
.pdp-sticky-img {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--paper-2);
  overflow: hidden;
}
.pdp-sticky-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-sticky-info .name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.01em; }
.pdp-sticky-info .meta { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.pdp-sticky-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-ink);
  text-align: right;
}
.pdp-sticky-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--green-deep);
  color: var(--paper);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}
.pdp-sticky-cta:hover { background: var(--green-ink); }

/* ===== Related ===== */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pdp-related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: block;
}
.pdp-related-card:hover { transform: translateY(-3px); border-color: var(--green-deep); box-shadow: 0 14px 28px -10px rgba(14,59,39,0.18); }
.pdp-related-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #EDE7DA 0%, #DCD3BE 100%);
  position: relative;
  overflow: hidden;
}
.pdp-related-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-related-body { padding: 16px 18px 18px; }
.pdp-related-line { font-size: 11px; font-weight: 800; color: var(--green-deep); letter-spacing: 0.1em; text-transform: uppercase; }
.pdp-related-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--green-ink);
  margin: 4px 0 6px;
  letter-spacing: -0.02em;
}
.pdp-related-stars { font-size: 12px; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 8px; }
.pdp-related-stars .num { color: var(--ink-3); font-weight: 600; margin-left: 4px; }
.pdp-related-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.pdp-related-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 16px;
  color: var(--green-ink);
}
.pdp-related-add {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green-deep);
  color: var(--paper);
  display: grid; place-items: center;
}
.pdp-related-add svg { width: 14px; height: 14px; }

/* ===== Tweaks panel mounting point ===== */
#tweaks-mount { position: fixed; z-index: 200; }

@media (max-width: 980px) {
  .pdp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .pdp-blend-grid { grid-template-columns: 1fr; }
  .pdp-plan-grid { grid-template-columns: 1fr 1fr; }
  .pdp-specs-grid { grid-template-columns: 1fr; }
  .pdp-reviews-grid { grid-template-columns: 1fr; }
  .pdp-rev-summary { position: static; }
  .pdp-related-grid { grid-template-columns: 1fr 1fr; }
  .pdp-sec-head { grid-template-columns: 1fr; }
}
