/* PITTCH — main.css */

:root {
  --pittch-brown:         #37210B;
  --pittch-cream:         #EFEDE6;
  --pittch-green:         #5e8149;
  --pittch-white:         #ffffff;
  --pittch-bg:            #F5F4F0;
  --pittch-mid:           #6B5A47;
  --pittch-light:         #A89070;
  --pittch-border:        rgba(55,33,11,0.12);
  --pittch-border-strong: rgba(55,33,11,0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--pittch-bg);
  color: var(--pittch-brown);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip; /* clip does not create a scroll container, preserving position:sticky */
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; }
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul,ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input,textarea,select { font-family: inherit; }

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────── */
.nav-utility {
  height: 36px;
  background: var(--pittch-brown);
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}
.nav-utility__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}
.nav-utility__track span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pittch-cream);
  opacity: 0.9;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV WRAPPER ───────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--pittch-cream);
  border: none;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}
.nav-wrapper.is-scrolled { box-shadow: 0 2px 16px rgba(55,33,11,0.1); }
.nav-wrapper.is-hidden   { transform: translateY(-100%); }

/* ── HOME PAGE: transparent nav overlaid on hero ─────────────── */
.home .nav-utility { display: none; }

.home .nav-wrapper {
  background: transparent;
  box-shadow: none;
}
.home .nav-wrapper.is-scrolled {
  background: var(--pittch-cream);
  box-shadow: 0 2px 16px rgba(55,33,11,0.1);
}
.home .nav-wrapper:not(.is-scrolled) .nav-logo           { color: var(--pittch-cream); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.home .nav-wrapper:not(.is-scrolled) .nav-icon-btn       { color: var(--pittch-cream); filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.home .nav-wrapper:not(.is-scrolled) .nav-hamburger span { background: var(--pittch-cream); filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }

/* Sub-nav slides in when nav turns solid (home + single product) */
.home .nav-wrapper:not(.is-scrolled) .nav-subnav,
.single-product .nav-wrapper:not(.is-scrolled) .nav-subnav {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.home .nav-wrapper.is-scrolled .nav-subnav,
.single-product .nav-wrapper.is-scrolled .nav-subnav {
  max-height: 44px;
  opacity: 1;
  pointer-events: auto;
}

/* ── SINGLE PRODUCT: transparent nav (gallery bleeds behind) ─── */
.single-product .nav-utility { display: none; }
.single-product .nav-wrapper { background: transparent; box-shadow: none; }
.single-product .nav-wrapper.is-scrolled {
  background: var(--pittch-cream);
  box-shadow: 0 2px 16px rgba(55,33,11,0.1);
}

/* ── MAIN NAV — ROW 1 ──────────────────────────────────────────── */
.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 24px;
  position: relative;
}

/* Left cluster: hamburger */
.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Logo wrapper — absolute centre of row 1 */
.nav-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pittch-brown);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo-tagline {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.home .nav-wrapper:not(.is-scrolled) .nav-logo-tagline { color: rgba(239,237,230,0.8); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* Right cluster: icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}
.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--pittch-brown);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.nav-icon-btn svg { width: 20px; height: 20px; }
.nav-icon-btn:hover { background: rgba(55,33,11,0.06); }

.bag-count {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 16px; height: 16px;
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  font-size: 9px; font-weight: 700;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

/* Hamburger — always visible (scuffers style) */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px; /* min 44px touch target (WCAG AA) */
  flex-shrink: 0;
  margin-right: 0;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--pittch-brown);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.35s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SUB-NAV — ROW 2 ───────────────────────────────────────────── */
.nav-subnav {
  overflow: hidden;
  max-height: 44px;
  background: var(--pittch-cream);
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}
.nav-subnav-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-subnav-inner::-webkit-scrollbar { display: none; }

.nav-cat-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-cat-item a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 11px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pittch-brown);
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}
.nav-cat-item a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 11px; right: 11px;
  height: 1.5px;
  background: var(--pittch-brown);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-cat-item:hover a::after,
.nav-cat-item.is-mega-active a::after { transform: scaleX(1); }
.nav-cat-item--gift a { color: var(--pittch-green); }
.nav-cat-item--gift a::after { background: var(--pittch-green); }

/* ── MEGA MENUS ────────────────────────────────────────────────── */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--pittch-cream);
  border-top: 2px solid var(--pittch-brown);
  border-bottom: 1px solid var(--pittch-border);
  box-shadow: 0 12px 40px rgba(55,33,11,0.12);
  z-index: 300;
}
.mega-menu.active { display: block; }

.mega-menu-inner {
  display: flex;
  padding: 36px 48px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.mega-menu-left {
  width: 240px; flex-shrink: 0;
  padding-right: 40px;
  border-right: 1px solid var(--pittch-border);
  display: flex; flex-direction: column; gap: 10px;
}
.mega-menu-left h3 { font-family: var(--font-display); font-size: 20px; color: var(--pittch-brown); }
.mega-menu-left p  { font-size: 13px; color: var(--pittch-mid); line-height: 1.5; }
.mega-menu-left a  { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; color: var(--pittch-brown); margin-top: auto; }
.mega-menu-left a:hover { text-decoration: underline; }
.mega-menu-right { flex: 1; display: flex; gap: 20px; }
.mega-menu-card  { flex: 0 0 160px; }
.mega-menu-card a { display: flex; flex-direction: column; gap: 7px; }
.mega-menu-card-img {
  width: 160px; height: 200px;
  border-radius: 4px; overflow: hidden;
  background: #e8e4db;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--pittch-mid); text-align: center; padding: 8px;
  position: relative;
}
.mega-menu-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-menu-card h4 { font-size: 13px; font-weight: 500; color: var(--pittch-brown); }
.mega-menu-card p  { font-size: 12px; color: var(--pittch-mid); }

/* "View all" card — dark tile with remaining count */
.mega-menu-card-img--more {
  background: var(--pittch-brown);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.mega-menu-more-count {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--pittch-cream); line-height: 1;
}
.mega-menu-more-label {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(239,237,230,0.65);
}
.mega-menu-card--more:hover .mega-menu-card-img--more { background: #1e1007; }

/* ── SEARCH BAR ────────────────────────────────────────────────── */
.nav-search-bar {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--pittch-cream);
}
.nav-search-bar.is-open {
  max-height: 72px;
  border-bottom: 1px solid var(--pittch-border);
}
.nav-search-bar form { display: flex; padding: 14px 32px; }
.nav-search-bar input[type="search"] {
  flex: 1; padding: 11px 16px;
  border: 1px solid var(--pittch-border-strong); border-right: none;
  font-size: 14px; color: var(--pittch-brown); background: var(--pittch-white); outline: none;
}
.nav-search-bar button[type="submit"] {
  padding: 11px 24px;
  background: var(--pittch-brown); color: var(--pittch-cream);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-search-bar button[type="submit"]:hover { background: var(--pittch-mid); }

/* ── MOBILE MENU ───────────────────────────────────────────────── */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(55,33,11,0.45);
  z-index: 290; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.is-active { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: min(340px, 90vw); height: 100dvh;
  background: var(--pittch-cream); z-index: 310;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
body.pittch-menu-open { overflow: hidden; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--pittch-border);
}
.mobile-menu-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--pittch-brown);
}
.mobile-menu-close {
  font-size: 28px; line-height: 1; color: var(--pittch-brown);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px; font-size: 16px; font-weight: 500;
  color: var(--pittch-brown); border-bottom: 1px solid var(--pittch-border);
  transition: background 0.15s;
}
.mobile-menu-nav a:hover { background: rgba(55,33,11,0.04); }
.mobile-menu-nav a span { opacity: 0.4; font-size: 18px; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 96px);
  min-height: 560px;
  overflow: hidden;
  background: var(--pittch-brown);
}
/* On home page, hero extends under the transparent nav */
.home .hero {
  margin-top: -60px;
  height: 100vh;
  height: 100dvh; /* iOS Safari 15.4+/Chrome 108+: accounts for browser chrome */
  min-height: 640px;
}
.hero__img {
  position: absolute; inset: 0;
  background-color: var(--pittch-brown);
  background-size: cover;
  background-position: center;
}
.hero__content {
  position: absolute;
  top: 44%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding: 0 24px;
  text-align: center;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 84px);
  font-weight: 700;
  color: var(--pittch-cream);
  line-height: 1.06;
  max-width: 900px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}
.hero__tagline em { font-style: italic; font-weight: 400; }
.hero__sub {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(239,237,230,0.65);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero__pills {
  display: flex; gap: 12px; margin-top: 8px;
}
.hero-pill {
  display: flex; align-items: center; justify-content: center;
  min-width: 160px; padding: 16px 32px;
  background: rgba(239,237,230,0.15);
  border: 1px solid rgba(239,237,230,0.5);
  border-radius: 50px;
  font-size: 15px; font-weight: 500;
  color: var(--pittch-cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}
.hero-pill:hover {
  background: rgba(239,237,230,0.28);
  border-color: rgba(239,237,230,0.8);
}
.hero__scroll {
  position: absolute; bottom: 28px; right: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll-line {
  width: 1px; height: 36px; background: rgba(239,237,230,0.45);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; } 50% { opacity: 1; }
}
.hero__scroll-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(239,237,230,0.5); writing-mode: vertical-rl;
}

/* ── PRODUCT CARDS ─────────────────────────────────────────────── */
.product-card { width: 100%; min-width: 0; }
.product-card-link {
  display: block; cursor: pointer; text-decoration: none; color: inherit; min-width: 0;
  position: relative;
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: #e8e4db;
  border-radius: 6px;
}
.product-img-primary,
.product-img-secondary {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity 0.38s ease;
}
.product-img-primary  { opacity: 1; z-index: 1; }
.product-img-secondary { opacity: 0; z-index: 2; }
.product-card-link:hover .product-img-primary  { opacity: 0; }
.product-card-link:hover .product-img-secondary { opacity: 1; }

.product-card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 5; pointer-events: none;
}
.badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.badge-new  { background: var(--pittch-brown); color: var(--pittch-cream); }
.badge-sale { background: var(--pittch-green); color: var(--pittch-white); }

/* ── Out of stock — product card ──────────────────────────────── */
.product-card.is-oos .product-card-img { opacity: 0.45; }
.product-card-oos {
  position: absolute; top: 10px; left: 10px; z-index: 5;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  background: #333; color: #fff;
}

.product-size-pills {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--pittch-cream);
  padding: 9px 11px;
  display: flex; gap: 6px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.26s ease;
  z-index: 10;
}
.product-card-link:hover .product-size-pills { transform: translateY(0); }
.product-card.sizes-open  .product-size-pills { transform: translateY(0); }
.size-pill {
  font-size: 10px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--pittch-brown); background: rgba(55,33,11,0.08);
  border-radius: 3px; padding: 3px 7px;
}

.product-card-info {
  display: flex; flex-direction: column; gap: 1px;
  padding: 8px 6px 4px;
}
.product-card-info__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 6px;
}
.product-card-name   {
  font-size: 12px; font-weight: 400; color: var(--pittch-brown);
  line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1;
}
.product-card-price  {
  font-size: 12px; color: var(--pittch-brown); white-space: nowrap; flex-shrink: 0;
}
.product-card-price .price del { color: var(--pittch-light); font-size: 11px; margin-right: 3px; }
.product-card-price .price ins { text-decoration: none; }
.product-card-colours { font-size: 9px; color: var(--pittch-mid); }

/* ── PRODUCT ROW SECTIONS ──────────────────────────────────────── */
.pittch-product-section { padding: 64px 40px; overflow: hidden; }
.pittch-product-section--bg    { background: var(--pittch-bg); }
.pittch-product-section--white { background: var(--pittch-white); }
.pittch-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.pittch-section-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); color: var(--pittch-brown); }
.pittch-section-link { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--pittch-brown); display: flex; align-items: center; gap: 6px; opacity: 0.7; transition: opacity 0.2s; }
.pittch-section-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.pittch-section-link:hover { opacity: 1; }
.pittch-row-wrap { display: block; }
.pittch-product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  /* align-items defaults to stretch — all cells in each row match the tallest */
}
/* Flex chain makes every card fill its grid cell so info rows are flush */
.pittch-product-row__item { display: flex; flex-direction: column; min-width: 0; }
.pittch-product-row__item .product-card { flex: 1; display: flex; flex-direction: column; }
.pittch-product-row__item .product-card-link { flex: 1; display: flex; flex-direction: column; }
/* Fixed aspect ratio ensures every image renders at the same height */
.pittch-product-row__item .product-card-img { flex-shrink: 0; aspect-ratio: 4/5; }
.pittch-product-row__item .product-card-info { flex: 1; }
/* Arrow buttons hidden — grid layout used instead */
.pittch-arrow-btn { display: none; }

/* ── EDITORIAL SPLIT ───────────────────────────────────────────── */
.pittch-ed-split { display: grid; grid-template-columns: 1fr 1fr; height: 460px; }
.pittch-ed-panel { position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.pittch-ed-panel__bg { position: absolute; inset: 0; background: var(--pittch-brown); background-size: cover; background-position: center; transition: transform 0.5s ease; }
.pittch-ed-panel:hover .pittch-ed-panel__bg { transform: scale(1.03); }
.pittch-ed-panel__content {
  position: relative; z-index: 2;
  padding: 40px; display: flex; flex-direction: column; gap: 14px;
  background: rgba(55,33,11,0.6); width: 100%;
}
.pittch-ed-panel__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(239,237,230,0.7); }
.pittch-ed-panel__title { font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 26px); color: var(--pittch-cream); }
.pittch-ed-panel__body  { font-size: 14px; color: rgba(239,237,230,0.8); line-height: 1.55; max-width: 340px; }

/* ── GLASS CTA BUTTON (editorial split, hero panels) ──────────── */
.pittch-glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--pittch-cream);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.22s, border-color 0.22s;
  width: fit-content;
}
.pittch-glass-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}
.pittch-glass-btn--sm { padding: 9px 16px; font-size: 11px; }
.glass-btn__title { flex: 1; }
.glass-btn__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.glass-btn__arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* ── BRAND STATS ───────────────────────────────────────────────── */
.pittch-stats { background: var(--pittch-brown); padding: 20px 40px; }
.pittch-stats__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pittch-stats__item  { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.pittch-stats__number { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 34px); font-weight: 700; color: var(--pittch-cream); line-height: 1.1; }
.pittch-stats__label  { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(239,237,230,0.6); }
.pittch-stats__divider { width: 1px; height: 36px; background: rgba(239,237,230,0.18); }

/* ── GIFT BOX BANNER ───────────────────────────────────────────── */
.pittch-giftbox { background: var(--pittch-green); min-height: 380px; display: flex; align-items: center; }
.pittch-giftbox__inner { width: 100%; max-width: 1200px; margin: 0 auto; padding: 60px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.pittch-giftbox__copy    { max-width: 520px; display: flex; flex-direction: column; gap: 18px; }
.pittch-giftbox__eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 600; }
.pittch-giftbox__title   { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); color: var(--pittch-white); line-height: 1.15; }
.pittch-giftbox__body    { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); }

