/* Express V2 — Coastal minimal editorial skin */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --v2-sand: #E7E5E4;
  --v2-sand-light: #F5F5F4;
  --v2-sand-dark: #D6D3D1;
  --v2-teal: #0E7490;
  --v2-teal-dark: #0C6378;
  --v2-teal-soft: #CFFAFE;
  --v2-coral: #FB7185;
  --v2-coral-soft: #FFE4E6;
  --v2-ink: #1C1917;
  --v2-muted: #57534E;
  --v2-white: #FFFFFF;
  --v2-line: rgba(28, 25, 23, 0.1);
  --v2-radius: 32px;
  --v2-radius-sm: 20px;
  --v2-shadow: 0 24px 64px rgba(14, 116, 144, 0.1);
  --v2-shadow-soft: 0 12px 40px rgba(28, 25, 23, 0.06);
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Nunito', system-ui, sans-serif;

  /* bridge vars for inner pages using style.css */
  --cream: var(--v2-sand-light);
  --leaf: var(--v2-ink);
  --sage: var(--v2-muted);
  --earth: var(--v2-teal);
  --mint: var(--v2-teal-soft);
  --paper: var(--v2-white);
  --white: var(--v2-white);
  --line: var(--v2-line);
  --shadow: var(--v2-shadow);
  --radius: var(--v2-radius);
  --primary: var(--v2-teal);
  --secondary: var(--v2-coral);
  --accent: var(--v2-coral);
  --navy: var(--v2-ink);

  /* commerce-ui.css token bridge (cart, checkout) */
  --gen-ink: var(--v2-ink);
  --gen-navy: var(--v2-ink);
  --gen-rust: var(--v2-teal);
  --gen-rust-dark: var(--v2-teal-dark);
  --gen-blue: var(--v2-teal);
  --gen-blue-soft: var(--v2-teal-soft);
  --gen-gold: var(--v2-coral);
  --gen-sand: var(--v2-sand-light);
  --gen-cream: var(--v2-sand);
  --gen-blush: var(--v2-coral-soft);
  --gen-white: var(--v2-white);
  --gen-muted: var(--v2-muted);
  --gen-line: var(--v2-line);
  --gen-shadow: var(--v2-shadow-soft);
  --gen-radius: var(--v2-radius-sm);
  --gen-radius-lg: var(--v2-radius);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--v2-sand-light);
  color: var(--v2-ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; overflow-x: hidden; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

/* ── Header: airy transparent over hero ── */
.express-v2 .v2-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  background: transparent;
  border: none;
}

.express-v2 .v2-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.express-v2 .v2-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 280px;
}

.express-v2 .v2-brand-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v2-teal);
}

.express-v2 .v2-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
}

.express-v2 .v2-brand-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--v2-muted);
  line-height: 1.4;
}

.express-v2 .v2-nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.express-v2 .v2-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.express-v2 .v2-nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.express-v2 .v2-nav a:hover {
  color: var(--v2-teal);
  background: rgba(255, 255, 255, 0.6);
}

.express-v2 .v2-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.express-v2 .v2-signin {
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-teal);
  padding: 10px 16px;
}

.express-v2 .v2-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--v2-teal);
  color: var(--v2-white) !important;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.25);
  transition: transform 0.2s, background 0.2s;
}

.express-v2 .v2-cart:hover {
  background: var(--v2-teal-dark);
  transform: translateY(-1px);
}

.express-v2 .v2-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--v2-coral);
  color: var(--v2-white);
  font-size: 12px;
  font-weight: 800;
}

.express-v2 .nav-toggle {
  display: none;
  border: 1px solid var(--v2-line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--v2-ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

/* Home: sticky compact header — avoids overlapping the hero */
.express-v2.v2-home .v2-header {
  position: sticky;
  top: 0;
  background: rgba(245, 245, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-line);
  padding: 16px 0;
  box-shadow: var(--v2-shadow-soft);
}

.express-v2.v2-home .v2-brand-tag {
  display: none;
}

.express-v2.v2-home .v2-brand {
  max-width: none;
}

.express-v2.v2-home .v2-brand-name {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

/* Inner pages: sticky sand header */
.express-v2:not(.v2-home) .v2-header {
  position: sticky;
  top: 0;
  background: rgba(231, 229, 228, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-line);
  padding: 18px 0;
  box-shadow: var(--v2-shadow-soft);
}

/* ── Split hero ── */
.v2-hero {
  position: relative;
  padding: clamp(40px, 6vh, 64px) 0 clamp(56px, 8vh, 80px);
  background: var(--v2-sand-light);
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.v2-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.v2-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-coral);
  margin-bottom: 18px;
}

.v2-hero-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--v2-coral);
  border-radius: 2px;
  flex-shrink: 0;
}

.v2-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--v2-ink);
  margin: 0 0 14px;
  max-width: 14ch;
}

.v2-hero-tagline {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 700;
  color: var(--v2-teal);
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 34ch;
}

