/* ==========================================================================
   ALLYAZ Design System — Allbirds-Benchmark European Retail Aesthetic
   ========================================================================== */

:root {
  /* Curated European Palette */
  --ink: #172018;
  --charcoal: #232924;
  --muted: #5e685f;
  --muted-light: #8b958c;
  --paper: #f9f8f4;
  --cream: #f2ece0;
  --white: #ffffff;
  --line: #e3e4dc;
  --line-light: #edece6;
  
  /* Natural Scandinavian Accent Tones */
  --moss: #2f4333;
  --moss-hover: #243527;
  --moss-light: #edf2eb;
  --sage: #d6ded2;
  --sand: #ede5d8;
  --sand-dark: #ded2bf;
  --oat: #e7ded0;
  --stone: #c9c7bd;
  --accent-gold: #c29547;
  --danger: #b23b3b;
  --danger-light: #faecec;
  --success: #286e3b;
  --success-light: #edf7ef;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(23, 32, 24, 0.04);
  --shadow-md: 0 12px 36px rgba(23, 32, 24, 0.08);
  --shadow-lg: 0 24px 64px rgba(23, 32, 24, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  
  --max-width: 1440px;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

button, input, select, textarea { font: inherit; color: inherit; }
button, a { touch-action: manipulation; }
a { color: inherit; text-decoration: none; }

/* Skip Link for a11y */
.skip-link {
  position: fixed; left: 16px; top: -100px;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; z-index: 1000;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 13px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* Layout Shell */
.shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; width: 100%; }

/* ==========================================================================
   Announcement Bar (Allbirds Style Marquee / Ticker)
   ========================================================================== */
.announce {
  background: var(--moss);
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.announce-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.94;
}
.announce-item span { opacity: 0.7; }

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(249, 248, 244, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(23, 32, 24, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav {
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  font-family: var(--font-sans);
  font-size: 26px;
  letter-spacing: 0.38em;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.brand small {
  font-size: 7.5px;
  letter-spacing: 0.28em;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
}
.navlinks {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.navlinks a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 4px;
  position: relative;
  transition: color 0.2s ease;
}
.navlinks a:hover, .navlinks a.active {
  color: var(--moss);
}
.navlinks a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--moss);
  transition: width 0.25s ease;
}
.navlinks a:hover::after, .navlinks a.active::after {
  width: 100%;
}
.navlinks .nav-highlight {
  background: var(--moss-light);
  color: var(--moss);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
}
.navlinks .nav-highlight::after { display: none; }

.navtools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.iconbtn {
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  color: var(--ink);
  transition: all 0.2s ease;
}
.iconbtn:hover {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.iconbtn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.badge {
  position: absolute;
  right: -2px; top: -2px;
  min-width: 19px; height: 19px;
  border-radius: var(--radius-pill);
  background: var(--moss);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(47, 67, 51, 0.4);
}
.langbtn {
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  transition: all 0.2s ease;
}
.langbtn:hover {
  border-color: var(--moss);
  color: var(--moss);
}
.mobile-menu { display: none; }

/* ==========================================================================
   Hero & Editorial Sections (Allbirds Standard)
   ========================================================================== */
.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: #ccd5c7;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-visual.svg') center/cover no-repeat;
  transform: scale(1.02);
  filter: brightness(0.96);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 30, 22, 0.68) 0%, rgba(20, 30, 22, 0.35) 50%, rgba(20, 30, 22, 0.08) 85%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-copy {
  color: var(--white);
  max-width: 700px;
  padding: 80px 0;
}
.eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}
.hero-copy .eyebrow {
  color: #dbe4d7;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(52px, 6.5vw, 94px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 20px 0 24px;
}
.hero p {
  font-size: 18.5px;
  line-height: 1.6;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn.light:hover {
  background: #f0eee8;
  border-color: #f0eee8;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn.ghost:hover {
  background: var(--white);
  border-color: var(--ink);
}
.btn.moss {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}
.btn.moss:hover {
  background: var(--moss-hover);
}
.btn.wide { width: 100%; }
.btn.sm { padding: 9px 16px; font-size: 12.5px; }

/* Section Hierarchy */
.section { padding: 84px 0; }
.section-tight { padding: 52px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}
.section-head h2, .page-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-top: 6px;
}
.section-head p {
  color: var(--muted);
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.text-link:hover { opacity: 0.7; }

/* Category Pills / Discovery */
.category-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--moss);
}
.category-art {
  height: 106px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e2d4, #c9d5c4);
}
.category-art::before, .category-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}
.category-art::before {
  width: 70px; height: 70px; right: 12px; top: 12px;
}
.category-art::after {
  width: 90px; height: 20px; left: 10px; bottom: 16px;
  transform: rotate(-12deg);
}
.category-card span {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

/* Trust Bar */
.trustbar {
  background: #eceee7;
  border-block: 1px solid #dce0d6;
}
.trustgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trustitem {
  padding: 32px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  border-right: 1px solid #d6dbd1;
}
.trustitem:last-child { border-right: 0; }
.trustitem svg {
  width: 32px; height: 32px;
  stroke: var(--moss);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.trustitem b {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--charcoal);
}
.trustitem small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  display: block;
}

