/* ===== Shop pages: listing + PDP ===== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0 12px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--green-deep); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--ink); }

/* ===== Listing page ===== */
.shop-head {
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.shop-head .container { position: relative; z-index: 1; }
.shop-head h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 12px 0 16px;
  color: var(--green-ink);
}
.shop-head h1 .accent { color: var(--green-deep); font-style: italic; }
.shop-head p {
  max-width: 620px;
  font-size: 17px;
  color: var(--ink-2);
  margin: 0;
  font-weight: 500;
}
.shop-head-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.shop-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.shop-stat {
  background: var(--white);
  padding: 18px 20px;
}
.shop-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--green-ink); line-height: 1;
  letter-spacing: -0.02em;
}
.shop-stat-num .accent { color: var(--gold-deep); font-style: italic; }
.shop-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 6px;
}

/* Listing layout */
.shop-body { padding: 40px 0 96px; }
.shop-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ssb-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  display: flex; align-items: center; justify-content: space-between;
}
.ssb-clear {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ssb-active-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ssb-group { padding: 18px 0; border-top: 1px solid var(--line); }
.ssb-group:first-of-type { border-top: 0; padding-top: 8px; }
.ssb-group-h {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: space-between;
}
.ssb-group-h .ssb-count {
  font-size: 11px;
  background: var(--paper-2);
  color: var(--ink-3);
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0;
}
.ssb-checks { display: flex; flex-direction: column; gap: 8px; }
.ssb-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.ssb-check:hover { background: var(--paper); }
.ssb-check input { display: none; }
.ssb-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--white);
  transition: all 0.15s ease;
}
.ssb-box svg { width: 11px; height: 11px; color: var(--white); opacity: 0; }
.ssb-check.active .ssb-box {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.ssb-check.active .ssb-box svg { opacity: 1; }
.ssb-check.active { color: var(--green-ink); }
.ssb-check .ssb-num {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

/* Color/season pills variant */
.ssb-seasons { display: flex; flex-wrap: wrap; gap: 6px; }
.ssb-season-pill {
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.ssb-season-pill:hover { border-color: var(--green-deep); }
.ssb-season-pill.active {
  background: var(--green-deep);
  color: var(--paper);
  border-color: var(--green-deep);
}
.ssb-season-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.ssb-season-pill[data-s="spring"] .dot { background: #6BAA75; }
.ssb-season-pill[data-s="summer"] .dot { background: #E8B86A; }
.ssb-season-pill[data-s="autumn"] .dot { background: #C68953; }
.ssb-season-pill[data-s="winter"] .dot { background: #7AA1B5; }

/* Price range */
.ssb-range { padding: 4px 0; }
.ssb-range-input {
  width: 100%;
  appearance: none;
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  outline: 0;
}
.ssb-range-input::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  background: var(--green-deep);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.ssb-range-vals {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
}

/* Toolbar above grid */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.shop-toolbar-left {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.shop-toolbar-left strong { color: var(--green-ink); font-weight: 800; }
.shop-toolbar-right {
  display: flex; align-items: center; gap: 12px;
}
.sort-select {
  padding: 9px 36px 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23131715' stroke-width='2' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  cursor: pointer;
}
.view-toggle { display: flex; gap: 2px; padding: 3px; background: var(--paper-2); border-radius: 10px; }
.view-toggle button {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: all 0.15s ease;
}
.view-toggle button.active { background: var(--white); color: var(--green-deep); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.view-toggle svg { width: 16px; height: 16px; }

/* Product card V2 (richer for listing) */
.shop-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shop-products.list { grid-template-columns: 1fr; }

.shop-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.shop-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-deep);
  box-shadow: 0 16px 40px -16px rgba(14,59,39,0.18);
}
.shop-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--paper-2);
  overflow: hidden;
}
.shop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.shop-card:hover .shop-card-img img { transform: scale(1.04); }
.shop-card-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.shop-badge {
  padding: 4px 9px;
  background: var(--green-ink);
  color: var(--paper);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.shop-badge.gold { background: var(--gold); color: var(--green-ink); }
.shop-badge.bestseller { background: #B33A2A; color: var(--paper); }
.shop-badge.new { background: var(--green-deep); color: var(--paper); }
.shop-badge.holy { background: var(--green-ink); color: var(--gold); border: 1px solid var(--gold); }
.shop-card-quickview {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-ink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
}
.shop-card:hover .shop-card-quickview { opacity: 1; transform: translateY(0); }
.shop-card-quickview:hover { background: var(--green-ink); color: var(--gold); }
.shop-card-quickview svg { width: 18px; height: 18px; }

.shop-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card-line {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  font-family: 'JetBrains Mono', monospace;
}
.shop-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.shop-card-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 600;
}
.stars-row { display: flex; gap: 1px; color: var(--gold); }
.stars-row svg { width: 14px; height: 14px; }
.shop-card-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
  font-weight: 500;
  flex: 1;
}
.shop-card-meta {
  display: flex; gap: 8px;
  margin: 4px 0 6px;
  flex-wrap: wrap;
}
.shop-card-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.shop-card-tag.npk { background: var(--gold-soft); color: var(--gold-deep); }
.shop-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.shop-card-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
}
.shop-card-price .unit {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  margin-left: 2px;
}
.shop-card-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--paper);
  display: grid; place-items: center;
  transition: all 0.2s ease;
}
.shop-card-add:hover { background: var(--gold); color: var(--green-ink); transform: scale(1.08); }
.shop-card-add svg { width: 18px; height: 18px; }

/* List view */
.shop-products.list .shop-card {
  flex-direction: row;
}
.shop-products.list .shop-card-img { width: 240px; flex-shrink: 0; aspect-ratio: 1; }
.shop-products.list .shop-card-body { padding: 24px 28px; }

/* Pagination */
.shop-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.sp-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  background: var(--white);
  display: grid; place-items: center;
}
.sp-btn:hover { border-color: var(--green-deep); color: var(--green-deep); }
.sp-btn.active { background: var(--green-ink); color: var(--paper); border-color: var(--green-ink); }
.sp-btn svg { width: 16px; height: 16px; }

@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .shop-head-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .shop-products { grid-template-columns: 1fr; }
  .shop-stats { grid-template-columns: 1fr; }
}