.v2-hero-lead {
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
  color: var(--v2-muted);
  max-width: 48ch;
  line-height: 1.75;
  margin: 0 0 32px;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--v2-radius-sm);
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-soft);
}

.v2-stat strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v2-teal);
  line-height: 1;
}

.v2-stat span {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
  line-height: 1.45;
}

.v2-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.v2-hero-art {
  position: relative;
  overflow: hidden;
  border-radius: var(--v2-radius);
  background:
    linear-gradient(145deg, var(--v2-teal) 0%, #0c6378 42%, var(--v2-coral) 100%);
  box-shadow: var(--v2-shadow);
  min-height: clamp(280px, 36vw, 420px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 32px);
}

.v2-hero-art img {
  width: min(100%, 520px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
}

.v2-hero-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v2-hero-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--v2-white);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-hero-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.28);
  box-shadow: var(--v2-shadow);
}

.v2-hero-chip-media {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--v2-sand);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.v2-hero-chip-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.v2-hero-chip-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.v2-hero-chip-body strong {
  font-size: 12px;
  font-weight: 800;
  color: var(--v2-ink);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-hero-chip-body span {
  font-size: 13px;
  font-weight: 800;
  color: var(--v2-teal);
}

/* ── Sections ── */
.v2-section {
  padding: clamp(64px, 10vh, 96px) 0;
}

.v2-section--sand {
  background: var(--v2-sand);
}

.v2-section-head {
  margin-bottom: 48px;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.v2-section-head .v2-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v2-teal);
  margin-bottom: 12px;
}

.v2-section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--v2-ink);
}

.v2-section-head p {
  font-size: 16px;
  color: var(--v2-muted);
  margin: 0;
  line-height: 1.7;
}

/* ── Category circles ── */
.v2-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.v2-cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 140px;
  text-align: center;
  transition: transform 0.25s ease;
}

.v2-cat-circle:hover {
  transform: translateY(-6px);
}

.v2-cat-circle-ring {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--v2-white);
  border: 2px solid var(--v2-sand-dark);
  display: grid;
  place-items: center;
  box-shadow: var(--v2-shadow-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.v2-cat-circle:hover .v2-cat-circle-ring {
  border-color: var(--v2-teal);
  box-shadow: 0 16px 40px rgba(14, 116, 144, 0.15);
}

.v2-cat-circle-icon {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--v2-teal);
  line-height: 1;
}

.v2-cat-circle h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--v2-ink);
  line-height: 1.25;
}

.v2-cat-circle span {
  font-size: 12px;
  font-weight: 700;
  color: var(--v2-muted);
}

/* ── Masonry featured grid ── */
.v2-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.v2-masonry .v2-product {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  overflow: hidden;
  box-shadow: var(--v2-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-masonry .v2-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow);
}

.v2-masonry .v2-product:nth-child(odd) {
  margin-top: 0;
}

.v2-masonry .v2-product:nth-child(even) {
  margin-top: 48px;
}

.v2-masonry .v2-product:nth-child(3) {
  margin-top: -24px;
}

.v2-product-media {
  aspect-ratio: 4/3;
  background: var(--v2-sand-light);
  padding: 24px;
  display: grid;
  place-items: center;
}

.v2-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--v2-radius-sm);
}

.v2-product-body {
  padding: 28px 28px 32px;
}

.v2-product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-coral);
  margin-bottom: 10px;
}

.v2-product h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--v2-ink);
}

.v2-product-desc {
  font-size: 14px;
  color: var(--v2-muted);
  line-height: 1.65;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v2-product-foot strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v2-teal);
}

/* ── Editorial promo strip ── */
.v2-promo {
  background: var(--v2-teal);
  color: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.v2-promo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--v2-white);
}

.v2-promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 48ch;
  line-height: 1.65;
}

/* ── Benefits row ── */
.v2-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v2-benefit {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: 28px;
  box-shadow: var(--v2-shadow-soft);
}

.v2-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--v2-coral-soft);
  color: var(--v2-coral);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.v2-benefit h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--v2-ink);
}

.v2-benefit p {
  font-size: 14px;
  color: var(--v2-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Buttons ── */
.btn, .v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover, .v2-btn:hover { transform: translateY(-2px); }

.btn-primary, .v2-btn-primary {
  background: var(--v2-teal);
  color: var(--v2-white) !important;
  border-color: var(--v2-teal);
}

.btn-primary:hover, .v2-btn-primary:hover {
  background: var(--v2-teal-dark);
  border-color: var(--v2-teal-dark);
}

.btn-secondary, .v2-btn-outline {
  background: transparent;
  color: var(--v2-teal) !important;
  border-color: var(--v2-teal);
}

.btn-soft, .v2-btn-soft {
  background: var(--v2-coral-soft);
  color: var(--v2-coral) !important;
  border-color: transparent;
}

.v2-promo .btn, .v2-promo .v2-btn {
  background: var(--v2-white);
  color: var(--v2-teal) !important;
  border-color: var(--v2-white);
}

/* ── Footer: sand, centered minimal ── */
.v2-footer {
  background: var(--v2-sand);
  padding: clamp(56px, 8vh, 80px) 0 36px;
  text-align: center;
  border-top: 1px solid var(--v2-line);
}

.v2-footer-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--v2-ink);
  margin: 0 0 8px;
}