/* ==========================================================================
   Product Grid & Product Card (Allbirds Benchmark)
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.product-media {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #f2eee6, #dce2d7);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.4s ease;
  z-index: 1;
}
.product-card:hover .product-media img {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  left: 14px; top: 14px;
  background: var(--moss);
  color: var(--white);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.product-badge.eu {
  background: #254b73;
}
.product-badge.sale {
  background: #a84232;
}
.heart-btn {
  position: absolute;
  right: 12px; top: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 0; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.heart-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}
.heart-btn.active svg {
  fill: #b53838;
  stroke: #b53838;
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-info h3 {
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--ink);
}
.product-info p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line-light);
}
.price {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--muted-light);
  font-weight: 400;
}
.rating {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rating span { color: var(--accent-gold); }
.quickadd {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fbfbf9;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.quickadd:hover {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
  transform: translateY(-1px);
}

/* ==========================================================================
   Editorial Storytelling Block
   ========================================================================== */
.editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 540px;
  background: #1d2b21;
  color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.editorial-copy {
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-copy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
  margin: 16px 0 20px;
}
.editorial-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}
.editorial-art {
  background: radial-gradient(circle at 25% 20%, #ece2cb 0 8%, transparent 9%), linear-gradient(145deg, #74846f, #cad1be);
  position: relative;
  overflow: hidden;
}
.editorial-art::before {
  content: "";
  position: absolute;
  width: 440px; height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  right: -60px; top: 40px;
}
.editorial-art::after {
  content: "ALLYAZ · EUROPEAN CURATION";
  position: absolute;
  right: 40px; bottom: 36px;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--white);
  font-weight: 600;
}

/* Newsletter */
.newsletter {
  background: #e8e1d4;
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}
.newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.newsletter p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 520px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: min(520px, 50vw);
}
.newsletter-form input {
  flex: 1;
  border: 1px solid #cec7bc;
  background: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
}
.newsletter-form input:focus {
  outline: 2px solid var(--moss);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
  background: #f1efe8;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding: 68px 32px 48px;
}
.footer h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.footer a {
  display: block;
  color: #566157;
  font-size: 14px;
  margin: 10px 0;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--moss); }
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 32px;
  color: #6a736a;
  font-size: 12.5px;
}
.logo-block p {
  max-width: 340px;
  color: #5c665d;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
}

/* ==========================================================================
   Allbirds-Benchmark Product Detail Page (PDP)
   ========================================================================== */
.pdp-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.pdp-gallery {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp-main-media {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #ede7de, #d2dcce);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pdp-main-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.pdp-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pdp-thumb {
  width: 76px; height: 76px;
  border-radius: var(--radius-md);
  border: 2px solid var(--line);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.pdp-thumb.active, .pdp-thumb:hover {
  border-color: var(--moss);
  transform: translateY(-2px);
}
.pdp-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.pdp-info {
  display: flex;
  flex-direction: column;
}
.pdp-breadcrumbs {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
}
.pdp-breadcrumbs a:hover { color: var(--ink); }
.pdp-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 4px 0 14px;
  color: var(--ink);
}
.pdp-reviews-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}
.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 12px 0 20px;
}
.pdp-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
}
.pdp-compare {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--muted-light);
}
.pdp-save-badge {
  background: #f8ece8;
  color: #a84232;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.pdp-tax-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.omnibus-notice {
  font-size: 11.5px;
  color: var(--muted-light);
  margin-bottom: 20px;
  background: #f4f3ed;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* PDP Logistics & Status Cards */
.pdp-delivery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 18px 0;
  display: grid;
  gap: 12px;
  font-size: 13.5px;
}
.pdp-delivery-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp-delivery-row svg {
  width: 20px; height: 20px;
  stroke: var(--moss);
  flex-shrink: 0;
}
.stock-pulse {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(40, 110, 59, 0.2);
  margin-right: 6px;
}
.pdp-actions {
  display: flex;
  gap: 12px;
  margin: 22px 0;
}

/* Accordions (Allbirds Standard) */
.pdp-accordions {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header svg {
  width: 18px; height: 18px;
  stroke: var(--muted);
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-content {
  padding: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #4f5850;
  display: none;
}
.accordion-item.open .accordion-content {
  display: block;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 35%;
}

/* Frequently Bought Together (Bundle Card) */
.bundle-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.bundle-box h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.bundle-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.bundle-item-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  flex-shrink: 0;
}
.bundle-item-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.bundle-plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}
.bundle-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
}

/* ==========================================================================
   Cart Drawer with Smart Shipping Progress Bar
   ========================================================================== */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 20, 15, 0.45);
  backdrop-filter: blur(4px);
  z-index: 95;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0;
  width: min(520px, 96vw);
  height: 100vh;
  background: #fbfaf6;
  z-index: 96;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

/* Smart Shipping Progress Bar */
.shipping-progress-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 18px 0 10px;
}
.shipping-progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.progress-bar-bg {
  width: 100%; height: 6px;
  background: #e6e8e2;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--moss);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.progress-bar-fill.unlocked {
  background: var(--success);
}

.drawer-items {
  flex: 1;
  overflow-y: auto;
  margin: 16px 0;
  padding-right: 4px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: center;
}
.cart-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line-light);
  overflow: hidden;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item h4 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.cart-item .item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--moss);
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  margin-top: 8px;
}
.qty-stepper button {
  width: 28px; height: 28px;
  background: transparent; border: 0;
  cursor: pointer; font-size: 14px;
  font-weight: 700;
  display: grid; place-items: center;
}
.qty-stepper span {
  padding: 0 8px; font-size: 13px; font-weight: 600;
}