/* ── SHOWS ─────────────────────────────────────────────────────── */
.pittch-shows { background: var(--pittch-bg); padding: 72px 40px 0; margin-bottom: 64px; }
.pittch-shows__inner { }
.pittch-shows__head  { margin-bottom: 40px; }
.pittch-shows__sub   { font-size: 15px; color: var(--pittch-mid); margin-top: 8px; }
.pittch-shows__grid  { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; }
.pittch-show-card { overflow: hidden; display: flex; flex-direction: column; min-height: 320px; border-radius: 8px; }
.pittch-show-card--green { background: var(--pittch-green); }
.pittch-show-card--brown { background: var(--pittch-brown); }
.pittch-show-card--cream { background: var(--pittch-cream); }
.pittch-show-card--cream .pittch-show-card__badge { color: rgba(55,33,11,0.55); background: rgba(55,33,11,0.1); }
.pittch-show-card--cream .pittch-show-card__name  { color: var(--pittch-brown); }
.pittch-show-card--cream .pittch-show-card__dates,
.pittch-show-card--cream .pittch-show-card__venue { color: var(--pittch-mid); }
.pittch-show-card--cream .pittch-show-card__link  { color: var(--pittch-brown); border-top-color: var(--pittch-border); }
.pittch-show-card__top   { padding: 32px 36px 0; }
.pittch-show-card__badge { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.14); padding: 4px 10px; border-radius: 3px; display: inline-block; }
.pittch-show-card__body  { padding: 24px 36px 32px; flex: 1; }
.pittch-show-card__name  { font-family: var(--font-display); font-size: 20px; color: var(--pittch-white); margin-bottom: 8px; }
.pittch-show-card__dates,
.pittch-show-card__venue { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.pittch-show-card__link  { display: flex; align-items: center; gap: 6px; padding: 18px 36px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.85); border-top: 1px solid rgba(255,255,255,0.15); transition: color 0.2s; }
.pittch-show-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ── REVIEWS ───────────────────────────────────────────────────── */
.pittch-reviews { background: var(--pittch-cream); padding: 72px 40px; }
.pittch-reviews__inner { max-width: 1100px; margin: 0 auto; }
.pittch-reviews__head  { margin-bottom: 40px; }
.pittch-reviews__grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pittch-review-card {
  border-top: 2px solid var(--pittch-brown);
  padding: 28px 24px; background: var(--pittch-white);
  display: flex; flex-direction: column; gap: 14px;
  border-radius: 0 0 6px 6px;
}
.pittch-review-card__stars  { display: flex; gap: 3px; color: var(--pittch-brown); }
.pittch-review-card__stars svg { width: 14px; height: 14px; }
.pittch-review-card__text   { font-family: var(--font-display); font-style: italic; font-size: 15px; line-height: 1.6; color: var(--pittch-brown); flex: 1; }
.pittch-review-card__text p::before { content: '\201C'; }
.pittch-review-card__text p::after  { content: '\201D'; }
.pittch-review-card__author { font-size: 12px; color: var(--pittch-mid); display: flex; flex-direction: column; gap: 2px; background: transparent; }
.pittch-review-card__author strong { color: var(--pittch-brown); font-size: 13px; }
.pittch-review-card__product { font-size: 11px; color: var(--pittch-light); margin-top: 2px; }

/* ── INSTAGRAM FEED ────────────────────────────────────────────── */
.pittch-instagram { background: var(--pittch-bg); padding: 72px 40px 80px; }
.pittch-instagram__inner { max-width: 1200px; margin: 0 auto; }
.pittch-instagram__head  { text-align: center; margin-bottom: 40px; }
.pittch-instagram__eyebrow {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pittch-light); font-weight: 600; margin-bottom: 10px;
}
.pittch-instagram__title {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  color: var(--pittch-brown); margin-bottom: 10px;
}
.pittch-instagram__handle {
  font-size: 13px; letter-spacing: 0.06em; color: var(--pittch-mid);
  text-decoration: none; border-bottom: 1px solid var(--pittch-border-strong);
  padding-bottom: 1px; transition: color 0.2s, border-color 0.2s;
}
.pittch-instagram__handle:hover { color: var(--pittch-brown); border-color: var(--pittch-brown); }

/* Override Smash Balloon defaults to match site aesthetic */
.pittch-instagram__feed #sb_instagram { padding: 0 !important; background: transparent !important; }
.pittch-instagram__feed #sb_instagram .sbi_item { border-radius: 0 !important; overflow: hidden; }
.pittch-instagram__feed #sb_instagram img { border-radius: 0 !important; }
.pittch-instagram__feed #sb_instagram #sbi_images { padding: 0 !important; }
.pittch-instagram__feed #sb_instagram .sbi_photo_wrap { margin: 2px !important; }

/* Follow button — restyle to match pittch-btn */
.pittch-instagram__feed .sbi_follow_btn a,
.pittch-instagram__feed #sbi_load .sbi_follow_btn a {
  display: inline-block !important;
  background: var(--pittch-brown) !important;
  color: var(--pittch-cream) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important; letter-spacing: 0.1em !important;
  text-transform: uppercase !important; font-weight: 600 !important;
  padding: 10px 24px !important; border-radius: 4px !important;
  border: none !important; box-shadow: none !important;
  text-decoration: none !important; transition: background 0.2s !important;
}
.pittch-instagram__feed .sbi_follow_btn a:hover { background: var(--pittch-mid) !important; }

/* "Powered by" footer — keep it but make it subtle */
.pittch-instagram__feed #sbi_load .sbi_powered a,
.pittch-instagram__feed .sbi_footer_link {
  font-size: 10px !important; color: var(--pittch-light) !important;
  opacity: 0.5 !important; letter-spacing: 0.05em !important;
}

/* ── NEWSLETTER ────────────────────────────────────────────────── */
.pittch-newsletter { background: var(--pittch-brown); padding: 80px 40px; }
.pittch-newsletter__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.pittch-newsletter__prize-badge { display: inline-block; background: var(--pittch-green); color: var(--pittch-white); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; }
.pittch-newsletter__prize p { font-size: 14px; color: rgba(239,237,230,0.75); line-height: 1.6; }
.pittch-newsletter__title { font-family: var(--font-display); font-size: 30px; color: var(--pittch-cream); margin-bottom: 8px; }
.pittch-newsletter__sub   { font-size: 14px; color: rgba(239,237,230,0.7); margin-bottom: 24px; line-height: 1.55; }
.pittch-newsletter__form  { display: flex; }
.pittch-newsletter__input {
  flex: 1; padding: 14px 18px;
  background: rgba(239,237,230,0.1);
  border: 1px solid rgba(239,237,230,0.25); border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--pittch-cream); font-size: 14px; outline: none;
}
.pittch-newsletter__input::placeholder { color: rgba(239,237,230,0.4); }
.pittch-newsletter__form .pittch-btn--green { border-radius: 0 6px 6px 0; }
.pittch-newsletter__consent { font-size: 11px; color: rgba(239,237,230,0.4); margin-top: 12px; line-height: 1.5; }

/* ── SHOP PAGE ─────────────────────────────────────────────────── */
.shop-header {
  background: var(--pittch-cream);
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--pittch-border);
}
.breadcrumb { font-size: 12px; color: var(--pittch-mid); margin-bottom: 8px; }
.breadcrumb a { color: var(--pittch-mid); }
.breadcrumb a:hover { color: var(--pittch-brown); }
.page-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--pittch-brown); }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY HERO + TILES (Men's / Women's category pages)
═══════════════════════════════════════════════════════════════ */
.cat-hero {
  position: relative;
  width: 100%;
  height: 44vh;
  min-height: 280px;
  max-height: 540px;
  overflow: hidden;
  background: var(--pittch-brown);
}
.cat-hero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.cat-hero:hover .cat-hero__img { transform: scale(1.04); }
.cat-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.cat-hero__content {
  position: absolute; bottom: 28px; left: 40px; z-index: 2;
}
.cat-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.cat-hero__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--pittch-white);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

/* ── Category tiles grid ──────────────────────────────────────── */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--pittch-border);
}
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-right: 1px solid var(--pittch-border);
}
.cat-tile:last-child { border-right: none; }
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: bottom center; display: block;
  transition: transform 0.6s ease;
}
.cat-tile__placeholder {
  width: 100%; height: 100%;
  background: var(--pittch-cream);
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
  pointer-events: none;
}
.cat-tile__name {
  position: absolute;
  bottom: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--pittch-white);
  line-height: 1.1;
}

/* ── Shop All section header (between tiles and product grid) ──── */
.cat-shopall-header {
  display: flex; align-items: baseline; gap: 12px;
  padding: 28px 40px 4px;
  background: var(--pittch-cream);
  border-top: 1px solid var(--pittch-border);
}
.cat-shopall-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--pittch-brown);
}
.cat-shopall-count {
  font-size: 13px; color: var(--pittch-mid);
}

/* ── Tablet: 3 narrow columns ──────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 601px) {
  .cat-tile { aspect-ratio: 2/3; }
}

/* ── Mobile: bento — first tile full-width, other two side by side */
@media (max-width: 600px) {
  .cat-hero  { height: 32vh; min-height: 200px; }
  .cat-hero__content { bottom: 18px; left: 20px; }
  .cat-tiles {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .cat-tile:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
    border-bottom: 1px solid var(--pittch-border);
    border-right: none;
  }
  .cat-tile:not(:first-child) {
    aspect-ratio: 1/1;
    border-top: none;
  }
  .cat-tile:nth-child(2) {
    border-right: 1px solid var(--pittch-border);
  }
  .cat-shopall-header { padding: 20px 16px 4px; }
  .cat-shopall-heading { font-size: 18px; }
}

.filter-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 40px;
  background: var(--pittch-cream);
  border-bottom: 1px solid var(--pittch-border);
  position: sticky; top: 140px; z-index: 100;
}
/* Desktop: controls col = sort only (toggle hidden); pills col = flex-1 */
.filter-bar-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.filter-toggle-btn   { display: none; }
.filter-toggle-chevron { transition: transform 0.25s; }
.filter-pills-wrap   { flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.filter-pills-wrap::-webkit-scrollbar { display: none; }
.filter-pills { display: flex; gap: 8px; flex-wrap: nowrap; }
.filter-pill {
  font-size: 12px; font-weight: 600; letter-spacing: 0.07em;
  color: var(--pittch-brown); background: transparent;
  border: 1px solid var(--pittch-border-strong);
  padding: 7px 17px; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-pill:hover  { border-color: var(--pittch-brown); }
.filter-pill.active { background: var(--pittch-brown); color: var(--pittch-cream); border-color: var(--pittch-brown); }
.sort-select {
  border: 1px solid var(--pittch-border-strong);
  padding: 8px 32px 8px 14px; font-size: 12px; color: var(--pittch-brown);
  background: var(--pittch-white); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2337210B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 14px;
  cursor: pointer; flex-shrink: 0;
}

.shop-grid-wrap { padding: 0; }
.product-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
}
.product-card { transition: opacity 0.2s, transform 0.2s; }
.no-products { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--pittch-mid); font-size: 15px; }

/* ── SINGLE PRODUCT (scuffers 3-panel) ─────────────────────────── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 100vh;
  background: var(--pittch-white);
  align-items: stretch;
  margin-top: -60px; /* bleed gallery behind transparent nav-main */
}

/* ─ Left panel ─ */
.sp-left {
  padding: 80px 28px 48px;
  border-right: 1px solid var(--pittch-border);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 104px; /* nav-main 60px + nav-subnav 44px */
  max-height: calc(100vh - 104px);
  overflow-y: auto;
}

.sp-breadcrumb,
.sp-breadcrumb .woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--pittch-mid);
  line-height: 1.5;
  margin-bottom: 20px;
}
.sp-breadcrumb a,
.sp-breadcrumb .woocommerce-breadcrumb a { color: var(--pittch-mid); }
.sp-breadcrumb a:hover,
.sp-breadcrumb .woocommerce-breadcrumb a:hover { color: var(--pittch-brown); }

.sp-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--pittch-brown);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sp-price-wrap { margin-bottom: 14px; }
.sp-sale-note  { font-size: 13px; color: var(--pittch-green); font-weight: 500; margin-bottom: 4px; }
.sp-price      { font-size: 17px; font-weight: 500; color: var(--pittch-brown); }
.sp-price .price del { font-size: 14px; color: var(--pittch-light); margin-right: 4px; font-weight: 400; }
.sp-price .price ins  { text-decoration: none; }

.sp-review-link {
  display: inline-block;
  font-size: 13px;
  color: var(--pittch-mid);
  text-decoration: underline;
  margin-bottom: 20px;
}

/* Accordion */
.sp-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pittch-border);
  margin-top: 28px;
}
.sp-acc-item   { border-bottom: 1px solid var(--pittch-border); }
.sp-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pittch-brown);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 8px;
}
.sp-acc-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  transition: transform 0.22s ease;
}
.sp-acc-item.is-open .sp-acc-icon { transform: rotate(45deg); }
.sp-acc-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--pittch-mid);
  padding-bottom: 14px;
}
.sp-acc-body[hidden] { display: none; }
.sp-acc-body p { margin-bottom: 8px; }

/* ─ Gallery (centre) — sticky overlay thumbnails + scrollable image stack ─ */
.sp-gallery {
  display: flex;
  background: #f2f0eb;
  border-right: 1px solid var(--pittch-border);
}

/* Thumbnail strip — sticky, overlaid on left edge of the images */
.sp-thumbs {
  width: 72px;
  flex-shrink: 0;
  margin-right: -72px; /* pull sp-images back to left so thumbs overlay */
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 80px 8px 24px;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 10;
}
.sp-thumbs::-webkit-scrollbar { display: none; }

.sp-thumb {
  width: 52px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  padding: 0;
  background: none;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.18s;
}
.sp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-thumb:hover      { opacity: 0.75; }
.sp-thumb.is-active  { opacity: 1; border-color: var(--pittch-brown); }

/* Scrollable images column — full width of gallery (under thumb overlay) */
.sp-images { flex: 1; }

.sp-image-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.sp-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.2s ease;
}
.sp-image-slide .product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
}

.sp-gallery-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--pittch-mid);
  text-align: center;
  padding: 24px;
}

/* ─ Right panel ─ */
.sp-right {
  padding: 80px 28px 48px;
  border-left: 1px solid var(--pittch-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
}

.sp-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}

.sp-attr-group { display: flex; flex-direction: column; gap: 10px; }
.sp-attr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pittch-brown);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-attr-selected {
  font-weight: 400;
  color: var(--pittch-mid);
  font-size: 13px;
}

/* Colour swatches */
.sp-attr-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  font-size: 10px; font-weight: 700;
  background: var(--pittch-brown); color: var(--pittch-cream);
  border-radius: 50%;
  margin-left: 2px;
}

.sp-colour-swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Image-thumbnail swatch (portrait, like scuffers) */
.sp-swatch--img {
  width: 72px; height: 94px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid var(--pittch-border);
  cursor: pointer;
  transition: border-color 0.18s;
  background: #e8e4db;
  flex-shrink: 0;
}

/* Colour-circle swatch (when no product photo) */
.sp-swatch--colour {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pittch-border);
  cursor: pointer;
  transition: border-color 0.18s, outline 0.18s;
  flex-shrink: 0;
}

.sp-swatch--img:hover,
.sp-swatch--colour:hover   { border-color: var(--pittch-mid); }
.sp-swatch--img.is-selected  {
  border-color: var(--pittch-brown);
  outline: 2px solid var(--pittch-brown);
  outline-offset: 2px;
}
.sp-swatch--colour.is-selected {
  border-color: var(--pittch-brown);
  outline: 3px solid var(--pittch-brown);
  outline-offset: 2px;
}

/* Size buttons — pill shaped (scuffers style) */
.sp-size-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-size-btn {
  min-width: 52px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--pittch-border-strong);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--pittch-brown);
  background: var(--pittch-white);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sp-size-btn:hover    { border-color: var(--pittch-brown); background: rgba(55,33,11,0.04); }
.sp-size-btn.active   { background: var(--pittch-brown); color: var(--pittch-cream); border-color: var(--pittch-brown); }
.sp-size-btn.unavailable { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

/* ── Out of stock — swatches ──────────────────────────────────── */
.sp-swatch.is-oos {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}
.sp-swatch.is-oos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(0,0,0,0.25) 4px,
    rgba(0,0,0,0.25) 5px
  );
}

/* ── Out of stock — size buttons ─────────────────────────────── */
.sp-size-btn.is-oos {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
  position: relative;
}
.sp-oos-tag {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  margin-top: 1px;
}