.v2-footer-tag {
  font-size: 14px;
  color: var(--v2-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.v2-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 36px;
}

.v2-footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-teal);
  transition: color 0.2s;
}

.v2-footer-links a:hover { color: var(--v2-coral); }

.v2-footer-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
  letter-spacing: 0.02em;
}

.v2-footer-meta span { display: block; margin: 4px 0; }

/* ── Product page: express-v2 layout ── */
.express-v2-product {
  padding: clamp(48px, 8vh, 80px) 0;
}

.express-v2-product .v2-product-hero {
  margin-bottom: 40px;
}

.express-v2-product .v2-product-hero .v2-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-coral);
  margin-bottom: 12px;
}

.express-v2-product .v2-product-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--v2-ink);
  max-width: 20ch;
}

.express-v2-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.express-v2-gallery {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--v2-shadow-soft);
  position: sticky;
  top: 100px;
}

.express-v2-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--v2-radius-sm);
}

.express-v2-details {
  background: var(--v2-white);
  border-radius: var(--v2-radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--v2-shadow-soft);
}

.express-v2-details .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-teal);
  margin-bottom: 16px;
}

.express-v2-details .mini-copy {
  font-size: 16px;
  color: var(--v2-muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.express-v2-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.express-v2-specs span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--v2-sand-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-muted);
}

.express-v2-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--v2-line);
}

.express-v2-price strong {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--v2-teal);
}

.express-v2-form {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: end;
}

.express-v2-form label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--v2-ink);
}

.express-v2-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--v2-white);
  color: var(--v2-ink);
}

.express-v2-form select:focus {
  outline: none;
  border-color: var(--v2-teal);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

.express-v2-notice {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--v2-teal-soft);
  border-radius: var(--v2-radius-sm);
  font-size: 14px;
  color: var(--v2-teal-dark);
  line-height: 1.6;
}

.express-v2-related {
  margin-top: 64px;
}

.express-v2-related .v2-section-head {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 32px;
}

.express-v2-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.express-v2-related-grid .v2-product {
  background: var(--v2-white);
  border-radius: var(--v2-radius-sm);
  overflow: hidden;
  box-shadow: var(--v2-shadow-soft);
}

.express-v2-related-grid .v2-product-media {
  aspect-ratio: 1/1;
  padding: 16px;
}

.express-v2-related-grid .v2-product-body {
  padding: 18px 20px 22px;
}

.express-v2-related-grid .v2-product h3 {
  font-size: 1rem;
}

/* ── Shared utilities ── */
.eyebrow, .tag { font-family: var(--font-sans); }
.section { padding: 56px 0; }
.section-title h2 { font-family: var(--font-serif); color: var(--v2-ink); }
.notice {
  padding: 16px 20px;
  background: var(--v2-teal-soft);
  border-radius: var(--v2-radius-sm);
  color: var(--v2-teal-dark);
  line-height: 1.6;
}
label { font-family: var(--font-sans); font-weight: 800; color: var(--v2-ink); }
input, select, textarea {
  font-family: var(--font-sans);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius-sm);
  padding: 14px 16px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--v2-teal);
  box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.12);
}

/* Scroll reveal */
[data-scroll] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-scroll].visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .v2-hero h1 { max-width: none; }

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

  .v2-benefits { grid-template-columns: repeat(2, 1fr); }
  .express-v2-layout { grid-template-columns: 1fr; }
  .express-v2-gallery { position: static; }
  .express-v2-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { width: min(100% - 32px, 1200px); }

  .express-v2 .v2-header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .express-v2 .nav-toggle { display: inline-flex; }

  .express-v2 .v2-nav-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .express-v2 .v2-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid var(--v2-line);
    border-radius: var(--v2-radius-sm);
    padding: 12px;
    box-shadow: var(--v2-shadow);
  }

  .express-v2 .v2-nav.open { display: flex; }
  .express-v2 .v2-nav a { border-radius: var(--v2-radius-sm); }
  .express-v2 .v2-actions { justify-content: flex-end; }

  .v2-masonry {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-masonry .v2-product:nth-child(even),
  .v2-masonry .v2-product:nth-child(3) {
    margin-top: 0;
  }

  .v2-benefits { grid-template-columns: 1fr; }
  .v2-categories { gap: 16px; }
  .v2-cat-circle { width: 120px; }
  .v2-cat-circle-ring { width: 96px; height: 96px; }
  .v2-promo { flex-direction: column; text-align: center; }
  .v2-hero-chips { grid-template-columns: 1fr; }
  .express-v2-related-grid { grid-template-columns: 1fr; }
  .express-v2-form { grid-template-columns: 1fr; }
}