/* Coupon Box */
.coupon-input-row {
  display: flex;
  gap: 8px;
  margin: 16px 0 10px;
}
.coupon-input-row input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  text-transform: uppercase;
}
.coupon-badge {
  background: #eef4ed;
  border: 1px dashed var(--moss);
  color: var(--moss);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}
.drawer-summary {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 7px 0;
  font-size: 14px;
}
.summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   Multi-Step Checkout Flow
   ========================================================================== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  margin: 32px 0 64px;
}
.checkout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.checkout-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 12px;
  display: grid; place-items: center;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1/-1; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--charcoal);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  background: #fbfbf9;
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--moss);
  background: var(--white);
}
.order-sidebar {
  background: #f2eee8;
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: 112px;
  border: 1px solid #e5dfd6;
}

/* ==========================================================================
   Offers & Benefits Page (`#/offers`)
   ========================================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 54px;
}
.voucher-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.voucher-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--moss);
}
.voucher-code-box {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0;
}

/* ==========================================================================
   Self-Service Returns Portal (`#/returns`)
   ========================================================================== */
.rma-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 720px;
  margin: 32px auto;
  box-shadow: var(--shadow-md);
}
.rma-label-preview {
  background: #f8f8f4;
  border: 2px dashed var(--charcoal);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
  font-family: monospace;
}
.rma-barcode {
  height: 48px;
  background: repeating-linear-gradient(90deg, #172018, #172018 3px, transparent 3px, transparent 6px);
  margin: 16px 0;
}

/* ==========================================================================
   Help Centre & Support Ticketing (`#/help`)
   ========================================================================== */
.help-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 24px 0 32px;
}
.help-tab-btn {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}
.help-tab-btn.active {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}
.faq-accordion {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  margin-bottom: 40px;
}

/* ==========================================================================
   Live Order Tracking (`#/track`)
   ========================================================================== */
.tracking-timeline {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}
.tracking-timeline::before {
  content: "";
  position: absolute;
  top: 18px; left: 30px; right: 30px; height: 3px;
  background: var(--line);
  z-index: 1;
}
.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 140px;
}
.timeline-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--line);
  margin: 0 auto 10px;
  display: grid; place-items: center;
  font-size: 14px;
}
.timeline-step.completed .timeline-dot {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--white);
}
.timeline-step.active .timeline-dot {
  border-color: var(--moss);
  color: var(--moss);
  box-shadow: 0 0 0 4px rgba(47, 67, 51, 0.2);
}

