/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px 4px;
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .current { color: var(--ink); }

/* ---------- Product hero ---------- */
.product-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: 14px; }
.gallery-main {
  height: 580px;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f1ea;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.thumb {
  height: 110px;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  background: #f6f1ea;
}
.thumb-tier {
  border: 2px solid transparent;
  padding: 0;
  transition: border-color 0.18s ease;
}
.thumb-tier.active {
  border-color: var(--ink, #1a1a1a);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.gallery-note {
  display: none; /* Moved to checkout flow */
  margin: 14px 2px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2, #6b665e);
  letter-spacing: 0.01em;
}
.gallery-note strong {
  font-weight: 600;
  font-style: normal;
  color: var(--ink, #1a1a1a);
  letter-spacing: 0.04em;
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: var(--sans, inherit);
}

/* Info column */
.product-info .eyebrow {
  display: none; /* Hidden — already shown in breadcrumb */
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.product-info h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.product-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 22px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 22px;
}
.price {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.04em;
}
.price-note {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 480px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 600;
}

/* Purchase band — full-width centered section below product-hero */
.purchase-band {
  background: var(--bg-soft, #f6f1ea);
  padding: 24px 24px;
  border-top: 1px solid var(--line, #e6dfd5);
  border-bottom: 1px solid var(--line, #e6dfd5);
}
.purchase-band-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.purchase-band .tier-section { margin-bottom: 0; }
.purchase-band .section-label { text-align: center; }

/* Bottom CTA — Add to cart at the bottom of the page */
.bottom-cta {
  background: var(--bg-soft, #f6f1ea);
  padding: 32px 24px 40px;
  border-top: 1px solid var(--line, #e6dfd5);
  border-bottom: 1px solid var(--line, #e6dfd5);
  text-align: center;
}
.bottom-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}
.bottom-cta-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 600;
}
.bottom-cta .cta-row {
  display: flex;
  justify-content: center;
  margin: 0;
}
.bottom-cta .btn-add-cart {
  width: 100%;
}

/* Trust list under photo (in product-gallery) */
.gallery-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 18px;
  padding: 12px 0 0;
  margin: 0;
  list-style: none;
  font-size: 12px;
  color: var(--muted, #6b665e);
  text-align: center;
}
.gallery-trust-list li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  white-space: nowrap;
}

/* Tier selector */
.tier-section { margin-bottom: 28px; }
.tier-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.tier-btn {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s;
}
.tier-btn:hover { border-color: var(--ink); }
.tier-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tier-name {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.tier-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.tier-btn.active .tier-meta { color: #cfcfcf; }
.tier-sub {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: none;
  font-style: italic;
  margin-top: 2px;
}
.tier-btn.active .tier-sub { color: #b6b0a6; }
.tier-price {
  font-family: var(--display);
  font-size: 18px;
  margin-top: 4px;
}
/* Slot tier pill — small badge inside slot label showing required tier */
.slot-tier-pill {
  display: inline-block;
  padding: 1px 6px;
  margin-left: 6px;
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 2px;
  vertical-align: middle;
}
.slot-tier-pill.std  { background: #efeae0; color: #5b5247; }
.slot-tier-pill.prem { background: #b89968; color: #fff; }

/* CTA */
.cta-row { margin-bottom: 22px; }
.btn-add-cart {
  width: 100%;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 12px;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}
.trust-list li::first-letter { color: var(--gold); }

/* ---------- Slots ---------- */
.slots-section {
  background: var(--bg-card);
  padding: 70px 32px 90px;
}
.slots-header {
  max-width: 1280px;
  margin: 0 auto 36px;
  text-align: center;
}
.slots-header h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.22em;
  margin: 0 0 10px;
}
.slots-header h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}
.slots-header p {
  color: var(--muted);
  font-size: 13px;
  margin: 14px 0 0;
}

.slots-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.slot-card {
  background: #fff;
  border: 1px solid var(--gold);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.slot-card:hover {
  border-color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.slot-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slot-num {
  background: var(--bg-soft);
  color: var(--ink);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0;
}

.slot-product-name {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  min-height: 36px;
}
.slot-product-size {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.slot-img {
  height: 140px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slot-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.img-fallback {
  display: none;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  padding: 0 12px;
  line-height: 1.4;
}
.slot-img.no-img .img-fallback {
  display: block;
}

.slot-swap-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 9px 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s;
}
.slot-swap-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* Empty slot state for Build Your Own */
.slot-card.empty {
  background: var(--bg-soft);
  border: 1px dashed var(--gold);
  justify-content: space-between;
}
.slot-add-btn {
  flex: 1;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  min-height: 200px;
  transition: color 0.15s;
}
.slot-add-btn:hover { color: var(--ink); }
.plus-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
}

/* Upcharge badges */
.up-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 2px;
  vertical-align: middle;
}
.up-included {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-left: 6px;
  vertical-align: middle;
}

/* Disabled CTA */
.btn-add-cart:disabled {
  background: #aaa;
  cursor: not-allowed;
}
.btn-add-cart:disabled:hover { background: #aaa; }

/* ---------- Swap drawer ---------- */
.swap-overlay[hidden] { display: none; }
.swap-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  animation: fade 0.2s ease;
}
@keyframes fade { from {opacity:0} to {opacity:1} }
.swap-drawer {
  width: 560px;
  max-width: 100%;
  height: 92vh;
  max-height: 92vh;
  background: var(--bg);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: pop 0.2s ease;
}
@keyframes pop { from {transform: scale(0.96); opacity: 0} to {transform: scale(1); opacity: 1} }

.swap-head {
  padding: 12px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.swap-head h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 2px 0 0;
}
.swap-head .eyebrow {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin: 0;
}
.swap-close {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 0 4px;
}

.swap-search {
  padding: 8px 20px;
  border-bottom: 1px solid var(--line);
}
.swap-search input {
  width: 100%;
  padding: 7px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s;
}
.swap-search input:focus { border-color: var(--ink); }

.swap-cat-tabs {
  display: flex;
  gap: 5px;
  padding: 8px 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.swap-cat-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.swap-cat-tabs button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.swap-options {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  flex: 1;
}
.swap-no-results {
  padding: 32px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

/* Section headers within picker drawer */
.section-header {
  list-style: none;
  padding: 18px 28px 8px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.cat-divider {
  list-style: none;
  padding: 22px 28px 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  background: #fff;
  border-top: 2px solid var(--gold);
  margin-top: 8px;
}
.cat-divider:first-child { margin-top: 0; }

/* Chocolate-organized tab: brand → flavour → items */
.brand-header {
  list-style: none;
  padding: 8px 20px 0;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink, #1a1a1a);
  border-top: 1px solid var(--line, #e5dfd2);
  margin-top: 0;
  background: var(--bg-soft, #fafaf7);
}
.brand-header:first-child { border-top: 0; }
.flavour-header {
  list-style: none;
  padding: 5px 20px 2px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted, #8a8278);
  font-weight: 500;
}
.tier-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 600;
  margin-right: 6px;
}
.tier-pill.tier-mini { background: #e8f1f8; color: #4a6b85; }
.tier-pill.tier-std  { background: #f6f1ea; color: #1a1a1a; }
.tier-pill.tier-prem { background: #efe6d6; color: #8a6a1f; }
.tier-pill.tier-dlx  { background: #1a1a1a; color: #f6f1ea; }

/* Step 1: brand list (no photos, just names) */
.choc-brand-row {
  list-style: none;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line, #e5dfd2);
  cursor: pointer;
  transition: background 0.15s ease;
}
.choc-brand-row:hover { background: var(--bg-soft, #fafaf7); }
.choc-brand-name {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink, #1a1a1a);
}
.choc-brand-meta {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted, #8a8278);
}
.choc-brand-meta span { font-size: 14px; margin-left: 6px; }

/* Step 2: back-to-brands row — sticky to the top of the scrollable list */
.choc-back-row {
  list-style: none;
  padding: 8px 20px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink, #1a1a1a);
  border-bottom: 1px solid var(--line, #e5dfd2);
  cursor: pointer;
  background: var(--bg-soft, #fafaf7);
  position: sticky;
  top: 0;
  z-index: 5;
}
.choc-back-row:hover { color: var(--gold, #b89968); }

/* SPECIALTY BRANDS divider in the brand list */
.specialty-divider {
  list-style: none;
  padding: 18px 20px 6px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #8a8278);
  background: var(--bg-soft, #fafaf7);
  border-top: 1px solid var(--line, #e5dfd2);
  border-bottom: 1px solid var(--line, #e5dfd2);
  margin-top: 6px;
}

/* SECTION divider (used in beverages — SODA, ENERGY DRINKS, etc.) */
.section-divider {
  list-style: none;
  padding: 14px 20px 6px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink, #2a2620);
  background: var(--bg-soft, #fafaf7);
  border-top: 1px solid var(--line, #e5dfd2);
}
.section-divider:first-of-type { border-top: 0; }

/* Tier-filter tabs (Standard / Premium / Deluxe) inside the items view */
.tier-tabs-row {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 2px 20px 4px;
  border-bottom: 1px solid var(--line, #e5dfd2);
  background: #fff;
  position: sticky;
  top: 34px;
  z-index: 4;
}
/* Flat-view variant (e.g. candy picker): no back-row above, so stick at top:0 */
.tier-tabs-row.tier-tabs-flush { top: 0; padding-top: 0; }
.tier-tab {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line, #e5dfd2);
  padding: 4px 10px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #8a8278);
  cursor: pointer;
  transition: all 0.15s;
}
.tier-tab.active {
  background: var(--ink, #1a1a1a);
  border-color: var(--ink, #1a1a1a);
  color: #fff;
}

/* Inline cross-tier teaser ("Premium 100g +$3 available") */
.size-teaser {
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted, #8a8278);
  font-style: italic;
}
.swap-option {
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.12s;
}
.swap-option:hover { background: var(--bg-soft); }
.swap-option.active { background: var(--bg-card); }
.swap-option-thumb {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.swap-option-thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.swap-overlay .swap-option-thumb img { cursor: zoom-in; }

.img-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.img-lightbox[hidden] { display: none; }
.img-lightbox img {
  max-width: min(640px, 90vw);
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.swap-option-info { flex: 1; }
.swap-option-name {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.swap-option-size {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.swap-option-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  flex: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
}
.swap-option.active .swap-option-check {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ---------- Responsive ---------- */

/* Medium-large (tablet landscape, half-screen desktop) — KEEP 2-COL */
@media (max-width: 1100px) {
  .product-hero { grid-template-columns: 1fr 1.2fr; gap: 28px; padding: 24px 24px 48px; }
  .gallery-main { height: 380px; }
  .gallery-note { font-size: 11px; line-height: 1.45; margin-top: 10px; }
  .gallery-note strong { font-size: 9px; }
  .product-info h1 { font-size: clamp(26px, 3vw, 36px); }
  .product-info .eyebrow { font-size: 10px; }
  .product-tagline { font-size: 15px; line-height: 1.55; }
  .price-display .price { font-size: 26px; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
  .slot-card { padding: 14px; gap: 10px; }
  .slot-img { height: 120px; }
  /* Tier badges shrink but stay in a row */
  .tier-options { gap: 8px; }
  .tier-btn { padding: 12px 10px; }
  .tier-name { font-size: 11px; letter-spacing: 0.12em; }
  .tier-meta { font-size: 9px; letter-spacing: 0.1em; }
  .tier-price { font-size: 16px; margin-top: 2px; }
}

/* Half-screen desktop (~700-960px) — STILL 2-COL with smaller gallery */
@media (max-width: 960px) {
  .product-hero { grid-template-columns: 1fr 1.3fr; gap: 20px; padding: 18px 18px 36px; }
  .gallery-main { height: 280px; }
  .gallery-note { font-size: 10px; }
  .product-info h1 { font-size: clamp(22px, 2.8vw, 30px); }
  .product-tagline { font-size: 13px; line-height: 1.5; }
  .price-display .price { font-size: 22px; }
  .price-display { padding: 12px 0; margin-bottom: 16px; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); padding: 0 20px; }
  .slots-section { padding: 40px 0; }
  .swap-drawer { width: 100vw; }
  /* Tier badges in 3 columns, tighter */
  .tier-options { gap: 6px; }
  .tier-btn { padding: 10px 8px; }
  .tier-name { font-size: 10px; letter-spacing: 0.08em; }
  .tier-meta { font-size: 9px; letter-spacing: 0.06em; }
  .tier-price { font-size: 15px; margin-top: 2px; }
}

/* Narrow tablet portrait (~600-720px) — STILL 2-COL hero, 3-COL slots */
@media (max-width: 720px) {
  .breadcrumb { padding: 14px 18px 4px; font-size: 10px; }
  .product-hero { grid-template-columns: 1fr 1.3fr; padding: 14px 16px 32px; gap: 16px; }
  .gallery-main { height: 240px; }
  .gallery-note { font-size: 9px; line-height: 1.35; margin-top: 8px; }
  .gallery-note strong { font-size: 8px; }
  .product-info h1 { font-size: 22px; }
  .product-info .eyebrow { font-size: 9px; letter-spacing: 0.18em; }
  .product-tagline { font-size: 12px; line-height: 1.5; }
  .price-display .price { font-size: 20px; }
  .product-desc { font-size: 12px; line-height: 1.5; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); padding: 0 14px; gap: 10px; }
  .slot-card { padding: 10px; gap: 8px; }
  .slot-label { font-size: 8px; letter-spacing: 0.08em; }
  .slot-num { width: 18px; height: 18px; font-size: 9px; }
  .slot-img { height: 90px; }
  .slot-product-name { font-size: 11px; min-height: 32px; line-height: 1.3; }
  .slot-product-size { font-size: 9px; }
  .slot-swap-btn { font-size: 9px; padding: 8px; letter-spacing: 0.06em; }
  .btn-primary, .btn-add-cart { font-size: 12px; padding: 12px 18px; }
  /* Tier badges still 3-col */
  .tier-btn { padding: 8px 6px; }
  .tier-name { font-size: 9px; letter-spacing: 0.06em; }
  .tier-meta { font-size: 8px; }
  .tier-price { font-size: 13px; }
}

/* Phone (<600px) — KEEP photo left + text right, just tiny */
@media (max-width: 600px) {
  body { overflow-x: hidden; }
  .product-hero { grid-template-columns: 1fr 1.4fr; gap: 14px; padding: 12px 12px 24px; }
  .gallery-main { height: 200px; }
  .gallery-note { font-size: 9px; line-height: 1.35; margin-top: 6px; }
  .gallery-note strong { font-size: 8px; }
  .product-info h1 { font-size: 20px; margin-bottom: 6px; line-height: 1.05; }
  .product-info .eyebrow { font-size: 8px; margin-bottom: 6px; letter-spacing: 0.14em; }
  .product-tagline { font-size: 11px; line-height: 1.45; margin-bottom: 12px; }
  .price-display .price { font-size: 18px; }
  .price-display { padding: 8px 0; margin-bottom: 12px; gap: 10px; }
  .price-note { font-size: 9px; letter-spacing: 0.1em; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); padding: 0 12px; gap: 8px; }
  .slot-card { padding: 8px; gap: 6px; }
  .slot-label { font-size: 8px; letter-spacing: 0.06em; }
  .slot-num { width: 16px; height: 16px; font-size: 8px; }
  .slot-img { height: 80px; }
  .slot-product-name { font-size: 10px; min-height: 28px; line-height: 1.3; }
  .slot-product-size { font-size: 9px; }
  .slot-swap-btn { font-size: 9px; padding: 6px 4px; letter-spacing: 0.05em; }

  /* Reduce purchase-band padding on phone */
  .purchase-band { padding: 16px 12px; }

  /* Bottom CTA on phone */
  .bottom-cta { padding: 24px 16px 32px; }
  .bottom-cta-label { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 10px; }

  /* Gallery trust list — smaller below photo */
  .gallery-trust-list { font-size: 9px; gap: 2px 10px; padding-top: 8px; }

  /* Skinny horizontal tier buttons — 3 in a row */
  .tier-section { margin-bottom: 0; }
  .section-label { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 10px; }
  .tier-options { gap: 6px; }
  .tier-btn { padding: 8px 6px; flex-direction: row; align-items: center; justify-content: center; gap: 6px; text-align: center; min-height: 0; flex-wrap: nowrap; min-width: 0; overflow: hidden; }
  .tier-btn .tier-meta { display: inline; }
  .tier-name { font-size: 9px; letter-spacing: 0.04em; line-height: 1; white-space: nowrap; }
  .tier-meta { font-size: 8px; letter-spacing: 0.04em; line-height: 1; white-space: nowrap; }
  .tier-price { font-size: 12px; margin-top: 0; line-height: 1; white-space: nowrap; }

  /* Compact CTA */
  .cta-row { margin-bottom: 0; }
  .btn-primary, .btn-add-cart { font-size: 11px; padding: 14px 16px; letter-spacing: 0.1em; }
}