/* Hidden WC form */
.sp-wc-form {
  /* Visually hidden but NOT visibility:hidden — WC's variation JS checks jQuery :visible
     which returns false for visibility:hidden, preventing the form from being initialised */
  position: absolute;
  left: -9999px;
  width: 1px;
  height: auto;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

/* ATC button */
.sp-atc-wrap { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.sp-atc-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sp-atc-btn:hover  { background: #1e1007; }
.sp-atc-btn.is-loading { opacity: 0.6; pointer-events: none; }
.sp-atc-btn.is-added   { background: var(--pittch-green); }
.sp-atc-btn.is-error   { background: #b03a2e; }
.sp-atc-btn.is-oos     { background: var(--pittch-mid); pointer-events: none; opacity: 0.7; }
.sp-atc-price {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.75;
}

/* Reassurance */
.sp-reassurance {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 12px;
  border-top: none;
}
.sp-reassurance p {
  font-size: 13px;
  color: var(--pittch-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.sp-reassurance-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pittch-green);
  flex-shrink: 0;
}

/* Sticky cart */
.pittch-sticky-cart {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--pittch-cream); border-top: 1px solid var(--pittch-border-strong);
  transform: translateY(100%); transition: transform 0.3s ease;
  padding: 12px 40px; box-shadow: 0 -4px 20px rgba(55,33,11,0.08);
}
.pittch-sticky-cart.is-visible { transform: translateY(0); }
.pittch-sticky-cart__inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pittch-sticky-cart__name  { font-family: var(--font-display); font-size: 18px; flex: 1; }
.pittch-sticky-cart__price { font-size: 16px; font-weight: 600; }
.pittch-sticky-cart__btn   { min-width: 180px; margin-top: 0; }

/* Features */
.pittch-product-features { padding: 64px 40px; background: var(--pittch-cream); }
.pittch-product-features__inner { max-width: 900px; margin: 0 auto; }
.pittch-product-features__heading { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); color: var(--pittch-brown); margin-bottom: 40px; }
.pittch-features-list { display: flex; flex-direction: column; }
.pittch-feature-row { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--pittch-border); align-items: start; }
.pittch-feature-row__name { font-size: 14px; font-weight: 700; color: var(--pittch-brown); }
.pittch-feature-row__desc { font-size: 14px; color: var(--pittch-mid); line-height: 1.6; }
.section--cream { background: var(--pittch-cream); }

/* Woo accordion (old accordion kept for compatibility) */
.pittch-accordion { display: flex; flex-direction: column; border-top: 1px solid var(--pittch-border); }
.pittch-accordion__item { border-bottom: 1px solid var(--pittch-border); }
.pittch-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--pittch-brown); background: none; border: none; cursor: pointer; text-align: left; }
.pittch-accordion__trigger svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s; stroke: currentColor; fill: none; }
.pittch-accordion__item.is-open .pittch-accordion__trigger svg { transform: rotate(180deg); }
.pittch-accordion__content { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; font-size: 14px; line-height: 1.65; color: var(--pittch-mid); }
.pittch-accordion__item.is-open .pittch-accordion__content { padding-bottom: 18px; }
.pittch-accordion__content[hidden] { display: block; max-height: 0; }

/* WooCommerce form elements */
.woocommerce-breadcrumb { font-size: 12px; color: var(--pittch-mid); }
.woocommerce-breadcrumb a { color: var(--pittch-mid); }
.pittch-woo-main { min-height: 400px; }
.variations_form .variations { width: 100%; border-collapse: collapse; }
.variations_form .variations td,
.variations_form .variations th { padding: 6px 0; vertical-align: middle; }
.variations_form .variations label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pittch-brown); }
.variations_form .variations select {
  border: 1px solid var(--pittch-border-strong);
  padding: 10px 36px 10px 14px; font-size: 14px; color: var(--pittch-brown);
  background: var(--pittch-white); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2337210B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  cursor: pointer; min-width: 180px;
}
.single_add_to_cart_button, .pittch-btn--brown {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pittch-brown); color: var(--pittch-cream);
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; padding: 16px 32px;
  cursor: pointer; width: 100%; margin-top: 12px;
  transition: background 0.2s; text-decoration: none;
  border-radius: 4px;
}
.single_add_to_cart_button:hover, .pittch-btn--brown:hover { background: var(--pittch-mid); }
.single_add_to_cart_button.is-loading { opacity: 0.7; pointer-events: none; }
.single_add_to_cart_button.is-added   { background: var(--pittch-green); }

/* ── FOOTER ────────────────────────────────────────────────────── */
.pittch-footer { background: var(--pittch-brown); }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding: 72px 48px 48px;
  max-width: 1400px; margin: 0 auto;
}
.footer-brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: 0.1em; color: var(--pittch-cream); margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(239,237,230,0.6); line-height: 1.65; max-width: 280px; }
.footer-col-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(239,237,230,0.5); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { display: block; font-size: 13px; color: rgba(239,237,230,0.65); padding: 5px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--pittch-cream); }
.footer-social { display: flex; gap: 10px; margin-bottom: 16px; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(239,237,230,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(239,237,230,0.65);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-social-icon:hover { color: var(--pittch-cream); border-color: rgba(239,237,230,0.5); }
.footer-email { display: block; font-size: 13px; color: rgba(239,237,230,0.65); margin-bottom: 16px; transition: color 0.2s; }
.footer-email:hover { color: var(--pittch-cream); }
.footer-newsletter { display: flex; }
.footer-newsletter input {
  flex: 1; padding: 10px 14px;
  background: rgba(239,237,230,0.1);
  border: 1px solid rgba(239,237,230,0.25); border-right: none;
  border-radius: 4px 0 0 4px;
  color: var(--pittch-cream); font-size: 13px; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(239,237,230,0.35); }
.footer-newsletter button {
  padding: 10px 16px; background: var(--pittch-green); color: var(--pittch-white);
  border-radius: 0 4px 4px 0;
  font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.footer-newsletter button:hover { background: #4e6d3b; }
.footer-bottom {
  border-top: 1px solid rgba(239,237,230,0.1);
  padding: 20px 48px; font-size: 11px; color: rgba(239,237,230,0.35);
  letter-spacing: 0.04em; text-align: center;
}

/* ── GENERIC BUTTONS ───────────────────────────────────────────── */
.pittch-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; text-decoration: none; transition: background 0.2s, color 0.2s;
  border-radius: 4px;
}
.pittch-btn--white  { background: var(--pittch-white);  color: var(--pittch-brown); }
.pittch-btn--white:hover  { background: var(--pittch-cream); }
.pittch-btn--green  { background: var(--pittch-green);  color: var(--pittch-white); }
.pittch-btn--green:hover  { background: #4e6d3b; }
.pittch-btn--outline { background: transparent; color: var(--pittch-brown); border: 1px solid var(--pittch-border-strong); }
.pittch-btn--outline:hover { border-color: var(--pittch-brown); }

/* ── PAGINATION ────────────────────────────────────────────────── */
.pittch-pagination { padding: 40px; text-align: center; }
.woocommerce-pagination ul { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.woocommerce-pagination ul li { list-style: none; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--pittch-border-strong); border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--pittch-brown); transition: background 0.2s, color 0.2s; }
.woocommerce-pagination ul li a:hover { background: var(--pittch-brown); color: var(--pittch-cream); }
.woocommerce-pagination ul li span.current { background: var(--pittch-brown); color: var(--pittch-cream); border-color: var(--pittch-brown); }

/* ── 404 ───────────────────────────────────────────────────────── */
.pittch-404 { padding: 80px 40px; }
.pittch-404__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.pittch-404__code  { display: block; font-family: var(--font-display); font-size: 100px; font-weight: 700; color: var(--pittch-brown); opacity: 0.08; line-height: 1; margin-bottom: -20px; }
.pittch-404__title { font-family: var(--font-display); font-size: 32px; color: var(--pittch-brown); margin-bottom: 14px; }
.pittch-404__body  { font-size: 15px; color: var(--pittch-mid); line-height: 1.65; margin-bottom: 32px; }
.pittch-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── GENERAL PAGE ──────────────────────────────────────────────── */
.pittch-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.pittch-main { padding: 48px 0; }
.pittch-page__header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--pittch-border); }
.pittch-page__title  { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--pittch-brown); }
.pittch-page__content { font-size: 15px; line-height: 1.75; color: var(--pittch-mid); max-width: 720px; }
.pittch-page__content h2 { font-family: var(--font-display); font-size: 24px; color: var(--pittch-brown); margin: 32px 0 12px; }
.pittch-page__content p  { margin-bottom: 16px; }
.pittch-page__content a  { color: var(--pittch-brown); text-decoration: underline; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .sp-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
  }
  .sp-left    {
    grid-column: 1; grid-row: 1;
    position: static; max-height: none;
    border-right: none; border-bottom: 1px solid var(--pittch-border);
    padding: 24px 20px;
  }
  .sp-gallery {
    grid-column: 1 / -1; grid-row: 2;
  }
  .sp-thumbs {
    width: 56px;
    margin-right: -56px;
    padding: 16px 4px 16px;
    top: 0;
    height: 100vh;
  }
  .sp-thumb { width: 44px; }
  .sp-image-slide { aspect-ratio: 3 / 4; }
  .sp-right {
    grid-column: 2; grid-row: 1;
    position: static; max-height: none;
    border-left: 1px solid var(--pittch-border);
    padding: 24px 20px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pittch-newsletter__inner { grid-template-columns: 1fr; gap: 32px; }
  .pittch-reviews__grid { grid-template-columns: 1fr 1fr; }
  .pittch-ed-split { grid-template-columns: 1fr; height: auto; }
  .pittch-ed-panel { min-height: 320px; }
  .pittch-instagram { padding: 56px 24px 64px; }
}
@media (max-width: 768px) {
  .nav-logo       { font-size: 18px; margin-right: 0; }
  .nav-hamburger  { display: flex; }
  .nav-main { padding: 0 20px; }
  /* Never hide the nav bar on mobile — hamburger must always be reachable */
  .nav-wrapper.is-hidden { transform: none; }
  /* Desktop filter bar hidden on mobile — replaced by bottom bar */
  .filter-bar { display: none; }
  .shop-header { padding: 24px 20px; }
  .shop-grid-wrap { padding: 0; padding-bottom: 90px; }
  /* !important overrides any WooCommerce injected grid styles */
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2px !important;
  }
  /* min-width:0 prevents grid cells growing beyond their column */
  .product-grid .product-card { min-width: 0; width: 100%; }
  .product-grid .product-card-link { min-width: 0; display: block; }
  /* Squarer images so both columns fit on screen with room below */
  .product-grid .product-card-img { aspect-ratio: 3/4; }
  .product-card-name  { font-size: 11px; }
  .product-card-price { font-size: 11px; }
  .product-card-info  { padding: 8px 6px 4px; }
  .hero__pills { flex-direction: column; align-items: center; }
  .hero-pill { min-width: 200px; }
  .pittch-shows__grid   { grid-template-columns: 1fr; }
  .pittch-reviews__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 48px 24px 32px; }
  .footer-bottom { padding: 16px 24px; }
  .pittch-stats__inner { flex-wrap: wrap; justify-content: center; }
  .pittch-stats__divider { display: none; }
  .pittch-giftbox__inner { flex-direction: column; }
  .pittch-product-section { padding: 40px 20px; }
  .pittch-newsletter { padding: 48px 20px; }
  .pittch-feature-row { grid-template-columns: 1fr; gap: 6px; }
  .pittch-sticky-cart { padding: 12px 20px; }
  .pittch-sticky-cart__name { display: none; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .pittch-instagram { padding: 48px 20px 56px; }
  .pittch-instagram__feed #sb_instagram .sbi_photo_wrap { margin: 1px !important; }
  /* Phones: hide subnav — hamburger covers all navigation */
  .nav-subnav { display: none !important; }
  /* Adjust sticky SP panel top since subnav is gone */
  .sp-left, .sp-right { top: 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR + SHEETS
═══════════════════════════════════════════════════════════════ */
.pittch-mobile-bar {
  display: none; /* shown only on mobile via media query */
}

@media (max-width: 768px) {
  /* ── Floating bottom bar ── */
  .pittch-mobile-bar {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 100px;
    padding: 5px;
    gap: 2px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
    white-space: nowrap;
  }

  .pittch-mobile-bar__btn {
    display: flex; align-items: center; gap: 5px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    cursor: pointer; border: none; background: transparent;
    color: var(--pittch-brown);
    transition: background 0.2s, color 0.2s;
  }
  .pittch-mobile-bar__btn.is-filled {
    background: var(--pittch-brown);
    color: var(--pittch-cream);
  }
  .pittch-mobile-bar__divider {
    width: 1px; height: 20px;
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
  }

  /* ── Bottom sheets (shared) ── */
  .pittch-sheet {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 410;
    background: var(--pittch-cream);
    border-radius: 20px 20px 0 0;
    padding: 12px 20px 44px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .pittch-sheet.is-open { transform: translateY(0); }

  .pittch-sheet__handle {
    width: 36px; height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.14);
    margin: 0 auto 18px;
  }
  .pittch-sheet__label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--pittch-mid);
    margin-bottom: 14px;
  }

  /* Filter sheet pills */
  .pittch-sheet__pills {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .pittch-sheet__pills .filter-pill {
    font-size: 12px; padding: 8px 16px;
  }

  /* Sort sheet options */
  .pittch-sort-sheet__opt {
    display: block;
    padding: 15px 0;
    font-size: 15px; font-weight: 400;
    color: var(--pittch-brown);
    border-bottom: 1px solid var(--pittch-border);
    text-decoration: none;
  }
  .pittch-sort-sheet__opt:last-child { border-bottom: none; }
  .pittch-sort-sheet__opt:hover { color: var(--pittch-brown); font-weight: 600; }

  /* Overlay behind sheets */
  .pittch-sheet-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 400;
  }
  .pittch-sheet-overlay.is-active { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════════════ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 390;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-drawer-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100vw);
  height: 100dvh;
  background: var(--pittch-cream);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(55, 33, 11, 0.15);
}
.cart-drawer.is-open {
  transform: translateX(0);
}

body.pittch-cart-open {
  overflow: hidden;
}

.cart-drawer__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pittch-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pittch-brown);
}
.cart-drawer__close {
  font-size: 24px;
  cursor: pointer;
  width: 44px;  /* WCAG AA min touch target */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pittch-brown);
  transition: background 0.2s;
  flex-shrink: 0;
}
.cart-drawer__close:hover {
  background: rgba(55, 33, 11, 0.08);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 20px;
}

.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--pittch-border);
}
.cart-drawer__item-img {
  width: 100px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e4db;
}
.cart-drawer__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.cart-drawer__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-drawer__item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--pittch-brown);
  line-height: 1.35;
}
.cart-drawer__item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--pittch-brown);
  flex-shrink: 0;
}
.cart-drawer__item-variant {
  font-size: 12px;
  color: var(--pittch-mid);
}
.cart-drawer__item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.cart-drawer__qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-drawer__qty-btn {
  width: 40px;  /* WCAG AA min touch target */
  height: 40px;
  border: 1px solid var(--pittch-border-strong);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--pittch-brown);
  background: transparent;
  line-height: 1;
}
.cart-drawer__qty-btn:hover {
  background: rgba(55, 33, 11, 0.08);
}
.cart-drawer__qty-val {
  font-size: 14px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
  color: var(--pittch-brown);
}
.cart-drawer__remove {
  font-size: 12px;
  color: var(--pittch-mid);
  text-decoration: underline;
  cursor: pointer;
}

.cart-drawer__upsell {
  padding: 24px;
  border-top: 1px solid var(--pittch-border);
}
.cart-drawer__upsell-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--pittch-brown);
}
.cart-drawer__upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cart-drawer__upsell-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}
.cart-drawer__upsell-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e4db;
}
.cart-drawer__upsell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-drawer__upsell-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--pittch-brown);
  line-height: 1.3;
}
.cart-drawer__upsell-price {
  font-size: 12px;
  color: var(--pittch-mid);
}