/* ==========================================================================
   Admin Executive Analytics & Profit Engine Dashboard (`#/admin`)
   ========================================================================== */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.admin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.admin-card .kpi-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.admin-card .kpi-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 4px;
}
.admin-card .kpi-sub {
  font-size: 12.5px;
  color: var(--success);
  font-weight: 600;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 24px 0;
}
.admin-table th, .admin-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-light);
  font-size: 13.5px;
}
.admin-table th {
  background: #f4f3ed;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ==========================================================================
   Modals, Search as You Type & Cookie CMP
   ========================================================================== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  background: rgba(14, 20, 15, 0.55);
  backdrop-filter: blur(6px);
  padding: 20px;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: min(720px, 96vw);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.search-modal-input {
  width: 100%;
  border: 2px solid var(--moss);
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-size: 18px;
  background: #fdfdfb;
  margin: 18px 0 24px;
}
.search-modal-input:focus { outline: none; }
.search-results-list {
  display: grid;
  gap: 12px;
  max-height: 50vh;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
  cursor: pointer;
}
.search-result-item:hover { background: var(--paper); }
.search-thumb {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  overflow: hidden;
  flex-shrink: 0;
}
.search-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 90;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cookie-banner h3 { margin: 0 0 6px; font-size: 17px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; max-width: 820px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1080px) {
  .navlinks { display: none; }
  .mobile-menu { display: grid; }
  .nav { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: center; }
  .category-row { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .editorial { grid-template-columns: 1fr; }
  .editorial-art { min-height: 320px; }
  .trustgrid { grid-template-columns: repeat(2, 1fr); }
  .pdp-layout { grid-template-columns: 1fr; gap: 36px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .admin-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .announce-inner { padding: 8px 16px; font-size: 11px; gap: 14px; }
  .announce-item:nth-child(n+3) { display: none; }
  .nav { height: 70px; }
  .brand { font-size: 22px; }
  .brand small { display: none; }
  .hero, .hero-inner { min-height: 580px; }
  .hero h1 { font-size: 52px; }
  .category-row { display: flex; overflow-x: auto; padding-bottom: 12px; }
  .category-card { min-width: 160px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-info { padding: 14px; }
  .product-info p { display: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 36px 24px; }
  .newsletter-form { min-width: 0; width: 100%; flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; padding: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .trustgrid { grid-template-columns: 1fr; }
  .trustitem { border-right: 0; border-bottom: 1px solid #d6dbd1; }
  .admin-metrics-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

:focus-visible { outline: 2px solid var(--moss); outline-offset: 2px; }

/* ==========================================================================
   Pagination & Country Shipping Badges (12,000 Products Scale)
   ========================================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 48px 0 24px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--moss);
  color: var(--moss);
}

.page-btn.active {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
  font-weight: 700;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-ellipsis {
  padding: 0 6px;
  color: var(--muted);
  font-weight: 700;
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--moss-light);
  color: var(--moss);
  margin-top: 8px;
}

.country-badge.restricted {
  background: var(--danger-light);
  color: var(--danger);
}

/* ==========================================================================
   2026 Commerce Refresh — richer category merchandising & benefit hierarchy
   ========================================================================== */
.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}
.hero-proof > div {
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(15, 24, 17, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
}
.hero-proof b,
.hero-proof span {
  display: block;
}
.hero-proof b {
  font-size: 12.5px;
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.hero-proof span {
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.76);
}

.category-card-real {
  padding: 0;
  min-height: 252px;
  overflow: hidden;
}
.category-card-real .category-art {
  height: 198px;
  border-radius: 0;
  background: #e9e7df;
}
.category-card-real .category-art::before,
.category-card-real .category-art::after {
  display: none;
}
.category-card-real .category-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.category-card-real:hover .category-art img {
  transform: scale(1.045);
}
.category-count {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  color: var(--ink) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
}
.category-meta {
  padding: 15px 16px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.category-meta > span {
  font-size: 14px;
  font-weight: 750;
}
.category-meta small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card {
  min-height: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cad1c7;
}
.benefit-kicker {
  font-size: 10.5px;
  letter-spacing: .15em;
  font-weight: 800;
  color: var(--moss);
  margin-bottom: 26px;
}
.benefit-card strong {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.025em;
  max-width: 360px;
}
.benefit-card p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.benefit-link {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 750;
}
.smart-savings {
  background: #f0f2ec;
  border-block: 1px solid #e1e5dd;
}

@media (max-width: 1100px) {
  .hero-proof { grid-template-columns: 1fr 1fr; max-width: 620px; }
  .hero-proof > div:last-child { grid-column: 1 / -1; }
  .category-card-real .category-art { height: 175px; }
}
@media (max-width: 820px) {
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div:last-child { grid-column: auto; }
  .home-benefits { grid-template-columns: 1fr; }
  .benefit-card { min-height: 210px; }
}
@media (max-width: 560px) {
  .hero-proof { margin-top: 24px; }
  .hero-proof > div { padding: 11px 12px; }
  .category-card-real { min-height: 220px; }
  .category-card-real .category-art { height: 165px; }
  .benefit-card { padding: 22px; }
  .benefit-card strong { font-size: 26px; }
}


/* ==========================================================================
   Progressive Motion & Premium Interaction Layer
   ========================================================================== */
.header.scrolled {
  background: rgba(249, 248, 244, 0.985);
  box-shadow: 0 12px 34px rgba(23, 32, 24, 0.08);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.product-restricted .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 32, 24, 0.08));
}

.checkout-card,
.voucher-card,
.product-card,
.category-card {
  transform-origin: 50% 65%;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .reveal-ready.reveal-in {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }
}


/* ==========================================================================
   ALLYAZ 2026 V3 — Editorial multi-category commerce architecture
   ========================================================================== */

:root {
  --ink: #11130f;
  --charcoal: #1c211c;
  --muted: #667066;
  --muted-light: #919991;
  --paper: #f5f3ed;
  --cream: #ece7dc;
  --white: #ffffff;
  --line: #dedfd8;
  --line-light: #ebeae4;
  --moss: #173d2f;
  --moss-hover: #0f3024;
  --moss-light: #e9f0eb;
  --sage: #cfd9d0;
  --sand: #e6ddce;
  --accent-gold: #9d772d;
  --shadow-sm: 0 8px 28px rgba(16, 22, 17, 0.055);
  --shadow-md: 0 22px 60px rgba(16, 22, 17, 0.09);
  --shadow-lg: 0 32px 90px rgba(16, 22, 17, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --max-width: 1540px;
}

body {
  background: #f8f7f3;
  color: var(--ink);
}

.container {
  padding-inline: 38px;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 64px 0;
}

/* Utility bar */
.announce-v2 {
  background: #11130f;
  color: rgba(255,255,255,.88);
  font-size: 11.5px;
  letter-spacing: .025em;
}

.announce-inner-v2 {
  min-height: 34px;
  padding: 7px 38px;
  justify-content: flex-end;
  gap: 15px;
}

.announce-market {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
}

.announce-market svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.announce-divider {
  width: 1px;
  height: 11px;
  background: rgba(255,255,255,.24);
}

.announce-link {
  border-bottom: 1px solid rgba(255,255,255,.34);
  padding-bottom: 1px;
}

/* Header */
.header {
  background: rgba(248,247,243,.92);
  border-bottom: 1px solid rgba(17,19,15,.09);
}

.header.scrolled {
  background: rgba(248,247,243,.985);
  box-shadow: 0 14px 38px rgba(17,19,15,.065);
}

.nav-v2 {
  height: 76px;
  gap: 34px;
}

.brand-v2 {
  gap: 0;
  line-height: 1;
  color: var(--ink);
}

.brand-v2 > span {
  font-size: 24px;
  letter-spacing: .31em;
  font-weight: 760;
}

.brand-v2 small {
  font-size: 7px;
  letter-spacing: .28em;
  margin-top: 6px;
  color: #747c74;
}

.navlinks-v2 {
  gap: 28px;
}

.navlinks-v2 a {
  font-size: 13px;
  font-weight: 650;
  padding: 10px 0;
}

.navlinks-v2 a::after {
  height: 1px;
  background: currentColor;
}

.navtools-v2 {
  gap: 5px;
}

.nav-search {
  height: 40px;
  min-width: 108px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.nav-search:hover {
  background: var(--white);
  border-color: #aeb5ae;
  transform: translateY(-1px);
}

.nav-search svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.utility-icon {
  width: 40px;
  height: 40px;
}

.market-btn {
  height: 40px;
  min-width: 74px;
  padding-inline: 12px;
  background: transparent;
  border-color: transparent;
}

.market-btn:hover {
  background: var(--white);
  border-color: var(--line);
}

/* New merchandising hero */
.hero-v3 {
  min-height: auto;
  background: #ebe7de;
  padding: 26px 0 34px;
  overflow: hidden;
}

.hero-v3::after {
  display: none;
}

.hero-shell {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(620px, 1.14fr);
  min-height: 690px;
  background: #f2efe7;
  border: 1px solid rgba(17,19,15,.08);
  overflow: hidden;
}

.hero-copy-v3 {
  max-width: none;
  padding: 84px 70px 64px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.9), transparent 31%),
    #f2efe7;
}

.hero-copy-v3 .eyebrow {
  color: var(--moss);
  font-size: 10px;
  letter-spacing: .24em;
  margin-bottom: 22px;
}

.hero-v3 h1 {
  font-family: var(--font-sans);
  max-width: 680px;
  margin: 0 0 26px;
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 680;
  line-height: .91;
  letter-spacing: -.065em;
  color: var(--ink);
}

.hero-v3 p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: #555e55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-primary-cta {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 4px;
  background: var(--ink);
  border-color: var(--ink);
  font-size: 13px;
}

.hero-primary-cta span {
  font-size: 17px;
  transition: transform .2s ease;
}

.hero-primary-cta:hover span {
  transform: translateX(3px);
}

.hero-secondary-link {
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid #8f968f;
  padding-bottom: 3px;
}

.hero-secondary-link span {
  margin-left: 6px;
}

.hero-market-proof {
  margin-top: auto;
  padding-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  border-top: 1px solid rgba(17,19,15,.11);
}

.hero-market-proof > div {
  min-width: 0;
}

.proof-label {
  display: block;
  margin-bottom: 6px;
  font-size: 8.5px;
  letter-spacing: .18em;
  font-weight: 850;
  color: #879087;
}

.hero-market-proof b {
  display: block;
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 700;
}

.hero-showcase {
  background: #d9ddd5;
  padding: 28px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-showcase-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 2px 2px 17px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #566158;
}

.hero-merch-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.44fr) minmax(220px, .56fr);
  gap: 12px;
  min-height: 0;
}

.hero-product-card {
  display: flex;
  flex-direction: column;
  background: #f7f6f2;
  overflow: hidden;
  min-height: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}

.hero-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(17,19,15,.11);
}

.hero-product-image {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #ecebe6;
}

.hero-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}

.hero-product-card:hover img {
  transform: scale(1.035);
}

.hero-card-category {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 6px 9px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-card-copy {
  min-height: 83px;
  padding: 15px 17px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  border-top: 1px solid var(--line-light);
}

.hero-card-copy strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-card-copy > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
}

.hero-card-copy i {
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
}

.hero-product-card.featured .hero-card-copy {
  min-height: 92px;
  padding: 17px 19px;
}

.hero-product-card.featured .hero-card-copy strong {
  font-size: 17px;
}

.hero-side-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0,1fr));
  gap: 12px;
  min-height: 0;
}