/* ===================================== */
/* ===== PDP (Product Detail Page) ===== */
/* ===================================== */

.pdp { padding: 32px 0 80px; }

.pdp-main {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.pdp-thumbs {
  display: flex; flex-direction: column; gap: 10px;
}
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 4px;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.pdp-thumb.active { border-color: var(--green-deep); transform: scale(1.02); }
.pdp-thumb:hover { border-color: var(--green-deep); }

.pdp-main-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pdp-main-img-inner {
  width: 100%; height: 100%;
}
.pdp-main-img-inner img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.pdp-img-badge {
  position: absolute; top: 20px; left: 20px;
  display: flex; gap: 8px;
}
.pdp-img-badge .shop-badge { padding: 7px 12px; font-size: 11.5px; }
.pdp-img-zoom {
  position: absolute; bottom: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-ink);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Stacked gallery variant */
.pdp-gallery.stacked {
  grid-template-columns: 1fr;
  position: sticky;
  top: 96px;
}
.pdp-gallery.stacked .pdp-thumbs {
  flex-direction: row;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pdp-gallery.stacked .pdp-thumb {
  border-radius: 10px;
}

/* Buy box */
.pdp-buybox {
  display: flex; flex-direction: column; gap: 18px;
}
.pdp-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  display: flex; align-items: center; gap: 10px;
}
.pdp-line .pdp-line-bar { width: 24px; height: 2px; background: var(--gold-deep); }
.pdp-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--green-ink);
  margin: 0;
}
.pdp-tagline {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.pdp-rating-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pdp-rating-row .stars-row svg { width: 18px; height: 18px; }
.pdp-rating-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
}
.pdp-rating-count {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
}
.pdp-trust-mini {
  margin-left: auto;
  display: flex; gap: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
}
.pdp-trust-mini svg { width: 14px; height: 14px; color: var(--green-deep); margin-right: 4px; }
.pdp-trust-mini span { display: inline-flex; align-items: center; }

/* Price */
.pdp-price-row {
  display: flex; align-items: end; gap: 12px;
}
.pdp-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green-ink);
  line-height: 1;
}
.pdp-price-old {
  text-decoration: line-through;
  font-size: 20px;
  color: var(--ink-3);
  font-weight: 600;
}
.pdp-save-badge {
  background: #F6E0DC; color: #B33A2A;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pdp-price-vat {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 600;
}

/* Variants */
.pdp-variants { display: flex; flex-direction: column; gap: 12px; }
.pdp-variants-h {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  display: flex; justify-content: space-between;
}
.pdp-variants-h .selected {
  font-weight: 600; color: var(--ink-3);
}
.pdp-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pdp-variant {
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: left;
  transition: all 0.15s ease;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.pdp-variant:hover { border-color: var(--green-deep); }
.pdp-variant.active {
  border-color: var(--green-ink);
  background: var(--green-soft);
}
.pdp-variant-size {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
}
.pdp-variant-cover {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 600;
}
.pdp-variant-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.pdp-variant.active .pdp-variant-price { color: var(--green-deep); }
.pdp-variant .pop {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: var(--green-ink);
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stock */
.pdp-stock {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
}
.pdp-stock-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79,168,118,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 4px rgba(79,168,118,0.2); } 50% { box-shadow: 0 0 0 8px rgba(79,168,118,0.05); } }
.pdp-stock-detail {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}