.cart-drawer__empty {
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--pittch-mid);
}
.cart-drawer__empty svg {
  opacity: 0.4;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--pittch-border);
  background: var(--pittch-cream);
  flex-shrink: 0;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-drawer__subtotal span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-brown);
}
.cart-drawer__checkout-btn {
  display: block;
  width: 100%;
  padding: 17px;
  text-align: center;
  background: #1e1007;
  color: var(--pittch-cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.cart-drawer__checkout-btn:hover {
  background: var(--pittch-brown);
}

/* Bundle discount status bar — sits between drawer header and body */
.cart-drawer__bundle-bar {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  background: var(--pittch-cream);
  border-bottom: 1px solid var(--pittch-border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cart-drawer__bundle-bar--active {
  background: #edf3e8;
  color: #3a5a2a;
  border-bottom-color: #c3d9b8;
}
.cart-drawer__bundle-tick {
  font-size: 13px;
  color: var(--pittch-green);
  flex-shrink: 0;
}
.cart-drawer__bundle-upgrade {
  color: var(--pittch-mid);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════════════════════════
   MERINO FEATURES SECTION
═══════════════════════════════════════════════════════════════ */
.pittch-merino-features {
  padding: 72px 0 0;
  background: var(--pittch-bg);
}
.pittch-merino-features__head {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}
.pittch-merino-features__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--pittch-brown);
  line-height: 1.15;
}
.pittch-merino-features__sub {
  font-size: 15px;
  color: var(--pittch-mid);
  margin-top: 12px;
}

.pittch-merino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
}

.pittch-merino-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.pittch-merino-card--dark {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  grid-row: span 2;
}
.pittch-merino-card--light {
  background: #fff;
  color: var(--pittch-brown);
}
.pittch-merino-card--dark-sm {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
}
.pittch-merino-card__eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.pittch-merino-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
}
.pittch-merino-card__stat {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--pittch-brown);
}
.pittch-merino-card__stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}
.pittch-merino-card__body {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.75;
}
.pittch-merino-card__link {
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  text-decoration: underline;
  color: var(--pittch-cream);
}
.pittch-merino-card__icon {
  width: 40px;
  height: 40px;
  color: var(--pittch-brown);
  opacity: 0.7;
}

.pittch-merino-bar {
  grid-column: span 2;
  background: #fff;
  border-top: 1px solid var(--pittch-border);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.pittch-merino-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pittch-brown);
}

@media (max-width: 768px) {
  .pittch-merino-features { padding: 48px 0 0; }
  .pittch-merino-features__head { padding: 0 20px; }
  .pittch-merino-grid { grid-template-columns: 1fr; }
  .pittch-merino-card { padding: 28px 20px; }
  .pittch-merino-card--dark { grid-row: span 1; }
  .pittch-merino-bar { grid-column: span 1; justify-content: flex-start; padding: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   GIFT BOX SPLIT
═══════════════════════════════════════════════════════════════ */
.pittch-giftbox-split {
  background: var(--pittch-bg);
}
.pittch-giftbox-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 480px;
}
.pittch-giftbox-split__photo {
  background: var(--pittch-brown);
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.pittch-giftbox-split__card {
  background: var(--pittch-brown);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.pittch-giftbox-split__card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--pittch-cream);
  line-height: 1.15;
}
.pittch-giftbox-split__card p {
  font-size: 16px;
  color: rgba(239, 237, 230, 0.8);
  line-height: 1.65;
  max-width: 380px;
}
.pittch-giftbox-split__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1.5px solid rgba(239, 237, 230, 0.6);
  font-size: 14px;
  font-weight: 500;
  color: var(--pittch-cream);
  max-width: max-content;
  transition: background 0.25s;
  text-decoration: none;
}
.pittch-giftbox-split__btn:hover {
  background: rgba(239, 237, 230, 0.12);
}

@media (max-width: 768px) {
  .pittch-giftbox-split__inner { grid-template-columns: 1fr; }
  .pittch-giftbox-split__card { padding: 40px 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW FOOTER
═══════════════════════════════════════════════════════════════ */
.pittch-footer {
  background: var(--pittch-cream);
  color: var(--pittch-brown);
  overflow: hidden;
  position: relative;
}
.pittch-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding: 64px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.pittch-footer__newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 12px;
  color: var(--pittch-brown);
  line-height: 1.25;
}
.pittch-footer__newsletter p {
  font-size: 14px;
  color: var(--pittch-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.pittch-footer__nl-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.pittch-footer__nl-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--pittch-border-strong);
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  background: #fff;
  color: var(--pittch-brown);
  outline: none;
}
.pittch-footer__nl-form input:focus {
  border-color: var(--pittch-brown);
}
.pittch-footer__nl-form button {
  padding: 12px 20px;
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  border: 1px solid var(--pittch-brown);
}
.pittch-footer__nl-form button:hover {
  background: #1e1007;
}
.pittch-footer__nl-link {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pittch-brown);
  text-decoration: underline;
}
.pittch-footer__col-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--pittch-brown);
}
.pittch-footer__col a {
  display: block;
  font-size: 14px;
  color: var(--pittch-mid);
  margin-bottom: 12px;
  transition: color 0.2s;
  text-decoration: none;
}
.pittch-footer__col a:hover {
  color: var(--pittch-brown);
}
.pittch-footer__watermark {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--pittch-cream);
  text-align: center;
  padding: 20px 40px;
  line-height: 0.85;
  position: relative;
  z-index: 0;
  border-top: 1px solid var(--pittch-border);
  /* Subtle darker tint so "PITTCH" is just visible against cream */
  -webkit-text-stroke: 1px rgba(55, 33, 11, 0.08);
  text-shadow: 0 0 0 rgba(55, 33, 11, 0.08);
  filter: contrast(0.92);
}
.pittch-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 20px 40px;
  border-top: 1px solid var(--pittch-border);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}
.pittch-footer__reg {
  opacity: 0.6;
}
.pittch-footer__address {
  font-style: normal;
  font-size: 13px;
  color: var(--pittch-mid);
  line-height: 1.65;
  margin: 8px 0 10px;
}
.pittch-footer__hours {
  font-size: 12px;
  color: var(--pittch-mid);
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .pittch-footer__main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 48px 32px 32px;
  }
  .pittch-footer__newsletter {
    grid-column: span 3;
  }
  .pittch-footer__col--contact {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .pittch-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 20px 24px;
  }
  .pittch-footer__newsletter {
    grid-column: span 2;
  }
  .pittch-footer__col--contact {
    grid-column: span 2;
  }
  .pittch-footer__watermark {
    padding: 16px 20px;
  }
  .pittch-footer__bottom {
    padding: 16px 20px;
  }
}


/* ================================================================
   PITTCH — SHARED UTILITIES (eyebrow, pill buttons)
   ================================================================ */

.pittch-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
  display: block;
}

/* Pill button base */
.giftbox-btn,
.about-btn {
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.giftbox-btn:hover,
.about-btn:hover { opacity: 0.88; }


/* ================================================================
   GIFT BOX PAGE — page-gift-box.php
   ================================================================ */

/* ── 1. HERO ───────────────────────────────────────────────────── */
.giftbox-hero {
  background: var(--pittch-brown);
  text-align: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.giftbox-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  width: 100%;
}
.giftbox-hero__eyebrow {
  color: var(--pittch-cream);
}
.giftbox-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  line-height: 1.15;
}
.giftbox-hero__heading-main {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--pittch-cream);
}
.giftbox-hero__heading-em {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(239,237,230,0.75);
}
.giftbox-hero__body {
  font-size: 15px;
  color: rgba(239,237,230,0.75);
  line-height: 1.7;
  max-width: 480px;
}
.giftbox-btn--outline {
  border: 1.5px solid rgba(239,237,230,0.6);
  color: var(--pittch-cream);
  background: transparent;
}
.giftbox-btn--outline:hover {
  border-color: var(--pittch-cream);
  opacity: 1;
}

/* ── 2. CURATION ───────────────────────────────────────────────── */
.giftbox-curation {
  background: var(--pittch-bg);
  padding: 80px 0;
}
.giftbox-curation__header {
  text-align: center;
  margin-bottom: 52px;
}
.giftbox-curation__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--pittch-brown);
  margin-bottom: 14px;
}
.giftbox-curation__sub {
  font-size: 15px;
  color: var(--pittch-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card grid */
.giftbox-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.giftbox-card {
  background: var(--pittch-white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(55,33,11,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.giftbox-card:hover {
  box-shadow: 0 8px 32px rgba(55,33,11,0.14);
  transform: translateY(-3px);
}
.giftbox-card__img {
  aspect-ratio: 4 / 3;
  background: var(--pittch-cream);
  overflow: hidden;
}
.giftbox-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.giftbox-card__img--placeholder {
  background: var(--pittch-bg);
}
.giftbox-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.giftbox-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pittch-brown);
  font-weight: 400;
}
.giftbox-card__desc {
  font-size: 14px;
  color: var(--pittch-mid);
  line-height: 1.65;
  flex: 1;
}
.giftbox-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--pittch-brown);
  margin-top: 4px;
}
.giftbox-card__price .woocommerce-Price-amount { font-weight: 700; }
.giftbox-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pittch-brown);
  border-bottom: 1.5px solid var(--pittch-border-strong);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.giftbox-card__link:hover { border-color: var(--pittch-brown); }

/* ── 3. WHY PITTCH ─────────────────────────────────────────────── */
.giftbox-why {
  background: var(--pittch-brown);
  padding: 80px 0;
}
.giftbox-why__header {
  text-align: center;
  margin-bottom: 52px;
}
.giftbox-why__eyebrow { color: var(--pittch-cream); }
.giftbox-why__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--pittch-cream);
  font-weight: 400;
  margin-bottom: 12px;
}
.giftbox-why__sub {
  font-size: 15px;
  color: rgba(239,237,230,0.65);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}
.giftbox-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.giftbox-why-card {
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.giftbox-why-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.giftbox-why-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--pittch-cream);
  font-weight: 400;
}
.giftbox-why-card__desc {
  font-size: 14px;
  color: rgba(239,237,230,0.65);
  line-height: 1.65;
}

/* ── 4. HOW IT WORKS ───────────────────────────────────────────── */
.giftbox-how {
  background: var(--pittch-bg);
  padding: 80px 0;
}
.giftbox-how__header {
  text-align: center;
  margin-bottom: 56px;
}
.giftbox-how__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--pittch-brown);
  font-weight: 400;
}

/* Timeline */
.giftbox-timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.giftbox-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 19px;
  width: 2px;
  background: var(--pittch-border);
}
.giftbox-timeline__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 44px;
  position: relative;
}
.giftbox-timeline__item--last { margin-bottom: 0; }
.giftbox-timeline__circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pittch-brown);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
}
.giftbox-timeline__content {
  padding-top: 8px;
}
.giftbox-timeline__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pittch-brown);
  font-weight: 700;
  margin-bottom: 6px;
}
.giftbox-timeline__desc {
  font-size: 14px;
  color: var(--pittch-mid);
  line-height: 1.7;
}

/* ── 5. GIFT CTA ───────────────────────────────────────────────── */
.giftbox-cta {
  background: #111111;
  padding: 100px 0;
}
.giftbox-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.giftbox-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--pittch-cream);
  font-weight: 400;
  line-height: 1.2;
}
.giftbox-cta__heading em {
  font-style: italic;
  color: rgba(239,237,230,0.75);
}
.giftbox-cta__sub {
  font-size: 15px;
  color: rgba(239,237,230,0.6);
  max-width: 440px;
  line-height: 1.7;
}
.giftbox-btn--filled {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  border: none;
}
.giftbox-btn--filled:hover { opacity: 0.88; }


/* ── Gift Box — Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .giftbox-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .giftbox-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .giftbox-why__grid {
    grid-template-columns: 1fr 1fr;
  }
  .giftbox-hero { padding: 60px 20px; min-height: 420px; }
  .giftbox-curation { padding: 60px 0; }
  .giftbox-why { padding: 60px 0; }
  .giftbox-how { padding: 60px 0; }
  .giftbox-cta { padding: 72px 0; }
}
@media (max-width: 480px) {
  .giftbox-why__grid {
    grid-template-columns: 1fr;
  }
  .giftbox-hero__heading-main,
  .giftbox-hero__heading-em { font-size: 2rem; }
}


/* ================================================================
   ABOUT PAGE — page-about.php (ab-* prefix)
   ================================================================ */

/* ── 1. HERO ───────────────────────────────────────────────────── */
.ab-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pittch-brown);
}
.ab-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.ab-hero:hover .ab-hero__bg { transform: scale(1.02); }
.ab-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,21,7,0.88) 0%, rgba(37,21,7,0.35) 50%, rgba(37,21,7,0.15) 100%);
}
.ab-hero__corner {
  position: absolute;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(239,237,230,0.5);
}
.ab-hero__corner--tl { top: 28px; left: 32px; }
.ab-hero__corner--tr { top: 28px; right: 32px; }
.ab-hero__corner--bl { bottom: 28px; left: 32px; }
.ab-hero__corner--br { bottom: 28px; right: 32px; }
.ab-hero__content {
  position: relative; z-index: 2;
  padding: 0 40px 72px;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.ab-hero__eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(239,237,230,0.6); margin-bottom: 18px;
}
.ab-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 700; color: var(--pittch-cream);
  line-height: 1.05; max-width: 760px;
}
.ab-hero__h1 em { font-style: italic; font-weight: 400; }
.ab-hero__sub {
  font-size: 15px; color: rgba(239,237,230,0.65);
  margin-top: 22px; line-height: 1.6; max-width: 480px;
}

/* ── 2. CREDENTIALS STRIP ─────────────────────────────────────── */
.ab-credentials {
  background: var(--pittch-brown);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(239,237,230,0.1);
}
.ab-credentials__item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 36px 48px; text-align: center; flex: 1;
}
.ab-credentials__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700; color: var(--pittch-cream); line-height: 1;
}
.ab-credentials__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(239,237,230,0.5);
}
.ab-credentials__divider {
  width: 1px; height: 56px;
  background: rgba(239,237,230,0.12); flex-shrink: 0;
}

/* ── 3. FOUNDER ────────────────────────────────────────────────── */
.ab-founder { background: var(--pittch-cream); padding: 100px 0; }
.ab-founder__inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: start;
}
.ab-founder__photo { position: sticky; top: 100px; }
.ab-founder__photo img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block; border-radius: 4px;
}
.ab-founder__copy { display: flex; flex-direction: column; gap: 18px; }
.ab-founder__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--pittch-brown); font-weight: 400; line-height: 1.08;
}
.ab-founder__copy p { font-size: 15px; color: var(--pittch-mid); line-height: 1.78; }
.ab-founder__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--pittch-brown); line-height: 1.65;
  border-left: 3px solid var(--pittch-brown); padding-left: 22px;
  margin-top: 8px;
}
.ab-founder__attr { font-size: 13px; color: var(--pittch-mid); font-style: italic; }

/* ── 4. PULL QUOTE ─────────────────────────────────────────────── */
.ab-quote { background: var(--pittch-brown); padding: 88px 40px; text-align: center; }
.ab-quote__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.ab-quote__mark {
  font-family: var(--font-display); font-size: 5rem;
  color: var(--pittch-cream); opacity: 0.4; line-height: 0.8;
}
.ab-quote__text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--pittch-cream); line-height: 1.45; max-width: 760px;
}
.ab-quote__attr {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(239,237,230,0.5);
}

/* ── 5. CRAFT ──────────────────────────────────────────────────── */
.ab-craft { background: var(--pittch-bg); padding: 100px 0; }
.ab-craft__inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.ab-craft__left {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 8px;
}
.ab-craft__number {
  font-family: var(--font-display);
  font-size: clamp(120px, 15vw, 200px);
  -webkit-text-stroke: 2px var(--pittch-brown);
  color: transparent; line-height: 0.9; letter-spacing: -0.04em;
}
.ab-craft__number-label {
  font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pittch-brown);
}
.ab-craft__right { display: flex; flex-direction: column; gap: 18px; }
.ab-craft__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--pittch-brown); font-weight: 400; line-height: 1.2;
}
.ab-craft__heading em { font-style: italic; }
.ab-craft__right p { font-size: 15px; color: var(--pittch-mid); line-height: 1.75; }
.ab-craft__rule { border: none; border-top: 1px solid var(--pittch-border); margin: 8px 0; }
.ab-craft__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ab-craft__stat { display: flex; flex-direction: column; gap: 4px; }
.ab-craft__stat-num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--pittch-brown); font-weight: 700;
}
.ab-craft__stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pittch-mid);
}