.hero-product-card.compact .hero-card-copy {
  min-height: 76px;
  padding: 12px 13px;
}

.hero-product-card.compact .hero-card-copy strong {
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-category-card {
  background: var(--ink);
  color: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.hero-category-card > span {
  font-size: 8px;
  letter-spacing: .18em;
  font-weight: 800;
  color: rgba(255,255,255,.55);
}

.hero-category-card strong {
  font-size: 25px;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.hero-category-card i {
  font-size: 11px;
  font-style: normal;
  color: rgba(255,255,255,.75);
}

/* Category navigation architecture */
.category-rail-section {
  background: #11130f;
  color: var(--white);
}

.category-rail-shell {
  padding-top: 22px;
  padding-bottom: 22px;
}

.category-rail-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .18em;
}

.category-rail-intro a {
  letter-spacing: .04em;
  color: rgba(255,255,255,.72);
}

.category-links-v3 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.category-link-v3 {
  min-height: 106px;
  padding: 18px 17px 16px;
  border-right: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  column-gap: 9px;
  transition: background .25s ease, color .25s ease;
}

.category-link-v3:first-child {
  border-left: 1px solid rgba(255,255,255,.13);
}

.category-link-v3:hover {
  background: #f0eee7;
  color: var(--ink);
}

.category-index {
  grid-column: 1;
  grid-row: 1;
  font-size: 8px;
  color: rgba(255,255,255,.42);
}

.category-link-v3:hover .category-index {
  color: #7d857d;
}

.category-link-v3 strong {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  font-size: 15px;
  font-weight: 650;
}

.category-link-v3 small {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: rgba(255,255,255,.5);
  font-size: 8.5px;
}

.category-link-v3:hover small {
  color: #7b837b;
}

.category-link-v3 i {
  grid-column: 3;
  grid-row: 1;
  font-size: 11px;
  font-style: normal;
}

/* Section hierarchy */
.section-head-v3 {
  align-items: flex-start;
  margin-bottom: 42px;
  padding-bottom: 21px;
  border-bottom: 1px solid #cfd2cc;
}

.section-head-v3 > div:first-child {
  max-width: 780px;
}

.section-head h2,
.page-title,
.pdp-title,
.newsletter h2,
.editorial-copy h2 {
  font-family: var(--font-sans);
}

.section-head-v3 h2 {
  margin-top: 8px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: .97;
  font-weight: 660;
  letter-spacing: -.055em;
}

.section-head-aside {
  width: min(430px, 36vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.section-head-aside p {
  font-size: 13px;
  line-height: 1.6;
}

.text-link {
  font-size: 11.5px;
  letter-spacing: .02em;
}

/* Product architecture */
.product-grid {
  gap: 18px;
}

.product-card {
  border-radius: 10px;
  border-color: #e2e2dc;
  box-shadow: none;
  background: #fff;
}

.product-card:hover {
  transform: none;
  box-shadow: 0 16px 42px rgba(17,19,15,.075);
  border-color: #d2d5cf;
}

.product-media {
  background: #efeee9;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-info {
  padding: 17px 17px 16px;
}

.product-cat-tag {
  font-size: 8.5px;
  letter-spacing: .14em;
  margin-bottom: 8px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -.012em;
}

.product-info p {
  font-size: 12.5px;
  line-height: 1.52;
}

.price-row {
  border-top: 0;
  padding-top: 4px;
}

.price {
  font-size: 15px;
  font-weight: 760;
}

.rating {
  font-size: 10.5px;
}

.quickadd {
  border-radius: 6px;
  border-color: #d6d8d2;
  background: transparent;
  min-height: 41px;
  font-size: 11px;
  letter-spacing: .01em;
}

.quickadd:hover {
  transform: none;
  background: var(--ink);
  border-color: var(--ink);
}

/* Discovery image composition */
.discovery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: repeat(2, 310px);
  gap: 12px;
}

.discovery-tile {
  position: relative;
  overflow: hidden;
  background: #d9d8d2;
  min-height: 0;
}

.discovery-tile.tile-1 {
  grid-row: 1 / 3;
}

.discovery-tile.tile-4 {
  grid-column: 2 / 4;
}

.discovery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.discovery-tile:hover img {
  transform: scale(1.035);
}

.discovery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,13,10,.04) 32%, rgba(10,13,10,.72) 100%);
}

