/* =========================================================
   PETER WELCH'S GYM SHOP — blends with peterwelchsgym.com
   Brand: black + white + green shamrock #108839 (site Join green)
   Logo: official shamrock fist + wordmark
   ========================================================= */

:root {
  --c-green: #108839;
  --c-green-dark: #0c6b2d;
  --c-green-soft: rgba(16, 136, 57, 0.12);
  --c-black: #0d0d0d;
  --c-ink: #1d1d1d;
  --c-body: #333;
  --c-muted: #666;
  --c-line: #e4e4e4;
  --c-bg: #f7f7f7;
  --c-white: #fff;
  --c-utility: #747877;
  --font-display: 'Barlow Condensed', Impact, sans-serif;
  --font-body: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r: 4px;
  --max: 1120px;
  --header-h: 76px;
  --utility-h: 36px;
  --trans: 160ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

/* Persistent mockup reminder */
.mockup-banner {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #1a1200;
  color: #f5e6b8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 16px;
  text-align: center;
  border-bottom: 2px solid #c9a227;
  line-height: 1.4;
}
.mockup-banner strong {
  color: #ffd666;
  letter-spacing: 0.06em;
}
.mockup-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 6px;
  white-space: nowrap;
}
.research-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-green);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--c-muted);
}
.research-note a { color: var(--c-green-dark); font-weight: 700; text-decoration: underline; }
.shop-hero .lead em { font-style: italic; color: var(--c-ink); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Utility bar — match live WP #747877 */
.utility-bar {
  background: var(--c-utility);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  min-height: var(--utility-h);
}
.utility-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  align-items: center;
}
.utility-bar a:hover { text-decoration: underline; }
.utility-right { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; opacity: 0.95; }
.utility-sep { opacity: 0.5; }

/* Header — black like logo plate; fixed under utility */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 4px;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d0d0d0;
  padding: 8px 10px;
  border-radius: var(--r);
  transition: color var(--trans), background var(--trans);
}
.nav-link:hover,
.nav-link.is-active { color: #fff; }
.nav-link.is-active { box-shadow: inset 0 -2px 0 var(--c-green); }
.nav-link--join {
  background: var(--c-green);
  color: #fff !important;
  margin-left: 6px;
}
.nav-link--join:hover { background: var(--c-green-dark); }
.cart-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cart-toggle-btn:hover { border-color: var(--c-green); }
.cart-count {
  background: var(--c-green);
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.nav-burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* Brand-proof strip — show Peter it matches his site */
.brand-proof {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  padding: 32px 0 36px;
}
.brand-proof-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.brand-proof h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.brand-proof-copy > p { color: var(--c-muted); margin-bottom: 14px; max-width: 48ch; }
.brand-match-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-match-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-body);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 10px 12px;
}
.brand-match-list img { height: 22px; width: auto; }
.brand-match-list code {
  font-size: 0.8rem;
  background: #eee;
  padding: 1px 6px;
  border-radius: 3px;
}
.swatch {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.12);
}
.swatch-green { background: var(--c-green); }
.swatch-black { background: var(--c-black); }

.browser-frame {
  border: 1px solid var(--c-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  background: #fff;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #e8e8e8;
  border-bottom: 1px solid #ddd;
}
.browser-chrome .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}
.browser-chrome .dot:nth-child(1) { background: #ff5f57; }
.browser-chrome .dot:nth-child(2) { background: #febc2e; }
.browser-chrome .dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  background: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #555;
}
.browser-url strong { color: var(--c-green); }
.browser-mini-util {
  background: var(--c-utility);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 6px 10px;
  text-align: right;
}
.browser-mini-header {
  background: var(--c-black);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #ccc;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.browser-mini-header img { height: 32px; width: auto; }
.browser-mini-header em {
  color: #fff;
  font-style: normal;
  border-bottom: 2px solid var(--c-green);
  padding-bottom: 1px;
}
.browser-mini-hero {
  position: relative;
  min-height: 140px;
  background: #111;
}
.browser-site-hero {
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.55;
}
.browser-mini-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
.browser-overlay-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Native WP-style page banner */
.page-banner {
  position: relative;
  min-height: 220px;
  max-height: 320px;
  overflow: hidden;
  background: #111;
}
.page-banner-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%);
  padding: 28px 0 32px;
}
.page-banner-copy { color: #fff; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cfcfcf;
  margin-bottom: 8px;
}
.breadcrumb a:hover { color: #fff; }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.page-banner-copy > p {
  color: #d8d8d8;
  font-size: 1rem;
}