/* Quantity + add */
.pdp-cart-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.pdp-qty {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.pdp-qty button {
  width: 48px;
  display: grid; place-items: center;
  color: var(--green-ink);
  transition: all 0.15s ease;
}
.pdp-qty button:hover { background: var(--green-soft); }
.pdp-qty button:disabled { color: var(--line); cursor: not-allowed; }
.pdp-qty input {
  width: 48px;
  text-align: center;
  border: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
  background: transparent;
  outline: 0;
}
.pdp-qty svg { width: 18px; height: 18px; }
.pdp-add-cart {
  background: var(--green-ink);
  color: var(--paper);
  border-radius: 14px;
  padding: 0 24px;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.005em;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(14,59,39,0.25);
}
.pdp-add-cart:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(14,59,39,0.35); }
.pdp-add-cart .total {
  margin-left: auto;
  background: rgba(247,244,236,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 13.5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}
.pdp-add-cart svg { width: 18px; height: 18px; }
.pdp-cart-secondary {
  display: flex; gap: 10px;
  margin-top: 4px;
}
.pdp-cart-secondary button, .pdp-cart-secondary a {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.15s ease;
}
.pdp-cart-secondary button:hover, .pdp-cart-secondary a:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.pdp-cart-secondary svg { width: 16px; height: 16px; }

/* Trust badges row */
.pdp-trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
  padding: 16px;
  background: var(--paper-2);
  border-radius: 14px;
}
.pdp-trust-row .pti {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.pdp-trust-row .pti:last-child { border-right: 0; }
.pdp-trust-row svg { width: 22px; height: 22px; color: var(--green-deep); }
.pdp-trust-row .pti-t { font-size: 12.5px; font-weight: 800; color: var(--ink); }
.pdp-trust-row .pti-s { font-size: 10.5px; color: var(--ink-3); font-weight: 600; line-height: 1.3; }

/* Sticky add to cart */
.sticky-cart {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 40px -10px rgba(14,59,39,0.18);
  z-index: 80;
  transition: bottom 0.3s ease;
}
.sticky-cart.show { bottom: 0; }
.sticky-cart-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 48px;
  display: flex; align-items: center; gap: 20px;
}
.sticky-cart-img {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--paper-2);
  overflow: hidden;
  flex-shrink: 0;
}
.sticky-cart-img img { width: 100%; height: 100%; object-fit: cover; }
.sticky-cart-info { flex: 1; }
.sticky-cart-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.02em; }
.sticky-cart-price { font-size: 13px; color: var(--ink-2); font-weight: 600; }
.sticky-cart .pdp-qty { height: 46px; }
.sticky-cart .pdp-add-cart { height: 46px; min-width: 200px; }

/* Section base for PDP */
.pdp-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.pdp-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green-ink);
  margin: 0 0 12px;
}
.pdp-section h2 .accent { color: var(--gold-deep); font-style: italic; }
.pdp-section .lead {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 620px;
  font-weight: 500;
}

/* Key benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-ink));
  color: var(--gold);
  display: grid; place-items: center;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.benefit-p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; font-weight: 500; }
.benefit .pct {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: -0.03em;
  font-style: italic;
}

/* How to use */
.usage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usage-step {
  padding: 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.usage-step:last-child { border-right: 0; }
.usage-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.usage-illu {
  margin: 14px 0 18px;
  aspect-ratio: 4/3;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px;
}
.usage-illu svg { width: 100%; height: 100%; }
.usage-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.usage-p { font-size: 13.5px; color: var(--ink-2); margin: 0 0 10px; line-height: 1.45; font-weight: 500; }
.usage-tip {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.usage-tip svg { width: 14px; height: 14px; }

/* Ingredients + NPK */
.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ing-card, .npk-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.ing-card h3, .npk-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.ing-sub, .npk-sub {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ing-list { display: flex; flex-direction: column; gap: 10px; }
.ing-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.ing-row:last-child { border-bottom: 0; }
.ing-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-light);
}
.ing-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.ing-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 4px 9px;
  border-radius: 6px;
}