.discovery-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: #fff;
}

.discovery-copy > span {
  display: block;
  margin-bottom: 7px;
  font-size: 8px;
  letter-spacing: .16em;
  font-weight: 800;
  color: rgba(255,255,255,.68);
}

.discovery-copy strong {
  display: block;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: .96;
  letter-spacing: -.045em;
}

.discovery-copy small {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
}

/* Value proposition cards */
.home-benefits-v3 {
  gap: 12px;
}

.home-benefits-v3 .benefit-card {
  min-height: 310px;
  border-radius: 10px;
  padding: 28px;
  border-color: #dcddd7;
}

.home-benefits-v3 .benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(17,19,15,.065);
}

.home-benefits-v3 .benefit-kicker {
  margin-bottom: 54px;
  font-size: 8.5px;
  letter-spacing: .18em;
}

.home-benefits-v3 .benefit-card strong {
  font-family: var(--font-sans);
  max-width: 390px;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: .99;
  font-weight: 640;
  letter-spacing: -.045em;
}

.home-benefits-v3 .benefit-card p {
  font-size: 12.5px;
  max-width: 390px;
}

.benefit-card-dark {
  background: var(--moss);
  color: #fff;
  border-color: var(--moss) !important;
}

.benefit-card-dark .benefit-kicker,
.benefit-card-dark p,
.benefit-card-dark .benefit-link {
  color: rgba(255,255,255,.72);
}

.smart-savings-v3 {
  background: #ebe8df;
  border-block-color: #d9d6cd;
}

/* Trust architecture */
.trustbar {
  background: #171a16;
  color: #fff;
  border: 0;
}

.trustgrid {
  grid-template-columns: repeat(4, 1fr);
}