.intro-band {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  padding: 36px 0;
}
.intro-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: flex-end;
  justify-content: space-between;
}
.intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  text-transform: uppercase;
  color: var(--c-ink);
  margin: 6px 0 10px;
}
.intro-band .lead {
  color: var(--c-muted);
  max-width: 52ch;
}
.intro-cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 10px;
}
.eyebrow-logo {
  height: 20px;
  width: auto;
  background: #0d0d0d;
  border-radius: 3px;
  padding: 2px 4px;
}

.cta-join {
  background: var(--c-black);
  color: #ccc;
  padding: 40px 0;
}
.cta-join-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cta-join h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.cta-join p { color: #a8a8a8; }

.logo-bar-dot { opacity: 0.4; }

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  padding: 14px 20px;
  background: var(--c-black);
  color: #a1a1a1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo-bar img { height: 36px; width: auto; }

/* Buttons — green = site Join Now energy */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--r);
  transition: background var(--trans), transform var(--trans);
}
.btn-primary:hover { background: var(--c-green-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  color: var(--c-ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--r);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--c-ink); }
.btn-block { width: 100%; margin-top: 8px; }

/* Sections */
.section { padding: 48px 0; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-end;
}
.section-desc {
  max-width: 40ch;
  color: var(--c-muted);
  font-size: 0.95rem;
}
.section-desc strong { color: var(--c-ink); }

.audience { background: var(--c-white); border-bottom: 1px solid var(--c-line); }
.audience-grid,
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.audience-card,
.channel-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 20px;
}
.audience-card h3,
.channel-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.channel-num {
  display: block;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--c-green);
  margin-bottom: 6px;
}