/* ── 6. GUILD OF MASTER CRAFTSMEN ─────────────────────────────── */
.ab-guild { background: var(--pittch-green); padding: 88px 40px; }
.ab-guild__inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 240px 1fr;
  gap: 72px; align-items: center;
}
.ab-guild__badge-wrap {
  display: flex; justify-content: center;
}
.ab-guild__badge {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.ab-guild__badge-svg {
  width: 96px; height: 96px;
  color: rgba(255,255,255,0.75);
}
.ab-guild__badge-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  max-width: 140px; line-height: 1.5;
}
.ab-guild__copy { display: flex; flex-direction: column; gap: 16px; }
.ab-guild__eyebrow { color: rgba(255,255,255,0.6); }
.ab-guild__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--pittch-white); line-height: 1.2; font-weight: 400;
}
.ab-guild__body { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.75; }
.ab-guild__pillars {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ab-guild__pillars li {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 12px;
}
.ab-guild__pillars li::before {
  content: ''; width: 24px; height: 1px;
  background: rgba(255,255,255,0.5); flex-shrink: 0;
}

/* ── 7. VALUES ─────────────────────────────────────────────────── */
.ab-values { background: var(--pittch-white); padding: 100px 0; }
.ab-values__head {
  margin-bottom: 56px;
  display: flex; flex-direction: column; gap: 12px;
}
.ab-values__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--pittch-brown); font-weight: 400; line-height: 1.15;
}
.ab-values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--pittch-border);
}
.ab-values__col {
  padding: 40px 32px; border-right: 1px solid var(--pittch-border);
  display: flex; flex-direction: column; gap: 14px;
}
.ab-values__col:last-child { border-right: none; }
.ab-values__num {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--pittch-border-strong); font-weight: 700; line-height: 1;
}
.ab-values__title {
  font-size: 16px; font-weight: 600; color: var(--pittch-brown); line-height: 1.2;
}
.ab-values__desc {
  font-size: 14px; color: var(--pittch-mid); line-height: 1.75;
}

/* ── 8. COLOURS ────────────────────────────────────────────────── */
.ab-colours {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  min-height: 640px;
}
.ab-colours__photo {
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.ab-colours:hover .ab-colours__photo { transform: scale(1.03); }
.ab-colours__photo--right { }
.ab-colours__centre {
  background: var(--pittch-cream); padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.ab-colours__eyebrow { }
.ab-colours__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  color: var(--pittch-brown); font-weight: 400; line-height: 1.2;
}
.ab-colours__body { font-size: 14px; color: var(--pittch-mid); line-height: 1.75; }
.ab-colours__link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pittch-brown); text-decoration: none;
  border-bottom: 1.5px solid var(--pittch-brown); padding-bottom: 2px;
  width: fit-content; transition: opacity 0.2s;
}
.ab-colours__link:hover { opacity: 0.6; }
.ab-colours__small img {
  width: 100%; max-width: 280px; border-radius: 4px; display: block;
  margin-top: 8px;
}

/* ── 9. CTA ────────────────────────────────────────────────────── */
.ab-cta { background: var(--pittch-brown); padding: 100px 0; }
.ab-cta__inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.ab-cta__eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(239,237,230,0.5);
}
.ab-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--pittch-cream); font-weight: 400; line-height: 1.2; max-width: 600px;
}
.ab-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.ab-cta__trust {
  font-size: 12px; color: rgba(239,237,230,0.45);
  letter-spacing: 0.04em; margin-top: 4px;
}

/* Outline button variant for dark backgrounds */
.pittch-btn--outline-dark {
  background: transparent;
  color: var(--pittch-cream);
  border: 1.5px solid rgba(239,237,230,0.4);
}
.pittch-btn--outline-dark:hover {
  border-color: var(--pittch-cream);
  background: rgba(239,237,230,0.08);
}

/* ── About — Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-values__col { border-bottom: 1px solid var(--pittch-border); }
  .ab-values__col:nth-child(2) { border-right: none; }
  .ab-values__col:nth-child(3),
  .ab-values__col:nth-child(4) { border-bottom: none; }
  .ab-guild__inner { grid-template-columns: 1fr 1.2fr; gap: 48px; }
  .ab-credentials__item { padding: 28px 32px; }
}
@media (max-width: 768px) {
  .ab-hero { min-height: 70vh; }
  .ab-hero__content { padding: 0 24px 56px; }
  .ab-hero__corner--tl, .ab-hero__corner--bl { left: 16px; }
  .ab-hero__corner--tr, .ab-hero__corner--br { right: 16px; }
  .ab-hero__corner--tl, .ab-hero__corner--tr { top: 16px; }
  .ab-hero__corner--bl, .ab-hero__corner--br { bottom: 16px; }

  .ab-credentials { padding: 0; }
  .ab-credentials__divider { display: none; }
  .ab-credentials__item { padding: 20px 16px; min-width: 50%; }

  .ab-founder { padding: 72px 0; }
  .ab-founder__inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-founder__photo { position: static; }

  .ab-craft { padding: 72px 0; }
  .ab-craft__inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-craft__left { align-items: center; }
  .ab-craft__stats { grid-template-columns: repeat(3, 1fr); }

  .ab-guild { padding: 64px 24px; }
  .ab-guild__inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-guild__badge-wrap { display: none; }

  .ab-values { padding: 72px 0; }
  .ab-values__grid { grid-template-columns: 1fr 1fr; }
  .ab-values__col { padding: 28px 24px; }
  .ab-values__col:nth-child(2) { border-right: none; }
  .ab-values__col:nth-child(3),
  .ab-values__col:nth-child(4) { border-bottom: none; }

  .ab-colours { grid-template-columns: 1fr; min-height: auto; }
  .ab-colours__photo { min-height: 280px; }
  .ab-colours__photo--right { display: none; }
  .ab-colours__centre { padding: 56px 28px; }

  .ab-cta { padding: 72px 0; }
}
@media (max-width: 480px) {
  .ab-values__grid { grid-template-columns: 1fr; }
  .ab-values__col { border-right: none; border-bottom: 1px solid var(--pittch-border); }
  .ab-values__col:last-child { border-bottom: none; }
  .ab-craft__stats { grid-template-columns: 1fr; gap: 16px; }
  .ab-cta__btns { flex-direction: column; align-items: center; }
  .ab-quote { padding: 60px 24px; }
  .ab-credentials__item { min-width: 50%; border-bottom: 1px solid rgba(239,237,230,0.1); }
}

/* Legacy about-* selectors kept for any remaining references */
.about-hero {
  background: var(--pittch-bg);
  padding: 80px 24px;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero__corner {
  position: absolute;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  opacity: 0.55;
}
.about-hero__corner--tl { top: 28px; left: 32px; }
.about-hero__corner--tr { top: 28px; right: 32px; }
.about-hero__corner--bl { bottom: 28px; left: 32px; }
.about-hero__corner--br { bottom: 28px; right: 32px; }

.about-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  width: 100%;
}
.about-hero__word {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 160px);
  font-weight: 700;
  color: var(--pittch-brown);
  line-height: 1;
  -webkit-text-stroke: 0;
  letter-spacing: -0.02em;
  margin: 0;
}
.about-hero__portrait {
  width: clamp(200px, 30vw, 480px);
  max-width: 480px;
  margin: 12px 0;
}
.about-hero__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about-hero__portrait-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(55,33,11,0.15);
  border-radius: 12px;
}

/* ── 2. FOUNDER ────────────────────────────────────────────────── */
.about-founder {
  background: var(--pittch-cream);
  padding: 100px 0;
}
.about-founder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-founder__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-founder__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--pittch-brown);
  font-weight: 400;
  line-height: 1.1;
}
.about-founder__copy p {
  font-size: 15px;
  color: var(--pittch-mid);
  line-height: 1.75;
}
.about-founder__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--pittch-brown);
  line-height: 1.65;
  border-left: 3px solid var(--pittch-brown);
  padding-left: 20px;
  margin-top: 8px;
}
.about-founder__attribution {
  font-size: 13px;
  color: var(--pittch-mid);
  font-style: italic;
}
.about-founder__photo {
  position: sticky;
  top: 100px;
}
.about-founder__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about-founder__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(55,33,11,0.12);
  border-radius: 12px;
}

/* ── 3. QUOTE PULLOUT ──────────────────────────────────────────── */
.about-quote {
  background: var(--pittch-brown);
  padding: 80px 40px;
  text-align: center;
}
.about-quote__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-quote__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--pittch-cream);
  opacity: 0.5;
  line-height: 0.8;
}
.about-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--pittch-cream);
  line-height: 1.45;
  max-width: 760px;
}
.about-quote__attr {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,237,230,0.55);
}

/* ── 4. CRAFT ──────────────────────────────────────────────────── */
.about-craft {
  background: var(--pittch-bg);
  padding: 100px 0;
}
.about-craft__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-craft__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.about-craft__number {
  font-family: var(--font-display);
  font-size: clamp(120px, 15vw, 200px);
  -webkit-text-stroke: 2px var(--pittch-brown);
  color: transparent;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.about-craft__number-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-brown);
}
.about-craft__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-craft__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.625rem);
  color: var(--pittch-brown);
  font-weight: 400;
  line-height: 1.2;
}
.about-craft__right p {
  font-size: 15px;
  color: var(--pittch-mid);
  line-height: 1.75;
}
.about-craft__rule {
  border: none;
  border-top: 1px solid var(--pittch-border-strong);
  margin: 8px 0;
}
.about-craft__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-craft__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-craft__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pittch-brown);
  line-height: 1;
}
.about-craft__stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}

/* ── 5. COLOURS SPLIT ──────────────────────────────────────────── */
.about-colours {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 600px;
}
.about-colours__photo {
  background-color: #2a1e14;
  background-size: cover;
  background-position: center;
}
.about-colours__center {
  background: var(--pittch-brown);
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-colours__eyebrow { color: var(--pittch-cream); }
.about-colours__body {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  color: var(--pittch-cream);
  line-height: 1.6;
}
.about-colours__small-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.about-colours__small-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 6. VALUES ─────────────────────────────────────────────────── */
.about-values {
  background: var(--pittch-bg);
  padding: 100px 0;
}
.about-values__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--pittch-brown);
  font-weight: 400;
  margin-bottom: 52px;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.about-values__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-values__num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--pittch-mid);
  opacity: 0.5;
  font-weight: 600;
}
.about-values__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pittch-brown);
  font-weight: 700;
}
.about-values__desc {
  font-size: 14px;
  color: var(--pittch-mid);
  line-height: 1.7;
}

/* ── 7. ABOUT CTA ──────────────────────────────────────────────── */
.about-cta {
  background: var(--pittch-brown);
  padding: 100px 0;
}
.about-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--pittch-cream);
  font-weight: 400;
  line-height: 1.2;
}
.about-cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.about-btn--cream {
  background: var(--pittch-cream);
  color: var(--pittch-brown);
}
.about-btn--dark {
  background: #1a1a1a;
  color: var(--pittch-cream);
}


/* ── About — Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-craft__inner {
    gap: 52px;
  }
}
@media (max-width: 768px) {
  .about-hero { padding: 60px 20px; min-height: 480px; }
  .about-hero__corner--tl,
  .about-hero__corner--bl { left: 16px; }
  .about-hero__corner--tr,
  .about-hero__corner--br { right: 16px; }
  .about-hero__corner--tl,
  .about-hero__corner--tr { top: 16px; }
  .about-hero__corner--bl,
  .about-hero__corner--br { bottom: 16px; }

  .about-founder__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-founder__photo { position: static; }

  .about-craft__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-craft__left { align-items: center; }

  .about-colours {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-colours__photo { min-height: 300px; }
  .about-colours__photo--right { display: none; }
  .about-colours__center { padding: 60px 32px; }

  .about-values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .about-cta { padding: 72px 0; }
  .about-founder { padding: 72px 0; }
  .about-craft { padding: 72px 0; }
  .about-values { padding: 72px 0; }
}
@media (max-width: 480px) {
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  .about-craft__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-cta__btns {
    flex-direction: column;
    align-items: center;
  }
  .about-colours__right { padding: 48px 24px; }
  .about-quote { padding: 60px 24px; }
}

/* ── SINGLE PRODUCT: shipping notice before ATC ─────────────── */
.sp-ship-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pittch-mid);
  line-height: 1.5;
  margin: 0;
}
.sp-ship-notice .sp-reassurance-dot {
  flex-shrink: 0;
}

.sp-atc-label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.sp-atc-price {
  font-weight: 500;
  font-size: 14px;
  opacity: 1;
  letter-spacing: 0;
}
/* Price HTML inside button — strip WC wrappers to plain text color */
.sp-atc-price .price,
.sp-atc-price .amount,
.sp-atc-price bdi {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.sp-atc-price del,
.sp-atc-price ins { display: none; }
.sp-atc-price ins { display: inline; text-decoration: none; }

/* ── Policy / Legal pages ── */
.pittch-policy-hero {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  text-align: center;
  padding: 80px 40px 60px;
}
.pittch-policy-hero .pittch-eyebrow { opacity: 0.5; color: var(--pittch-cream); }
.pittch-policy-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 8px 0 0;
  color: var(--pittch-cream);
  font-family: 'Playfair Display', Georgia, serif;
}
.pittch-policy-body {
  background: var(--pittch-bg);
  padding: 64px 40px 100px;
}
.pittch-prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--pittch-brown);
  line-height: 1.8;
  font-size: 15px;
}
.pittch-prose h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2.5em 0 0.6em;
  color: var(--pittch-brown);
}
.pittch-prose h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.8em 0 0.4em;
  color: var(--pittch-brown);
}
.pittch-prose p { margin: 0 0 1em; }
.pittch-prose ol, .pittch-prose ul { padding-left: 1.5em; margin: 0 0 1em; }
.pittch-prose li { margin-bottom: 0.5em; }
.pittch-prose strong { font-weight: 600; }
.pittch-prose a { color: var(--pittch-brown); text-decoration: underline; }
.pittch-prose a:hover { opacity: 0.7; }
.pittch-prose hr { border: none; border-top: 1px solid var(--pittch-border); margin: 2em 0; }

/* ── Policy hero — image variant ── */
.pittch-policy-hero--has-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.pittch-policy-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.pittch-policy-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,21,7,0.75) 0%, rgba(37,21,7,0.3) 60%, rgba(37,21,7,0.15) 100%);
}
.pittch-policy-hero__text {
  position: relative;
  z-index: 1;
}