.trustitem {
  min-height: 150px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.trustitem svg {
  stroke: #cbd6ce;
}

.trustitem b {
  color: #fff;
  font-size: 13px;
}

.trustitem small {
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

/* Shop / collection pages */
.page-hero {
  padding: 14px 0 34px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d2d5cf;
}

.page-title {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .95;
}

.page-hero > p {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.shop-toolbar {
  padding: 15px 0;
  border-block: 1px solid #dddeda;
}

.select {
  background: var(--white);
  border: 1px solid var(--line) !important;
}

/* Newsletter */
.newsletter-section-v3 {
  padding-bottom: 88px;
}

.newsletter {
  border-radius: 10px;
  padding: 60px;
  background: #dfe6df;
}

.newsletter h2 {
  max-width: 560px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 650;
}

.newsletter-form input {
  border-radius: 5px;
  background: rgba(255,255,255,.9);
}

.newsletter-form .btn {
  border-radius: 5px;
}

/* Footer */
.footer {
  margin-top: 0;
  background: #10120f;
  border-top: 0;
  color: #fff;
}

.footer-main {
  padding-top: 72px;
  padding-bottom: 58px;
}

.footer .brand {
  color: #fff;
}

.footer .brand small {
  color: rgba(255,255,255,.45);
}

.footer h4 {
  color: rgba(255,255,255,.92);
  font-size: 10px;
  letter-spacing: .15em;
}

.footer a {
  color: rgba(255,255,255,.62);
  font-size: 12.5px;
}

.footer a:hover {
  color: #fff;
}

.logo-block p,
.footer .logo-block div {
  color: rgba(255,255,255,.54) !important;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.46);
}

/* PDP refinement */
.pdp-title {
  font-weight: 650;
  letter-spacing: -.05em;
}

.pdp-main-media,
.order-sidebar,
.checkout-card,
.rma-card,
.modal-card,
.voucher-card {
  border-radius: 16px;
}

.btn {
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 1280px) {
  .navlinks-v2 {
    gap: 18px;
  }

  .nav-search {
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .nav-search span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .84fr) minmax(540px, 1.16fr);
  }

  .hero-copy-v3 {
    padding-inline: 52px;
  }

  .category-link-v3 {
    padding-inline: 12px;
  }

  .category-link-v3 small {
    display: none;
  }
}

@media (max-width: 1080px) {
  .container {
    padding-inline: 26px;
  }

  .announce-inner-v2 {
    padding-inline: 26px;
  }

  .nav-v2 {
    grid-template-columns: auto 1fr auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-v3 {
    min-height: 560px;
    padding: 72px 60px 48px;
  }

  .hero-showcase {
    min-height: 610px;
  }

  .category-links-v3 {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-link-v3 {
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .discovery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 280px 280px;
  }

  .discovery-tile.tile-1 {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .discovery-tile.tile-4 {
    grid-column: 1 / 3;
  }

  .trustgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  .announce-inner-v2 {
    justify-content: center;
  }

  .announce-hide-mobile {
    display: none;
  }

  .hero-v3 {
    padding-top: 14px;
  }

  .hero-copy-v3 {
    min-height: 520px;
    padding: 58px 34px 38px;
  }

  .hero-v3 h1 {
    font-size: clamp(52px, 13vw, 78px);
  }

  .hero-market-proof {
    padding-top: 38px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-market-proof > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-showcase {
    min-height: auto;
    padding: 18px;
  }

  .hero-merch-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-card.featured .hero-product-image {
    min-height: 420px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px;
  }

  .hero-product-card.compact .hero-product-image {
    min-height: 0;
  }

  .category-links-v3 {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .category-link-v3 {
    min-width: 170px;
    border-bottom: 0;
  }

  .section-head-v3 {
    flex-direction: column;
    gap: 20px;
  }

  .section-head-aside {
    width: 100%;
  }

  .section-head-v3 h2 {
    font-size: clamp(42px, 10vw, 62px);
  }

  .home-benefits-v3 {
    grid-template-columns: 1fr;
  }

  .home-benefits-v3 .benefit-card {
    min-height: 260px;
  }

  .home-benefits-v3 .benefit-kicker {
    margin-bottom: 32px;
  }

  .newsletter {
    padding: 42px 30px;
  }
}

@media (max-width: 620px) {
  .container {
    padding-inline: 16px;
  }

  .announce-inner-v2 {
    min-height: 32px;
    padding-inline: 16px;
    gap: 9px;
    font-size: 9.5px;
  }

  .nav-v2 {
    height: 66px;
    gap: 8px;
  }

  .brand-v2 > span {
    font-size: 19px;
    letter-spacing: .25em;
  }

  .brand-v2 small {
    display: none;
  }

  .utility-icon:first-of-type {
    display: none;
  }

  .market-btn {
    display: none;
  }

  .nav-search {
    width: 38px;
    height: 38px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy-v3 {
    min-height: 475px;
    padding: 50px 24px 32px;
  }

  .hero-v3 h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-v3 p {
    font-size: 15px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-market-proof {
    gap: 12px;
  }

  .hero-showcase-topline span:last-child {
    display: none;
  }

  .hero-product-card.featured .hero-product-image {
    min-height: 330px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 300px);
  }

  .category-rail-shell {
    padding-inline: 0;
  }

  .category-rail-intro {
    padding-inline: 16px;
  }

  .category-links-v3 {
    padding-left: 16px;
  }

  .category-link-v3 {
    min-width: 154px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
  }

  .product-info {
    padding: 12px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .product-cat-tag {
    font-size: 7.5px;
  }

  .product-info p,
  .rating {
    display: none;
  }

  .price {
    font-size: 13px;
  }

  .quickadd {
    min-height: 38px;
    padding: 9px 8px;
    font-size: 10px;
  }

  .heart-btn {
    width: 32px;
    height: 32px;
  }

  .product-badge {
    left: 8px;
    top: 8px;
    max-width: calc(100% - 48px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 8px;
  }

  .discovery-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
  }

  .discovery-tile,
  .discovery-tile.tile-1,
  .discovery-tile.tile-4 {
    min-width: 84vw;
    height: 440px;
  }

  .trustgrid {
    grid-template-columns: 1fr;
  }

  .trustitem {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .newsletter {
    padding: 34px 22px;
  }

  .newsletter h2 {
    font-size: 42px;
  }

  .footer-main {
    padding-inline: 20px;
  }
}

@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-v3 h1 {
    font-size: 46px;
  }
}


/* Shop V3 catalogue shell */
.shop-page-v3 {
  background: #f8f7f3;
}

.shop-hero-v3 {
  padding: 72px 0 50px;
  background: #e8e4da;
  border-bottom: 1px solid #d8d6cf;
}

.shop-hero-grid-v3 {
  display: grid;
  grid-template-columns: 1fr minmax(340px, .62fr);
  gap: 64px;
  align-items: end;
}

.shop-hero-v3 .page-title {
  margin-top: 10px;
}

.shop-hero-summary-v3 {
  padding-bottom: 8px;
}

.shop-hero-summary-v3 > p {
  max-width: 540px;
  color: #5c655d;
  font-size: 14px;
  line-height: 1.7;
}

.shop-market-row-v3 {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(17,19,15,.14);
}

.shop-market-row-v3 span {
  font-size: 10.5px;
  color: #707970;
}

.shop-market-row-v3 b {
  color: var(--ink);
  font-weight: 750;
}

.shop-catalog-v3 {
  padding-top: 28px;
  padding-bottom: 90px;
}

.catalogue-notice-v3 {
  margin-bottom: 18px;
  padding: 15px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid #d8dad4;
  background: #fff;
  border-radius: 8px;
}

.catalogue-notice-v3 > b,
.catalogue-notice-v3 > div b {
  display: block;
  font-size: 12.5px;
}

.catalogue-notice-v3 > span,
.catalogue-notice-v3 > div span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11.5px;
}

.catalogue-notice-v3.error {
  border-color: #debcbc;
  background: #fffafa;
}

.shop-category-nav-v3 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid #d8dad4;
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
}

.shop-category-chip-v3 {
  min-height: 74px;
  padding: 13px 12px;
  border: 0;
  border-right: 1px solid #e1e2dd;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s ease, color .2s ease;
}

.shop-category-chip-v3:last-child {
  border-right: 0;
}

.shop-category-chip-v3 span {
  font-size: 12px;
  font-weight: 720;
}

.shop-category-chip-v3 small {
  font-size: 9px;
  color: #8a928a;
}

.shop-category-chip-v3:hover {
  background: #f0efe9;
}

.shop-category-chip-v3.active {
  background: var(--ink);
  color: #fff;
}

.shop-category-chip-v3.active small {
  color: rgba(255,255,255,.55);
}

.shop-toolbar-v3 {
  margin-bottom: 24px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-block: 1px solid #d8dad4;
}

.shop-result-count-v3 {
  min-width: 160px;
}

.shop-result-count-v3 > span {
  display: block;
  margin-bottom: 3px;
  font-size: 7.5px;
  letter-spacing: .17em;
  font-weight: 850;
  color: #929992;
}

.shop-result-count-v3 b {
  font-size: 12px;
  font-weight: 740;
}

.shop-result-count-v3 i {
  font-style: normal;
  font-weight: 500;
  color: #929992;
}

.shop-search-v3 {
  justify-self: center;
  width: min(520px, 100%);
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #d5d7d1;
  border-radius: 999px;
  background: #fff;
  color: #6d756d;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  text-align: left;
  font-size: 11.5px;
}

.shop-search-v3 svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.8;
}

.shop-search-v3 span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shop-sort-v3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-sort-v3 > span {
  font-size: 9px;
  letter-spacing: .11em;
  font-weight: 800;
  text-transform: uppercase;
  color: #7c847c;
}

.shop-sort-v3 select {
  min-height: 40px;
  padding: 0 34px 0 12px;
  border-radius: 5px !important;
  font-size: 11px;
}

.empty-state-v3 {
  padding: 90px 24px;
  background: #efede6;
  border: 1px solid #dcddd7;
  text-align: center;
}

.empty-state-v3 h2 {
  margin: 8px 0 10px;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -.04em;
}

.empty-state-v3 p {
  max-width: 520px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .shop-hero-grid-v3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shop-category-nav-v3 {
    display: flex;
    overflow-x: auto;
  }

  .shop-category-chip-v3 {
    min-width: 140px;
  }

  .shop-toolbar-v3 {
    grid-template-columns: auto 1fr;
  }

  .shop-sort-v3 {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .shop-hero-v3 {
    padding: 46px 0 34px;
  }

  .shop-market-row-v3 {
    gap: 10px 15px;
  }

  .shop-catalog-v3 {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .shop-category-nav-v3 {
    margin-inline: -16px;
    padding-left: 16px;
    border-left: 0;
    border-right: 0;
  }

  .shop-category-chip-v3 {
    min-width: 126px;
    min-height: 66px;
  }

  .shop-toolbar-v3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-search-v3 {
    justify-self: stretch;
    width: 100%;
  }

  .shop-sort-v3 {
    grid-column: auto;
    justify-self: stretch;
    justify-content: space-between;
  }

  .catalogue-notice-v3 {
    align-items: flex-start;
  }
}