/* NPK */
.npk-bars { display: flex; flex-direction: column; gap: 16px; }
.npk-bar { }
.npk-row { display: flex; justify-content: space-between; align-items: end; margin-bottom: 8px; }
.npk-letter {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.npk-letter.n { color: #2A7A52; }
.npk-letter.p { color: #C9A961; }
.npk-letter.k { color: #6F756F; }
.npk-letter.m { color: #4FA876; }
.npk-name { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-left: 8px; }
.npk-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 800;
  color: var(--green-ink);
}
.npk-track { height: 10px; background: var(--paper-2); border-radius: 100px; overflow: hidden; }
.npk-fill { height: 100%; border-radius: 100px; transition: width 0.6s cubic-bezier(.4,0,.2,1); }
.npk-fill.n { background: linear-gradient(90deg, #4FA876, #2A7A52); }
.npk-fill.p { background: linear-gradient(90deg, #E8DCC2, #C9A961); }
.npk-fill.k { background: linear-gradient(90deg, #B0B5B0, #6F756F); }
.npk-fill.m { background: linear-gradient(90deg, #6BAA75, #4FA876); }
.npk-foot {
  margin-top: 22px;
  padding: 16px;
  background: var(--paper);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex; gap: 10px;
}
.npk-foot svg { width: 16px; height: 16px; color: var(--green-deep); flex-shrink: 0; margin-top: 2px; }

/* Recommended for */
.rec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.rec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.rec-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.rec-icon svg { width: 18px; height: 18px; }
.rec-h { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.01em; margin: 0; }
.rec-p { font-size: 12.5px; color: var(--ink-2); margin: 0; line-height: 1.4; font-weight: 500; }

/* Reviews */
.reviews-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 32px;
  align-items: center;
}
.rs-avg {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.rs-avg-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green-ink);
}
.rs-avg-num small { font-size: 24px; color: var(--ink-3); font-weight: 600; }
.rs-avg .stars-row { justify-content: center; margin: 8px 0; }
.rs-avg .stars-row svg { width: 18px; height: 18px; }
.rs-avg-count { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.rs-bars-pdp { display: flex; flex-direction: column; gap: 6px; }
.rs-bar-pdp {
  display: grid;
  grid-template-columns: 32px 1fr 40px;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
}
.rs-bar-pdp-label { font-weight: 700; color: var(--ink-2); display: flex; align-items: center; gap: 4px; }
.rs-bar-pdp-label svg { width: 11px; height: 11px; color: var(--gold); }
.rs-bar-pdp-track { height: 8px; background: var(--paper-2); border-radius: 100px; overflow: hidden; }
.rs-bar-pdp-fill { height: 100%; background: var(--gold); border-radius: 100px; }
.rs-bar-pdp-num { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--ink-3); text-align: right; }

.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.rv-head {
  display: flex; align-items: center; gap: 12px;
}
.rv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.rv-name { font-weight: 800; font-size: 14px; color: var(--ink); }
.rv-meta { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.rv-date { font-size: 11.5px; color: var(--ink-3); margin-left: auto; font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.rv-stars { color: var(--gold); }
.rv-stars svg { width: 14px; height: 14px; }
.rv-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--green-ink);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.rv-body { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0; font-weight: 500; }
.rv-photos { display: flex; gap: 6px; }
.rv-photo {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
}
.rv-photo img { width: 100%; height: 100%; object-fit: cover; }
.rv-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 800; color: var(--green-deep);
  background: var(--green-soft);
  padding: 3px 8px; border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
}
.rv-verified svg { width: 11px; height: 11px; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item.open { border-color: var(--green-deep); box-shadow: 0 8px 24px -10px rgba(14,59,39,0.18); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-ink);
  letter-spacing: -0.015em;
  gap: 16px;
}
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faq-item.open .faq-toggle { background: var(--green-deep); color: var(--paper); transform: rotate(45deg); }
.faq-toggle svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 500;
}
.faq-aside {
  background: var(--green-ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.faq-aside h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.faq-aside p { color: rgba(247,244,236,0.8); font-size: 14px; margin: 0 0 18px; font-weight: 500; }
.faq-aside .btn { width: 100%; justify-content: center; }

/* Pairs well with */
.pairs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Footer/CTA strip area */
.pdp-cta-band {
  background: linear-gradient(135deg, var(--green-ink) 0%, var(--green-deep) 100%);
  color: var(--paper);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.pdp-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,169,97,0.15) 0%, transparent 60%);
}
.pdp-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative;
}
.pdp-cta-inner h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
  color: var(--paper);
}
.pdp-cta-inner h3 .accent { color: var(--gold); font-style: italic; }
.pdp-cta-inner p { color: rgba(247,244,236,0.78); margin: 0; font-size: 14.5px; font-weight: 500; }

@media (max-width: 1100px) {
  .pdp-main { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .usage { grid-template-columns: 1fr 1fr; }
  .usage-step:nth-child(2) { border-right: 0; }
  .usage-step:nth-child(1), .usage-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ing-grid { grid-template-columns: 1fr; }
  .reviews-summary { grid-template-columns: 1fr; }
  .rs-avg { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 24px; }
  .review-list { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pairs-grid { grid-template-columns: repeat(2, 1fr); }
  .rec-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .usage { grid-template-columns: 1fr; }
  .usage-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .usage-step:last-child { border-bottom: 0; }
  .review-list { grid-template-columns: 1fr; }
  .pairs-grid { grid-template-columns: 1fr; }
  .rec-strip { grid-template-columns: 1fr; }
  .pdp-cta-inner { flex-direction: column; align-items: flex-start; }
}