/* ── Contact page ── */
.pittch-contact-page .pittch-policy-hero { /* inherits from policy hero */ }
.pittch-contact-body {
  background: var(--pittch-bg);
  padding: 64px 40px 100px;
}
.pittch-contact-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.pittch-contact-info h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--pittch-brown);
}
.pittch-contact-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pittch-light);
  margin: 20px 0 4px;
}
.pittch-contact-label:first-of-type { margin-top: 0; }
.pittch-contact-info p {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--pittch-mid);
  line-height: 1.6;
}
.pittch-contact-info a { color: var(--pittch-brown); text-decoration: none; }
.pittch-contact-info a:hover { text-decoration: underline; }
.pittch-contact-notice {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.pittch-contact-notice--success { background: #e6f4ea; color: #1a5c2a; }
.pittch-contact-notice--error   { background: #fce8e6; color: #c62828; }
.pittch-contact-notice--error a { color: #c62828; }
.pittch-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.pittch-contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.pittch-contact-field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  margin-bottom: 6px;
  font-weight: 500;
}
.pittch-contact-field input,
.pittch-contact-field textarea {
  border: 1px solid var(--pittch-border-strong);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--pittch-brown);
  background: var(--pittch-white);
  outline: none;
  transition: border-color 0.2s;
}
.pittch-contact-field input:focus,
.pittch-contact-field textarea:focus { border-color: var(--pittch-brown); }
.pittch-contact-field textarea { min-height: 140px; resize: vertical; }
.pittch-contact-submit {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.pittch-contact-submit:hover { opacity: 0.85; }
@media (max-width: 768px) {
  .pittch-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pittch-contact-row  { grid-template-columns: 1fr; }
  .pittch-policy-body,
  .pittch-contact-body { padding: 40px 20px 60px; }
  .pittch-policy-hero  { padding: 56px 20px 40px; }
  /* Show left side of hero image on mobile so at least one sock is visible */
  .pittch-policy-hero__bg { background-position: left center; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG — single post & archive listing
   ═══════════════════════════════════════════════════════════════════ */

/* ── Blog Hero ─────────────────────────────────────────────────── */
.blog-hero {
  width: 100%;
  height: 50vh;
  min-height: 280px;
  max-height: 640px;
  overflow: hidden;
  background: var(--pittch-brown);
}
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Single post layout ────────────────────────────────────────── */
.blog-post {
  background: var(--pittch-cream);
  padding-bottom: 80px;
}

.blog-post__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

/* Header */
.blog-post__header {
  margin-bottom: 40px;
}
.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}
.blog-post__cat {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.blog-post__cat:hover { opacity: 0.8; }
.blog-post__date,
.blog-post__author { color: var(--pittch-mid); }

.blog-post__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pittch-brown);
}

/* Body content */
.blog-post__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pittch-brown);
}
.blog-post__body h2,
.blog-post__body h3,
.blog-post__body h4 {
  font-family: var(--font-display);
  color: var(--pittch-brown);
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.blog-post__body h2 { font-size: 28px; }
.blog-post__body h3 { font-size: 22px; }
.blog-post__body p  { margin-bottom: 1.4em; }
.blog-post__body ul,
.blog-post__body ol {
  margin: 0 0 1.4em 1.5em;
  list-style: disc;
}
.blog-post__body ol  { list-style: decimal; }
.blog-post__body li  { margin-bottom: 0.4em; }
.blog-post__body a   { text-decoration: underline; text-decoration-color: var(--pittch-border-strong); }
.blog-post__body a:hover { text-decoration-color: var(--pittch-brown); }
.blog-post__body img { max-width: 100%; height: auto; margin: 1.6em 0; }
.blog-post__body blockquote {
  border-left: 3px solid var(--pittch-brown);
  margin: 1.6em 0;
  padding: 0.8em 1.4em;
  font-style: italic;
  color: var(--pittch-mid);
}
.blog-post__body figure { margin: 1.6em 0; }
.blog-post__body figcaption {
  font-size: 13px;
  color: var(--pittch-mid);
  text-align: center;
  margin-top: 6px;
}

/* Page links (paginated posts) */
.blog-post__page-links {
  margin: 32px 0;
  font-size: 14px;
}

/* Author bio */
.blog-post__author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-top: 1px solid var(--pittch-border);
  border-bottom: 1px solid var(--pittch-border);
  padding: 32px 0;
  margin-top: 48px;
}
.blog-post__author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.blog-post__author-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--pittch-brown);
}
.blog-post__author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pittch-mid);
}

/* Prev/Next navigation */
.blog-post__nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--pittch-border);
}
.blog-post__nav-item {
  max-width: 48%;
}
.blog-post__nav-item--next { text-align: right; margin-left: auto; }
.blog-post__nav-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  margin-bottom: 6px;
}
.blog-post__nav-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--pittch-brown);
  line-height: 1.3;
}
.blog-post__nav-link:hover { text-decoration: underline; }

/* Comments */
.blog-post__comments {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

/* ── Blog Archive ───────────────────────────────────────────────── */
.blog-archive {
  background: var(--pittch-cream);
  padding-bottom: 80px;
}

.blog-archive__header {
  text-align: center;
  padding: 64px 24px 48px;
  max-width: 760px;
  margin: 0 auto;
}
.blog-archive__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--pittch-brown);
  margin-bottom: 12px;
}
.blog-archive__desc {
  font-size: 16px;
  color: var(--pittch-mid);
  line-height: 1.6;
  margin-top: 12px;
}
.blog-archive__empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--pittch-mid);
}

/* ── Blog Grid ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 4px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Blog Card ─────────────────────────────────────────────────── */
.blog-card {
  background: var(--pittch-white);
  display: flex;
  flex-direction: column;
}

.blog-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--pittch-border);
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pittch-brown);
  margin-bottom: 10px;
}
.blog-card__title a:hover { text-decoration: underline; }
.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pittch-mid);
  margin-bottom: 18px;
  flex: 1;
}
.blog-card__more {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pittch-brown);
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.blog-card__more:hover { opacity: 0.6; }

/* ── Pagination ─────────────────────────────────────────────────── */
.blog-pagination {
  padding: 48px 24px 0;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pittch-brown);
  border: 1px solid var(--pittch-border-strong);
  transition: background 0.2s, color 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  border-color: var(--pittch-brown);
}
.blog-pagination .page-numbers.dots { border-color: transparent; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid                    { grid-template-columns: 1fr; }
  .blog-post__content           { padding-top: 36px; }
  .blog-post__author-box        { flex-direction: column; }
  .blog-post__nav               { flex-direction: column; gap: 16px; }
  .blog-post__nav-item--next    { text-align: left; }
  .blog-archive__header         { padding: 40px 24px 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT — MOBILE LAYOUT
   Restacks the 3-panel desktop layout into a single column:
   gallery (top) → product info / ATC → description / accordion
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav: always solid on single product at mobile size */
  .single-product .nav-wrapper { background: var(--pittch-cream) !important; box-shadow: none; }
  .single-product .nav-wrapper:not(.is-scrolled) .nav-logo    { color: var(--pittch-brown) !important; }
  .single-product .nav-wrapper:not(.is-scrolled) .nav-icon-btn { color: var(--pittch-brown) !important; }
  .single-product .nav-wrapper:not(.is-scrolled) .nav-hamburger span { background: var(--pittch-brown) !important; }

  /* Single column, no negative top margin, natural height */
  .sp-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    margin-top: 0;
    min-height: auto;
  }

  /* Gallery: always row 1 */
  .sp-gallery {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    border-right: none;
  }

  /* Thumbnail strip: switch from vertical to horizontal scroll */
  .sp-thumbs {
    position: static;
    width: 100%;
    height: auto;
    margin-right: 0;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 16px;
    gap: 8px;
    top: auto;
    scrollbar-width: none;
  }
  .sp-thumbs::-webkit-scrollbar { display: none; }
  .sp-thumb { width: 54px; flex-shrink: 0; aspect-ratio: 3/4; }
  .sp-image-slide { aspect-ratio: 4/5; }

  /* Right panel (ATC, swatches): row 2 */
  .sp-right {
    grid-column: 1;
    grid-row: 2;
    position: static;
    max-height: none;
    overflow-y: visible;
    padding: 28px 20px 24px;
    border-left: none;
    border-top: 1px solid var(--pittch-border);
  }

  /* Left panel (description, accordion): row 3 */
  .sp-left {
    grid-column: 1;
    grid-row: 3;
    position: static;
    max-height: none;
    overflow-y: visible;
    padding: 28px 20px 80px;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid var(--pittch-border);
  }

  /* ATC button — remove auto margin that pushes it to panel bottom */
  .sp-atc-wrap { margin-top: 0; }

  /* Hero: adjust bottom padding on smaller screens */
  .hero__content { bottom: 60px; }
}

@media (max-width: 480px) {
  .pittch-product-row { grid-template-columns: repeat(2, 1fr); }

  /* Smaller hero text well */
  .hero__content { bottom: 48px; }
  .hero-pill     { min-width: 160px; padding: 12px 20px; font-size: 13px; }

  /* Tighter sp-right padding on phones */
  .sp-right { padding: 20px 16px 20px; }
  .sp-left  { padding: 20px 16px 72px; }

  /* Smaller swatch thumbnails on phone */
  .sp-swatch--img { width: 60px; height: 78px; }

  /* Stats section: tighter on phone */
  .pittch-stats { padding: 14px 20px; }
  .pittch-stats__number { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO PRODUCT LABEL
═══════════════════════════════════════════════════════════════ */
.hero__product-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT — EXPRESS CHECKOUT (Apple Pay / Google Pay)
═══════════════════════════════════════════════════════════════ */
.sp-express-pay {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-express-pay:empty { display: none; }
#wc-stripe-payment-request-button-separator-container {
  margin: 10px 0 0 !important;
  text-align: center;
}
#wc-stripe-payment-request-button-separator p,
#wc-stripe-payment-request-button-separator {
  font-size: 10px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pittch-mid) !important;
  margin: 0 !important;
}
#wc-stripe-payment-request-button {
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE CHECKOUT
═══════════════════════════════════════════════════════════════ */
.woocommerce-checkout-wrap,
.woocommerce-page:not(.single-product) .woocommerce {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.woocommerce-checkout h3,
#order_review_heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  border-bottom: 1px solid var(--pittch-border);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.woocommerce-checkout .form-row { margin-bottom: 14px; }
.woocommerce-checkout .form-row label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  margin-bottom: 5px;
}
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--pittch-border);
  background: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--pittch-brown);
  outline: none;
  border-radius: 0;
  box-sizing: border-box;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus { border-color: var(--pittch-brown); }
.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select { border-color: #b03a2e; }
.woocommerce-checkout .form-row textarea { height: 80px; resize: vertical; }

/* Coupon / info notices */
.woocommerce-info {
  border: 1px solid var(--pittch-border) !important;
  border-left: 3px solid var(--pittch-brown) !important;
  background: #fff !important;
  padding: 12px 16px !important;
  margin-bottom: 24px !important;
  font-size: 14px;
  color: var(--pittch-mid);
}
.woocommerce-info::before { display: none !important; }
.woocommerce-info a { color: var(--pittch-brown); font-weight: 600; }

/* Free shipping notice line */
.woocommerce-checkout .wc-free-shipping-notice,
.woocommerce-checkout > p:first-child {
  font-size: 13px;
  color: var(--pittch-mid);
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pittch-border);
}

/* Order review table */
table.shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
table.shop_table.woocommerce-checkout-review-order-table th,
table.shop_table.woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--pittch-border);
  color: var(--pittch-brown);
  vertical-align: middle;
}
table.shop_table.woocommerce-checkout-review-order-table thead th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  border-bottom: 2px solid var(--pittch-border);
}
table.shop_table.woocommerce-checkout-review-order-table .order-total th,
table.shop_table.woocommerce-checkout-review-order-table .order-total td {
  border-bottom: none;
  font-size: 16px;
  font-weight: 700;
  padding-top: 16px;
}
table.shop_table.woocommerce-checkout-review-order-table .cart-subtotal td,
table.shop_table.woocommerce-checkout-review-order-table .shipping td { font-size: 13px; color: var(--pittch-mid); }

/* Payment section */
#payment { background: transparent !important; border: none !important; border-radius: 0 !important; padding: 0 !important; }
#payment ul.payment_methods { padding: 0 !important; margin: 0 0 20px !important; list-style: none !important; }
#payment ul.payment_methods li {
  padding: 14px 0 !important;
  border-top: 1px solid var(--pittch-border) !important;
  background: transparent !important;
}
#payment ul.payment_methods li:last-child { border-bottom: 1px solid var(--pittch-border) !important; }
#payment ul.payment_methods li label {
  font-size: 14px !important;
  color: var(--pittch-brown) !important;
  font-weight: 500 !important;
  cursor: pointer;
}
#payment .payment_box {
  background: var(--pittch-bg) !important;
  padding: 14px !important;
  margin: 8px 0 4px !important;
  font-size: 13px !important;
  color: var(--pittch-mid) !important;
  border-radius: 0 !important;
  border: 1px solid var(--pittch-border) !important;
}
#place_order {
  width: 100% !important;
  background: var(--pittch-brown) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 24px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  font-family: var(--font-body) !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
  margin-top: 8px !important;
}
#place_order:hover { background: #1e1007 !important; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE PRODUCT ROW — TABLET & PHONE (768px and below)
   4 columns → 2 columns so cards are large enough to read and tap
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Tablet: drop to 2 columns — 4 narrow cards look cramped */
  .pittch-product-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Phone: 2 columns, slightly smaller gap */
  .pittch-product-row { grid-template-columns: repeat(2, 1fr); gap: 2px; }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT — MOBILE GALLERY HORIZONTAL SWIPE (iPhone)
   Gallery capped at 48vh so the ATC section is visible without
   scrolling on most phones. Slides fill the container height.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Images: swipeable horizontal carousel — bounded height */
  .sp-images {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    order: 1;
    /* Cap height: 48vh gives ~405px on iPhone 13, leaving room for swatches + ATC */
    height: min(48vh, 460px);
  }
  .sp-images::-webkit-scrollbar { display: none; }
  .sp-image-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;         /* fill the bounded .sp-images height */
    scroll-snap-align: start;
    aspect-ratio: unset;  /* let the container control height, not aspect-ratio */
    overflow: hidden;
  }
  .sp-image-slide {
    background: var(--pittch-bg); /* cream fill for product images with white backgrounds */
  }
  .sp-image-slide img {
    width: 100%; height: 100%;
    object-fit: contain;     /* show the full product — no cropping */
    object-position: center;
    display: block;
  }
  /* Thumbnail strip rendered below the carousel */
  .sp-thumbs { order: 2; }
  /* Wrap needs to allow ordering */
  .sp-gallery { overflow: hidden; }
}

/* ── Hide nav subnav on tablet — hamburger handles all nav ───────── */
@media (max-width: 768px) {
  .nav-subnav { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — TRUST STRIP
═══════════════════════════════════════════════════════════════ */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}
.hero__trust span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}
.hero__trust span[aria-hidden="true"] { opacity: 0.25; }
@media (max-width: 480px) {
  .hero__trust { gap: 4px 8px; }
  .hero__trust span { font-size: 10px; }
  .hero__trust span[aria-hidden="true"] { display: none; }
  .home .hero { min-height: 560px; }
  /* Anchor hero crop to left on mobile so the sock is visible rather than dead-centre sky */
  .hero__img { background-position: center; }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND INTRO — SEO DESCRIPTION + CATEGORY TILES
═══════════════════════════════════════════════════════════════ */
.pittch-brand-intro {
  background: #fff;
  padding: 80px 40px 0;
}
.pittch-brand-intro__copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 56px;
}
.pittch-brand-intro__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  margin-bottom: 16px;
}
.pittch-brand-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--pittch-brown);
  line-height: 1.25;
  margin-bottom: 20px;
}
.pittch-brand-intro__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pittch-mid);
  margin-bottom: 10px;
}
.pittch-brand-intro__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pittch-brown);
  text-decoration: none;
  border-bottom: 1.5px solid var(--pittch-brown);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.pittch-brand-intro__link:hover { opacity: 0.6; }