/* Products */
#storefront { background: var(--c-bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.product-card:hover {
  border-color: #cfcfcf;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.product-card__rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--c-green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
}
.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #111;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__logo-chip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(16, 136, 57, 0.55);
  border-radius: 4px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 20px);
}
.product-card__logo-chip img { height: 28px; width: auto; flex-shrink: 0; }
.product-card__logo-chip span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fd9a8;
  white-space: nowrap;
}
.product-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.product-card__story {
  font-size: 0.9rem;
  color: var(--c-muted);
  flex: 1;
  margin-bottom: 12px;
}
.product-card__price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-ink);
}
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 10px;
}
.size-btn {
  min-width: 40px;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-body);
  background: #fff;
}
.size-btn--active,
.size-btn:hover {
  border-color: var(--c-green);
  color: var(--c-green);
  background: var(--c-green-soft);
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.btn-add-to-cart {
  background: var(--c-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 8px;
  border-radius: var(--r);
}
.btn-add-to-cart:hover { background: var(--c-green-dark); }
.btn-buy-now {
  border: 1px solid var(--c-line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 8px;
  border-radius: var(--r);
  background: #fff;
}
.btn-buy-now:hover { border-color: var(--c-ink); }

/* Story + video */
.story { background: #fff; border-top: 1px solid var(--c-line); }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.story-copy p { color: var(--c-muted); margin-bottom: 12px; max-width: 46ch; }
.story-copy .btn-primary { margin-top: 8px; }
.story-photo {
  margin: 0;
  max-width: 360px;
  justify-self: end;
}
.story-photo img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  object-fit: cover;
  max-height: 480px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.story-photo figcaption {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.channels { background: var(--c-bg); border-top: 1px solid var(--c-line); }
/* Offer: GBP, schema, Shopping, Amazon */
.offer {
  background: var(--c-black);
  color: #d0d0d0;
  border-top: 1px solid #222;
}
.offer .eyebrow { color: #8fd9a8; }
.offer h2 {
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.offer-lead {
  max-width: 58ch;
  margin-bottom: 22px;
  color: #a8a8a8;
}
.offer-lead strong { color: #fff; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.offer-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 18px 18px 20px;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 6px 0 8px;
}
.offer-card p { font-size: 0.92rem; line-height: 1.5; color: #b0b0b0; }
.offer-card strong { color: #e8e8e8; }
.offer-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d0d0d;
  background: var(--c-green);
  padding: 3px 8px;
  border-radius: 3px;
}
.offer-phases {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.offer-phases h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.offer-phases ol {
  margin: 0 0 0 1.2rem;
  color: #c8c8c8;
  font-size: 0.95rem;
}
.offer-phases li { margin-bottom: 6px; }
.offer-phases strong { color: #fff; }
.offer-deal {
  background: #121a14;
  border: 1px solid rgba(16, 136, 57, 0.45);
  border-radius: 8px;
  padding: 18px;
}
.offer-deal ul { margin: 0; padding-left: 1.1rem; color: #c8c8c8; }
.offer-deal li { margin-bottom: 6px; }
.offer-deal .muted { color: #8a8a8a; font-size: 0.85rem; margin-top: 12px; }
@media (max-width: 800px) {
  .offer-phases { grid-template-columns: 1fr; }
}

.pickup { padding-bottom: 56px; }
.pickup-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-green);
  border-radius: 8px;
  padding: 24px;
}
.pickup-box h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.pickup-box .muted { color: var(--c-muted); font-size: 0.9rem; margin-top: 4px; }
.pickup-box a[href^="tel"] { color: var(--c-green); font-weight: 700; }

/* Cart — light drawer so it doesn't feel like a different site */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100dvh;
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  border-left: 1px solid var(--c-line);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-black);
  color: #fff;
}
.cart-brand { display: flex; align-items: center; gap: 10px; }
.cart-brand img { height: 28px; width: auto; }
.cart-brand h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.cart-items { flex: 1; overflow: auto; padding: 14px 16px; }
.cart-empty-msg { color: var(--c-muted); padding: 20px 0; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
}
.cart-item__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  background: #111;
}
.cart-item__name { font-weight: 700; color: var(--c-ink); font-size: 0.92rem; }
.cart-item__size { font-size: 0.78rem; color: var(--c-muted); margin: 2px 0 6px; }
.cart-item__actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.cart-item__qty-btn,
.cart-item__remove {
  border: 1px solid var(--c-line);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 0.78rem;
  color: var(--c-muted);
}
.cart-item__price { font-weight: 800; color: var(--c-ink); }
.cart-footer {
  padding: 14px 16px 20px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.cart-note { font-size: 0.75rem; color: var(--c-muted); margin-bottom: 10px; }
.cart-note code { color: var(--c-green-dark); }
.fulfill-fieldset {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 10px 12px 12px;
  margin: 0 0 12px;
}
.fulfill-fieldset legend {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-green);
  padding: 0 4px;
}
.fulfill-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 4px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.fulfill-option:last-child { border-bottom: 0; }
.fulfill-option input { margin-top: 3px; accent-color: var(--c-green); }
.fulfill-option small { color: var(--c-muted); font-size: 0.78rem; }

/* Footer — black like site logo plate */
.site-footer {
  background: var(--c-black);
  color: #a1a1a1;
  padding: 40px 20px 28px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 10px; }
.footer-address { font-size: 0.85rem; line-height: 1.6; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d0d0d0;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  font-size: 0.72rem;
  color: #666;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background: var(--c-black);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  border-left: 3px solid var(--c-green);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  max-width: min(90vw, 420px);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .brand-proof-inner,
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { justify-self: stretch; max-width: 100%; }
  .nav-burger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--c-black);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-link { padding: 12px; }
  .header-inner { position: relative; }
}
@media (max-width: 520px) {
  .product-actions { grid-template-columns: 1fr; }
  .brand-logo-img { height: 44px; }
}


/* ===== STRONGER VISUAL POLISH v3 ===== */
body.pwg-shop {
  background: #fafafa;
}
.site-header {
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.page-banner {
  min-height: 280px;
  max-height: 380px;
}
.page-banner-img {
  min-height: 280px;
  max-height: 380px;
  transform: scale(1.02);
}
.page-banner-copy h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.intro-band {
  background: linear-gradient(180deg, #fff 0%, #f3f7f4 100%);
}
.products-grid {
  gap: 22px;
}
.product-card {
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
  border-color: #cfe8d7;
}
.product-card__media {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}
.product-card__name {
  font-size: 1.45rem;
}
.btn-primary {
  box-shadow: 0 4px 14px rgba(16,136,57,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(16,136,57,0.45);
}
.logo-bar {
  background: #0d0d0d;
  gap: 20px 36px;
  padding: 16px 20px;
}
.logo-bar span {
  color: #c8c8c8;
}
.channel-card,
.audience-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.story-photo img {
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.pickup-box {
  box-shadow: 0 8px 28px rgba(16,136,57,0.08);
}
.footer-brand a[href^="tel"] {
  color: #8fd9a8;
}
/* ensure products show even if JS slow - min height */
#products-grid:empty::before {
  content: "Loading gear…";
  display: block;
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: #666;
  font-weight: 600;
}