/* Category editorial tiles */
.pittch-cat-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pittch-cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  background: var(--pittch-bg);
}
.pittch-cat-tile__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.pittch-cat-tile__placeholder {
  width: 100%; height: 100%;
  background: var(--pittch-bg);
}
.pittch-cat-tile:hover .pittch-cat-tile__img { transform: scale(1.04); }
.pittch-cat-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,21,7,0.75) 0%, rgba(37,21,7,0.1) 55%, transparent 100%);
}
.pittch-cat-tile__content {
  position: absolute; bottom: 28px; left: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.pittch-cat-tile__label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.pittch-cat-tile__name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 600; line-height: 1.2;
  color: #fff;
}
.pittch-cat-tile__cta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  margin-top: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.pittch-cat-tile:hover .pittch-cat-tile__cta { color: #fff; border-color: rgba(255,255,255,0.8); }
@media (max-width: 768px) {
  .pittch-cat-feature { grid-template-columns: 1fr 1fr; }
  .pittch-cat-feature .pittch-cat-tile:last-child { grid-column: span 2; aspect-ratio: 2/1; }
  .pittch-brand-intro { padding: 56px 20px 0; }
}
@media (max-width: 480px) {
  .pittch-cat-feature { grid-template-columns: 1fr; }
  .pittch-cat-feature .pittch-cat-tile:last-child { grid-column: auto; aspect-ratio: 3/4; }
  .pittch-cat-tile__content { bottom: 20px; left: 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════════ */
.pittch-faq {
  background: #fff;
  padding: 88px 40px;
}
.pittch-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.pittch-faq__head {
  text-align: center;
  margin-bottom: 48px;
}
.pittch-faq__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pittch-mid);
  margin-bottom: 12px;
}
.pittch-faq__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--pittch-brown);
  line-height: 1.2;
}
.pittch-faq__list { border-top: 1px solid var(--pittch-border); }
.pittch-faq__item { border-bottom: 1px solid var(--pittch-border); }
.pittch-faq__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--pittch-brown);
  background: none; border: none;
  text-align: left; cursor: pointer;
  line-height: 1.4;
  font-family: var(--font-body);
}
.pittch-faq__trigger:hover { color: var(--pittch-brown); opacity: 0.75; }
.pittch-faq__icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  stroke: currentColor; fill: none;
  transition: transform 0.22s ease;
}
.pittch-faq__item.is-open .pittch-faq__icon { transform: rotate(45deg); }
.pittch-faq__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--pittch-mid);
  padding-bottom: 22px;
}
.pittch-faq__body[hidden] { display: none; }
.pittch-faq__body p { margin-bottom: 0; }
.pittch-faq__body a { color: var(--pittch-brown); }
.pittch-faq__footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--pittch-mid);
}
.pittch-faq__footer a {
  color: var(--pittch-brown);
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .pittch-faq { padding: 64px 24px; }
  .pittch-faq__trigger { font-size: 14px; padding: 18px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   MAILCHIMP FORM STATUS MESSAGES
═══════════════════════════════════════════════════════════════ */
.pittch-mc-status {
  font-size: 13px;
  margin-top: 10px;
  min-height: 20px;
  line-height: 1.5;
}
.pittch-mc-status.is-success { color: var(--pittch-green); }
.pittch-mc-status.is-error   { color: #b03a2e; }
.pittch-mc-status--footer     { color: rgba(239,237,230,0.75); }
.pittch-mc-status--footer.is-success { color: var(--pittch-green); }
.pittch-mc-status--footer.is-error   { color: #e5a09a; }

/* Contact form newsletter checkbox */
.pittch-contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.pittch-contact-checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--pittch-brown);
  cursor: pointer;
}
.pittch-contact-checkbox span {
  font-size: 13px;
  color: var(--pittch-mid);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE AUDIT FIXES — June 2026
   All fixes target WCAG AA compliance and usability on real devices
═══════════════════════════════════════════════════════════════ */

/* ── Announcement ticker: too small (10px) & 80px gap on mobile ── */
@media (max-width: 768px) {
  .nav-utility { height: 32px; }
  .nav-utility__track { gap: 40px; }
  .nav-utility__track span { font-size: 10px; letter-spacing: 0.12em; }
}
@media (max-width: 480px) {
  /* On small phones the ticker is unreadable at speed — hide it */
  .nav-utility { display: none; }
}

/* ── Logo tagline "Made in Britain": keep visible at all sizes ── */
@media (max-width: 768px) {
  .nav-logo-tagline { font-size: 6px; letter-spacing: 0.12em; }
}

/* ── Product card name & price: ensure 12px minimum on mobile ─── */
@media (max-width: 768px) {
  .product-card-name  { font-size: 12px; }
  .product-card-price { font-size: 12px; }
}

/* ── Cart drawer quantity buttons: 28px → 40px ────────────────── */
/* Already fixed inline above; reinforce here for touch targets */
@media (max-width: 768px) {
  .cart-drawer__qty { gap: 8px; }
  .cart-drawer__qty-val { font-size: 15px; min-width: 24px; }
}

/* ── Cart drawer upsell: 3-column → 2-column on mobile ─────────── */
@media (max-width: 480px) {
  .cart-drawer__upsell-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cart drawer item layout: tighten padding on small screens ─── */
@media (max-width: 480px) {
  .cart-drawer__item { padding: 16px; gap: 12px; }
  .cart-drawer__item-img { width: 80px; height: 100px; }
  .cart-drawer__header { padding: 16px; }
}

/* ── Homepage newsletter form: stack vertically on mobile ───────── */
@media (max-width: 640px) {
  .pittch-newsletter__form {
    flex-direction: column;
    gap: 8px;
  }
  .pittch-newsletter__input { border-radius: 4px; }
  .pittch-newsletter__form .pittch-btn--green { border-radius: 4px; width: 100%; }
}

/* ── Footer newsletter form: stack vertically on mobile ─────────── */
@media (max-width: 640px) {
  .pittch-footer__nl-form {
    flex-direction: column;
    gap: 8px;
  }
  .pittch-footer__nl-form input { border-radius: 4px 4px 0 0; }
  .pittch-footer__nl-form button { border-radius: 0 0 4px 4px; width: 100%; }
}

/* ── Contact form: label font size on mobile ────────────────────── */
@media (max-width: 768px) {
  .pittch-contact-label { font-size: 11px; }
  .pittch-contact-field label { font-size: 11px; }
}

/* ── Search bar: reduce padding on mobile ───────────────────────── */
@media (max-width: 768px) {
  .nav-search-bar .search-form { padding: 0 16px; }
  .nav-search-bar input[type="search"] { font-size: 15px; padding: 12px 16px; }
}

/* ── Checkout form labels: keep readable on all screens ─────────── */
@media (max-width: 480px) {
  .woocommerce-checkout .form-row label { font-size: 11px; }
  .woocommerce-checkout .form-row input,
  .woocommerce-checkout .form-row select,
  .woocommerce-checkout .form-row textarea { padding: 10px 12px; font-size: 15px; }
  #place_order { font-size: 13px !important; }
}

/* ── Footer: single column stack on phones ──────────────────────── */
@media (max-width: 480px) {
  .pittch-footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 20px 24px;
  }
  .pittch-footer__newsletter { grid-column: 1; }
  .pittch-footer__col--contact { grid-column: 1; }
  .pittch-footer__bottom {
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    font-size: 10px;
    text-align: center;
  }
}

/* ── Single product: swatches 44px touch target on mobile ───────── */
@media (max-width: 480px) {
  .sp-swatch--colour { width: 44px; height: 44px; }
  .sp-size-btn { min-width: 56px; height: 44px; font-size: 12.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   320px — Very small phones (iPhone SE 1st gen, budget Android)
   Last resort adjustments to prevent horizontal overflow
═══════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  /* Hero pills */
  .hero-pill { min-width: 130px; padding: 11px 16px; font-size: 12px; }

  /* Tighter product row on tiny screens */
  .pittch-product-row { gap: 1px; }
  .product-grid { gap: 1px !important; }

  /* Tighter SP padding */
  .sp-right { padding: 16px 12px 16px; }
  .sp-left  { padding: 16px 12px 60px; }

  /* Nav */
  .nav-main { padding: 0 12px; }
  .nav-icon-btn { width: 36px; height: 36px; }

  /* Section headings */
  .pittch-section-title { font-size: 1.4rem; }
  .pittch-section-head { margin-bottom: 20px; }

  /* ATC button */
  .sp-atc-btn { font-size: 12px; padding: 15px 12px; }

  /* Footer condensed */
  .pittch-footer__main { padding: 28px 16px 20px; }
}

/* ================================================================
   HOMEPAGE BUNDLE PROMO STRIP
================================================================ */
.pittch-bundle-promo {
  background: var(--pittch-brown);
  padding: 64px 40px;
}
.pittch-bundle-promo__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.pittch-bundle-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pittch-bundle-promo__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239,237,230,0.5);
}
.pittch-bundle-promo__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--pittch-cream);
  line-height: 1.1;
}
.pittch-bundle-promo__body {
  font-size: 15px;
  color: rgba(239,237,230,0.72);
  line-height: 1.65;
  max-width: 420px;
}
.pittch-bundle-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--pittch-cream);
  color: var(--pittch-brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}
.pittch-bundle-promo__cta svg { width: 14px; height: 14px; }
.pittch-bundle-promo__cta:hover { background: #e8e4db; }

.pittch-bundle-promo__tiers {
  display: flex;
  gap: 12px;
}
.pittch-bundle-promo__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 28px;
  border: 1.5px solid rgba(239,237,230,0.25);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  min-width: 140px;
  border-radius: 6px;
}
.pittch-bundle-promo__tier:hover { border-color: rgba(239,237,230,0.6); background: rgba(239,237,230,0.06); }
.pittch-bundle-promo__tier--highlight {
  background: rgba(239,237,230,0.1);
  border-color: rgba(239,237,230,0.5);
}
.pittch-bundle-promo__tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pittch-green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  white-space: nowrap;
}
.pittch-bundle-promo__tier-pct {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--pittch-cream);
  line-height: 1;
}
.pittch-bundle-promo__tier-range {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239,237,230,0.75);
}
.pittch-bundle-promo__tier-note {
  font-size: 11px;
  color: rgba(239,237,230,0.5);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .pittch-bundle-promo__inner { grid-template-columns: 1fr; gap: 32px; }
  .pittch-bundle-promo__tiers { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .pittch-bundle-promo { padding: 48px 20px; }
  .pittch-bundle-promo__tier { padding: 18px 20px; min-width: 120px; }
  .pittch-bundle-promo__tier-pct { font-size: 22px; }
}
@media (max-width: 480px) {
  .pittch-bundle-promo__tiers { flex-direction: column; align-items: stretch; }
  .pittch-bundle-promo__tier  { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ================================================================
   TRUST BAR (updated brand-stats)
================================================================ */
.pittch-trust-bar {
  background: var(--pittch-brown);
  padding: 0;
}
.pittch-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pittch-trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
  text-align: center;
}
.pittch-trust-bar__stars {
  font-size: 18px;
  color: var(--pittch-cream);
  letter-spacing: 2px;
  line-height: 1;
}
.pittch-trust-bar__number {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--pittch-cream);
  line-height: 1;
}
.pittch-trust-bar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,237,230,0.55);
}
.pittch-trust-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(239,237,230,0.15);
  flex-shrink: 0;
}

/* Discount strip underneath the stats */
.pittch-trust-bar__discount-strip {
  border-top: 1px solid rgba(239,237,230,0.12);
  padding: 14px 40px;
  text-align: center;
}
.pittch-trust-bar__discount-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(239,237,230,0.7);
  transition: color 0.2s;
}
.pittch-trust-bar__discount-link:hover { color: var(--pittch-cream); }
.pittch-trust-bar__discount-pill {
  padding: 4px 12px;
  border: 1px solid rgba(239,237,230,0.3);
  color: var(--pittch-cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
}
.pittch-trust-bar__discount-pill--green {
  background: var(--pittch-green);
  border-color: var(--pittch-green);
}
.pittch-trust-bar__discount-arrow { color: rgba(239,237,230,0.5); }

@media (max-width: 768px) {
  .pittch-trust-bar__inner { gap: 0; padding: 20px; }
  .pittch-trust-bar__item  { padding: 0 16px; }
  .pittch-trust-bar__discount-strip { padding: 12px 20px; }
}
@media (max-width: 480px) {
  .pittch-trust-bar__divider { display: none; }
  .pittch-trust-bar__inner   { gap: 12px; }
  .pittch-trust-bar__item    { padding: 8px 12px; }
}

/* ================================================================
   BRAND STORY (updated brand-intro)
================================================================ */
.pittch-brand-story {
  background: var(--pittch-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.pittch-brand-story__left {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.pittch-brand-story__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}
.pittch-brand-story__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--pittch-brown);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pittch-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--pittch-border);
}
.pittch-feature-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--pittch-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--pittch-brown);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pittch-feature-list__icon {
  font-size: 16px;
  color: var(--pittch-green);
  line-height: 1;
  flex-shrink: 0;
  font-style: normal;
}
.pittch-brand-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}
.pittch-brand-story__cta svg { width: 14px; height: 14px; }
.pittch-brand-story__cta:hover { background: #1e1007; }

/* Right: category tiles in a 2×2 grid (or 1 col for < 3 cats) */
.pittch-brand-story__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
/* If only 2 tiles, span first tile full width */
.pittch-brand-story__tiles .pittch-story-tile:first-child:nth-last-child(2) {
  grid-column: span 2;
}
.pittch-story-tile {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: var(--pittch-bg);
  min-height: 200px;
}
.pittch-story-tile__bg {
  position: absolute; inset: 0;
}
.pittch-story-tile__bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.pittch-story-tile:hover .pittch-story-tile__bg img { transform: scale(1.04); }
.pittch-story-tile__placeholder { width: 100%; height: 100%; background: var(--pittch-bg); }
.pittch-story-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(37,21,7,0.78) 0%, rgba(37,21,7,0.1) 60%, transparent 100%);
}
.pittch-story-tile__content {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 3px;
}
.pittch-story-tile__label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.pittch-story-tile__name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 600; color: #fff; line-height: 1.2;
}
.pittch-story-tile__cta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* SEO copy strip under brand story */
.pittch-brand-seo {
  background: var(--pittch-white);
  border-top: 1px solid var(--pittch-border);
  padding: 40px;
}
.pittch-brand-seo__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pittch-brand-seo__inner p { font-size: 14px; line-height: 1.75; color: var(--pittch-mid); }
.pittch-brand-seo__link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pittch-brown);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .pittch-brand-story       { grid-template-columns: 1fr; min-height: auto; }
  .pittch-brand-story__left { padding: 56px 40px; }
  .pittch-brand-story__tiles {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    height: 320px;
  }
  .pittch-brand-story__tiles .pittch-story-tile:first-child:nth-last-child(2) {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .pittch-brand-story__left  { padding: 48px 20px 40px; }
  .pittch-brand-story__tiles { grid-template-columns: 1fr 1fr; height: 260px; }
  .pittch-brand-seo           { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .pittch-brand-story__tiles { grid-template-columns: 1fr; height: auto; }
  .pittch-story-tile          { min-height: 160px; }
}

/* ================================================================
   REVIEWS MASONRY / BENTO
================================================================ */
.pittch-reviews-masonry {
  background: var(--pittch-cream);
  padding: 80px 40px;
}
.pittch-reviews-masonry__head {
  text-align: center;
  margin-bottom: 56px;
}
.pittch-reviews-masonry__stars-row {
  font-size: 28px;
  color: var(--pittch-brown);
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.pittch-reviews-masonry__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  color: var(--pittch-brown);
  font-weight: 700;
  line-height: 1.1;
}
.pittch-reviews-masonry__sub {
  font-size: 15px;
  color: var(--pittch-mid);
  margin-top: 10px;
}

.pittch-reviews-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.pittch-review-bento-card {
  background: var(--pittch-white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Featured card spans 2 rows */
.pittch-review-bento-card--featured {
  background: var(--pittch-brown);
  grid-row: span 2;
  padding: 40px 32px;
}
.pittch-review-bento-card--featured .pittch-review-bento-card__stars { color: var(--pittch-cream); }
.pittch-review-bento-card--featured .pittch-review-bento-card__text  { color: var(--pittch-cream); }
.pittch-review-bento-card--featured .pittch-review-bento-card__name  { color: var(--pittch-cream); }
.pittch-review-bento-card--featured .pittch-review-bento-card__location,
.pittch-review-bento-card--featured .pittch-review-bento-card__product {
  color: rgba(239,237,230,0.6);
}

/* Bundle deal card */
.pittch-review-bento-card--deal {
  background: var(--pittch-green);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: background 0.2s;
}
.pittch-review-bento-card--deal:hover { background: #4e6d3d; }
.pittch-deal-card__eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.pittch-deal-card__pct {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700; color: #fff; line-height: 1;
}
.pittch-deal-card__pct span {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); display: block; margin-top: 2px;
}
.pittch-deal-card__or {
  font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pittch-deal-card__cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

.pittch-review-bento-card__stars { font-size: 14px; color: var(--pittch-brown); letter-spacing: 2px; }
.pittch-review-bento-card__text  {
  font-size: 14px; line-height: 1.7; color: var(--pittch-brown); flex: 1;
}
.pittch-review-bento-card__footer {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 12px; border-top: 1px solid var(--pittch-border);
}
.pittch-review-bento-card--featured .pittch-review-bento-card__footer {
  border-top-color: rgba(239,237,230,0.2);
}
.pittch-review-bento-card__name     { font-size: 12px; font-weight: 700; color: var(--pittch-brown); }
.pittch-review-bento-card__location { font-size: 11px; color: var(--pittch-mid); }
.pittch-review-bento-card__product  { font-size: 10px; color: var(--pittch-light); margin-top: 2px; }

@media (max-width: 1200px) {
  .pittch-reviews-bento             { grid-template-columns: repeat(3, 1fr); }
  .pittch-review-bento-card--featured { grid-row: span 1; }
}
@media (max-width: 768px) {
  .pittch-reviews-masonry { padding: 56px 20px; }
  .pittch-reviews-bento   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pittch-reviews-bento { grid-template-columns: 1fr; }
}

/* ================================================================
   BUNDLE PRODUCT PANEL (single-product.php)
================================================================ */
.sp-bundle-panel {
  padding: 18px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--pittch-border);
  margin-bottom: 20px;
}
.sp-bundle-saving {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-bundle-saving__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--pittch-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.sp-bundle-pair-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pittch-mid);
}
.sp-bundle-contents__heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--pittch-brown);
  margin-bottom: 10px;
}
.sp-bundle-contents__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pittch-mid);
}
.sp-bundle-contents__body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-bundle-contents__body ul li::before {
  content: '→ ';
  color: var(--pittch-green);
  font-weight: 700;
}
.sp-bundle-mix-note {
  font-size: 12px;
  color: var(--pittch-mid);
}
.sp-bundle-mix-note a {
  color: var(--pittch-brown);
  font-weight: 600;
  text-decoration: underline;
}

/* Discount upsell line in reassurance for non-bundle products */
.sp-reassurance__bundle-deal {
  padding: 9px 12px;
  background: rgba(94,129,73,0.1);
  border-left: 3px solid var(--pittch-green);
  font-size: 12px;
  color: var(--pittch-brown);
  line-height: 1.45;
  margin-bottom: 4px;
}

/* ================================================================
   STATS — discount strip below existing pittch-stats bar
================================================================ */
.pittch-stats__discount-strip {
  border-top: 1px solid rgba(239,237,230,0.12);
  padding: 12px 40px;
  text-align: center;
}
.pittch-stats__discount-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(239,237,230,0.7);
  transition: color 0.2s;
}
.pittch-stats__discount-link:hover { color: var(--pittch-cream); }
.pittch-stats__discount-pill {
  padding: 3px 12px;
  border: 1px solid rgba(239,237,230,0.3);
  color: var(--pittch-cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pittch-stats__discount-pill--green {
  background: var(--pittch-green);
  border-color: var(--pittch-green);
}
@media (max-width: 768px) {
  .pittch-stats__discount-strip { padding: 10px 20px; }
}

/* ================================================================
   BRAND INTRO — Hollow-style feature list (added to existing section)
================================================================ */
/* Switch the copy section to left-align when it has the feature list */
.pittch-brand-intro__copy--with-features {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.pittch-brand-intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 !important;
  background: var(--pittch-white);
  min-height: 520px;
}
.pittch-brand-intro__copy--with-features {
  padding: 72px 60px 72px 40px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.pittch-inline-features {
  list-style: none;
  border-top: 1px solid var(--pittch-border);
  margin: 4px 0 0;
}
.pittch-inline-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--pittch-border);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pittch-brown);
}
.pittch-inline-features li span[aria-hidden] {
  color: var(--pittch-green);
  font-size: 15px;
  flex-shrink: 0;
}
/* Cat tiles sit in the right column of the 2-col grid */
.pittch-brand-intro > .pittch-cat-feature {
  gap: 2px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
/* Third tile spans full width in bottom row */
.pittch-brand-intro > .pittch-cat-feature .pittch-cat-tile:last-child:nth-child(3) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
@media (max-width: 1024px) {
  .pittch-brand-intro                          { grid-template-columns: 1fr; }
  .pittch-brand-intro__copy--with-features     { padding: 56px 40px; }
  .pittch-brand-intro > .pittch-cat-feature    { grid-template-rows: auto; height: 320px; }
  .pittch-brand-intro > .pittch-cat-feature .pittch-cat-tile:last-child:nth-child(3) {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
}
@media (max-width: 768px) {
  .pittch-brand-intro__copy--with-features     { padding: 48px 20px; }
  .pittch-brand-intro > .pittch-cat-feature    { height: 260px; }
}

/* ================================================================
   REVIEWS — deal card embedded in grid
================================================================ */
.pittch-reviews__stars-display {
  font-size: 22px;
  color: var(--pittch-brown);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.pittch-review-card--deal {
  background: var(--pittch-brown);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 20px;
  text-align: center;
  transition: background 0.2s;
  cursor: pointer;
}
.pittch-review-card--deal:hover { background: #1e1007; }
.pittch-review-deal__eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(239,237,230,0.55);
}
.pittch-review-deal__offer {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.pittch-review-deal__pct {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--pittch-cream); line-height: 1;
}
.pittch-review-deal__pct--large { font-size: 44px; color: #8bba6e; }
.pittch-review-deal__range {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(239,237,230,0.65);
}
.pittch-review-deal__or {
  font-size: 10px; color: rgba(239,237,230,0.4); letter-spacing: 0.1em; text-transform: uppercase;
}
.pittch-review-deal__cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(239,237,230,0.8);
  margin-top: 6px;
  border-bottom: 1px solid rgba(239,237,230,0.3);
  padding-bottom: 2px;
}

/* ================================================================
   PRODUCT ROW — single horizontal scroll (replaces grid)
================================================================ */
/* Override all existing grid rules */
.pittch-product-row {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 2px;
  grid-template-columns: unset !important;
}
.pittch-product-row::-webkit-scrollbar { display: none; }

.pittch-product-row__item {
  flex: 0 0 calc(25% - 1.5px);
  scroll-snap-align: start;
  min-width: 0;
}

/* Show arrow buttons */
.pittch-arrow-btn {
  display: flex !important;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pittch-white);
  border: 1px solid var(--pittch-border-strong);
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.pittch-arrow-btn:hover  { background: var(--pittch-cream); border-color: var(--pittch-brown); }
.pittch-arrow-btn svg    { width: 18px; height: 18px; stroke: var(--pittch-brown); }

.pittch-row-wrap {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .pittch-product-row__item { flex: 0 0 calc(50% - 1px); }
  .pittch-arrow-btn { display: none !important; }
}
@media (max-width: 480px) {
  .pittch-product-row__item { flex: 0 0 75%; }
}

/* ================================================================
   BRAND INTRO — Shop Your Way tiles
================================================================ */
/* Full override of the layout when feature-list variant is used */
.pittch-brand-intro {
  display: grid;
  grid-template-columns: 1fr 1fr; /* copy | shop tiles */
  background: var(--pittch-bg);
  padding: 0 0 48px;
  overflow: hidden;
}

.pittch-brand-intro__copy--with-features {
  padding: 72px 48px 72px 40px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  text-align: left;
  background: var(--pittch-bg); /* cream — matches rest of section */
}
.pittch-brand-intro__copy--with-features .pittch-brand-intro__heading {
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  text-align: left;
}
.pittch-brand-intro__copy--with-features .pittch-brand-intro__eyebrow { text-align: left; }
.pittch-inline-features {
  list-style: none;
  border-top: 1px solid var(--pittch-border);
  margin: 4px 0 0;
}
.pittch-inline-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--pittch-border);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--pittch-brown);
}
.pittch-inline-features li span[aria-hidden] {
  color: var(--pittch-green); font-size: 15px; flex-shrink: 0;
}
.pittch-brand-intro__link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--pittch-brown);
  color: var(--pittch-cream);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
  border-bottom: none;
}
.pittch-brand-intro__link:hover { background: #1e1007; opacity: 1; }

/* Shop Your Way column */
.pittch-shop-your-way {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--pittch-bg);
  padding: 40px 32px 48px;
}
.pittch-shop-your-way__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--pittch-brown);
  margin-bottom: 24px;
  text-align: left;
}
.pittch-syw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  max-width: none;
}

/* Tiles: image on top, label below */
.pittch-syw-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--pittch-bg);
}
.pittch-syw-tile__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--pittch-brown);
  flex-shrink: 0;
}
.pittch-syw-tile__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.pittch-syw-tile:hover .pittch-syw-tile__img img { transform: scale(1.04); }
.pittch-syw-tile__fallback { width: 100%; height: 100%; background: var(--pittch-brown); }
.pittch-syw-tile__fallback--green { background: var(--pittch-green); }
.pittch-syw-tile__text {
  padding: 14px 10px 18px;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--pittch-bg);
  text-align: center;
  align-items: center;
}
.pittch-syw-tile__label {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pittch-brown); line-height: 1.2;
}
.pittch-syw-tile__sub {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pittch-mid);
}

@media (max-width: 768px) {
  .pittch-brand-intro { grid-template-columns: 1fr; padding-bottom: 0; }
  .pittch-brand-intro__copy--with-features { padding: 40px 20px; }
  .pittch-shop-your-way { padding: 24px 20px 32px; }
  .pittch-shop-your-way__heading { padding: 0 0 14px; font-size: 22px; }
  .pittch-syw-grid { max-width: 100%; }
}

/* ================================================================
   MEN'S & WOMEN'S SPLIT (editorial-split replacement)
================================================================ */
.pittch-range-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 560px;
}
.pittch-range-panel {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.pittch-range-panel__bg { position: absolute; inset: 0; }
.pittch-range-panel__bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.pittch-range-panel:hover .pittch-range-panel__bg img { transform: scale(1.04); }
.pittch-range-panel__colour { width: 100%; height: 100%; }
.pittch-range-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
}
.pittch-range-panel__content {
  position: absolute;
  bottom: 36px; left: 36px; right: 36px;
  z-index: 2;
}
.pittch-range-panel__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 8px;
}
.pittch-range-panel__sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .pittch-range-split { grid-template-columns: 1fr; height: auto; }
  .pittch-range-panel { min-height: 320px; }
  .pittch-range-panel__content { bottom: 24px; left: 24px; right: 24px; }
  .pittch-range-panel__title   { font-size: clamp(36px, 10vw, 60px); }
}

/* ================================================================
   REVIEWS MASONRY
================================================================ */
.pittch-reviews-section {
  background: var(--pittch-cream);
  padding: 80px 0;
}
.pittch-reviews-section__head {
  text-align: center;
  padding: 0 40px 40px;
}
.pittch-reviews-section__stars {
  font-size: 22px; color: var(--pittch-brown); letter-spacing: 4px; margin-bottom: 12px;
}
.pittch-reviews-section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700; color: var(--pittch-brown);
}
.pittch-reviews-masonry-grid,
.pittch-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(300px, auto));
  gap: 3px;
}

/* Tall photo cells span both rows */
.pittch-rev-tall { grid-row: span 2; }

/* Explicit column placement for photos */
.pittch-rev-col2 { grid-column: 2; }
.pittch-rev-col4 { grid-column: 4; }

/* Review card — cream bg, brown text, rounded corners like Hollow */
.pittch-rev-card {
  background: var(--pittch-white);
  border-radius: 10px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 16px;
  margin: 10px;
}
.pittch-rev-card__stars { font-size: 15px; color: var(--pittch-brown); letter-spacing: 3px; }
.pittch-rev-card__text  { font-size: 14px; line-height: 1.75; color: var(--pittch-brown); flex: 1; font-style: normal; }
.pittch-rev-card__footer {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 12px; border-top: 1px solid var(--pittch-border);
  font-size: 12px;
}
.pittch-rev-card__meta { display: flex; flex-direction: column; gap: 2px; }
.pittch-rev-card__footer strong { color: var(--pittch-brown); font-weight: 700; font-size: 13px; }
.pittch-rev-card__loc   { color: var(--pittch-mid); font-size: 11px; }
.pittch-rev-card__product { font-size: 10px; color: var(--pittch-light); display: block; margin-top: 1px; }
.pittch-rev-card__verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pittch-mid);
  margin-top: 4px;
}

.pittch-rev-photo { overflow: hidden; background: var(--pittch-brown); }
.pittch-rev-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Bundle deal card */
.pittch-rev-deal {
  background: var(--pittch-brown);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 6px;
  text-decoration: none;
  padding: 24px 16px;
  transition: background 0.2s;
}
.pittch-rev-deal:hover { background: #1e1007; }
.pittch-rev-deal__eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(239,237,230,0.5);
}
.pittch-rev-deal__line { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pittch-rev-deal__pct {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--pittch-cream); line-height: 1;
}
.pittch-rev-deal__pct--big { font-size: 48px; color: #8bba6e; }
.pittch-rev-deal__range {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(239,237,230,0.6);
}
.pittch-rev-deal__or {
  font-size: 10px; color: rgba(239,237,230,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.pittch-rev-deal__cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(239,237,230,0.8);
  margin-top: 6px; border-bottom: 1px solid rgba(239,237,230,0.3); padding-bottom: 2px;
}

@media (max-width: 1200px) {
  .pittch-reviews-masonry-grid,
  .pittch-reviews-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  /* Reset explicit column/row placement — avoids implicit columns in a 2-col grid */
  .pittch-rev-tall,
  .pittch-rev-col2,
  .pittch-rev-col4 { grid-column: auto !important; grid-row: auto !important; }
  .pittch-rev-photo { min-height: 280px; }
}
@media (max-width: 768px) {
  .pittch-reviews-section      { padding: 56px 0; }
  .pittch-reviews-section__head { padding: 0 20px 32px; }
  .pittch-reviews-masonry-grid,
  .pittch-reviews-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  /* On mobile let browser auto-place — remove explicit grid positions */
  .pittch-rev-card, .pittch-rev-photo, .pittch-rev-deal { grid-column: auto !important; grid-row: auto !important; }
  .pittch-rev-photo { min-height: 200px; }
}
@media (max-width: 480px) {
  .pittch-reviews-masonry-grid,
  .pittch-reviews-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   WHY MERINO WOOL
================================================================ */
.pittch-why-merino {
  background: var(--pittch-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* Left: clean image, no overlay */
.pittch-why-merino__left {
  overflow: hidden;
  min-height: 520px;
}
.pittch-why-merino__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.pittch-why-merino__bg-placeholder {
  width: 100%; height: 100%;
  background: var(--pittch-brown);
}

/* Right: eyebrow + headline + copy + stats */
.pittch-why-merino__right {
  display: flex; flex-direction: column;
}
.pittch-why-merino__copy {
  padding: 52px 48px 40px 48px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--pittch-bg);
  flex: 1;
}
.pittch-why-merino__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pittch-light);
}
.pittch-why-merino__headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700; color: var(--pittch-brown);
  line-height: 1.05;
}
.pittch-why-merino__divider {
  width: 48px; height: 2px;
  background: var(--pittch-brown);
}
.pittch-why-merino__sub-heading {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700; color: var(--pittch-brown);
  line-height: 1.1;
}
.pittch-why-merino__copy p {
  font-size: 15px; line-height: 1.8; color: var(--pittch-mid);
}
.pittch-why-merino__link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pittch-brown);
  text-decoration: underline; text-underline-offset: 3px;
  align-self: flex-start;
}
.pittch-why-merino__bar {
  display: flex; align-items: center; justify-content: space-around;
  background: var(--pittch-brown);
  padding: 22px 32px;
  gap: 16px;
}
.pittch-why-merino__bar-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.pittch-why-merino__bar-num  {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; color: var(--pittch-cream); line-height: 1;
}
.pittch-why-merino__bar-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(239,237,230,0.55);
}
.pittch-why-merino__bar-divider { width: 1px; height: 40px; background: rgba(239,237,230,0.15); flex-shrink: 0; }

@media (max-width: 1024px) {
  .pittch-why-merino           { grid-template-columns: 1fr; }
  .pittch-why-merino__left     { min-height: 380px; }
  .pittch-why-merino__copy     { padding: 40px; }
}
@media (max-width: 768px) {
  .pittch-why-merino__left     { min-height: 300px; }
  .pittch-why-merino__copy     { padding: 32px 20px; }
  .pittch-why-merino__bar      { padding: 16px 20px; }
  .pittch-why-merino__bar-num  { font-size: 20px; }
}
