:root {
  --ink: #2e1e3e;
  --header: #2e1e3e;
  --muted: #6b6472;
  --paper: #ffffff;
  --panel: #ffffff;
  --line: #f1f1f1;
  --leaf: #127863;
  --wine: #722f37;
  --wine-dark: #5c2029;
  --gold: #ba9800;
  --rose: #b79d94;
  --shadow: 0 18px 50px rgba(46, 30, 62, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: 0.72; }

.screen-reader-text,
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: 74px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: var(--header);
  border-bottom: 1px solid rgba(186, 152, 0, 0.42);
  box-shadow: 0 8px 26px rgba(46, 30, 62, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 96px;
  max-height: 42px;
  object-fit: contain;
  border-radius: 0;
  padding: 0;
}

.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { color: #ffffff; }
.brand small { color: rgba(255,255,255,0.74); font-size: 12px; margin-top: 2px; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.icon-button,
.close-button,
.filter-tabs button,
.bottom-nav button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 104px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border-color: rgba(186, 152, 0, 0.7);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-weight: 800;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--header);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100svh - 90px);
  align-items: center;
  padding: clamp(36px, 6vw, 82px) clamp(18px, 5vw, 72px) 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78)),
    url("assets/m-de-minuty-rose-2024-1200x1000.jpg") right 12% center / min(52vw, 720px) auto no-repeat;
}

.hero-copy { max-width: 760px; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 { margin: 0 0 8px; font-size: 18px; }

.hero-copy p:not(.eyebrow),
.content-band p,
.delivery-band p {
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: var(--header);
  color: white;
  border-color: var(--header);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.platform-hero .hero-actions .button.secondary,
.platform-hero-panel .button.secondary {
  border-color: rgba(255,255,255,0.76);
  background: #ffffff;
  color: var(--header);
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.platform-hero .hero-actions .button.secondary:hover,
.platform-hero .hero-actions .button.secondary:focus-visible,
.platform-hero-panel .button.secondary:hover,
.platform-hero-panel .button.secondary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--header);
}

.button.full { width: 100%; }

.hero-products {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(222,216,202,0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-products img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
  background: #f2f2f2;
  border-radius: 6px;
}

.platform-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 86px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px) 30px;
  background:
    linear-gradient(90deg, rgba(46,30,62,0.92), rgba(46,30,62,0.42), rgba(46,30,62,0.22)),
    url("assets/wriggly-home-hero.jpg") center / cover no-repeat;
  color: white;
}

.platform-hero-copy { max-width: 780px; }
.platform-hero h1 { color: white; }

.platform-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.button.ghost {
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.08);
  color: white;
}

.platform-hero-panel {
  display: grid;
  gap: 14px;
  align-self: end;
  align-content: start;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(186, 152, 0, 0.38);
  border-radius: 8px;
  background: rgba(46,30,62,0.72);
  backdrop-filter: blur(10px);
}

.mini-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.platform-hero-panel strong {
  color: var(--gold);
  font-size: 22px;
}

.platform-hero-panel span {
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.location-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: min(760px, calc(100svh - 76px));
  align-items: end;
  padding: clamp(52px, 7vw, 104px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(46,30,62,0.88), rgba(46,30,62,0.48)),
    url("/app/assets/wriggly-home-hero.jpg") center / cover no-repeat;
  color: #ffffff;
}

.location-hero h1 {
  color: #ffffff;
  max-width: 860px;
}

.location-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  line-height: 1.55;
}

.location-hero .button.secondary,
.location-hero .button.ghost {
  border-color: rgba(255,255,255,0.76);
  color: #ffffff;
  background: rgba(46,30,62,0.24);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.location-section > div:first-child p {
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.62;
}

.location-card-list {
  display: grid;
  gap: 16px;
}

.location-card-list article,
.location-link-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(46,30,62,0.08);
}

.location-card-list article {
  padding: 22px;
}

.location-card-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.location-proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: #fffdf8;
  border-bottom: 1px solid rgba(186, 152, 0, 0.28);
}

.location-proof-band h2 {
  max-width: 900px;
}

.location-proof-band p {
  max-width: 820px;
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.62;
}

.location-proof-list {
  margin-top: 22px;
}

.location-area-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(186, 152, 0, 0.38);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(46, 30, 62, 0.08);
}

.location-area-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.location-area-panel .button {
  width: fit-content;
}

.location-hospitality {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--header);
  color: #ffffff;
}

.location-hospitality h2 {
  color: #ffffff;
}

.location-hospitality p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.62;
}

.location-hospitality-grid {
  display: grid;
  gap: 14px;
}

.location-hospitality-grid article {
  padding: 22px;
  border: 1px solid rgba(186, 152, 0, 0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.location-hospitality-grid h3 {
  color: var(--gold);
}

.location-hospitality-grid p {
  margin: 0;
  font-size: 16px;
}

.location-searches {
  margin-top: 0;
}

.location-searches .seo-grid {
  gap: 18px;
}

.location-searches .seo-grid a {
  padding: 24px;
  box-shadow: 0 12px 28px rgba(46, 30, 62, 0.06);
}

.location-searches .seo-grid strong {
  font-size: 19px;
}

.location-nearby {
  align-items: start;
}

.location-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.location-link-grid a {
  display: block;
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
}

.location-link-grid a:hover,
.location-link-grid a:focus-visible {
  border-color: var(--gold);
  color: var(--wine);
}

.location-link-grid-large a span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip span {
  padding: 16px;
  background: var(--panel);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.platform-trust {
  background: var(--header);
  color: white;
  border-block-color: rgba(186, 152, 0, 0.34);
}

.platform-trust span {
  background: var(--header);
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(186, 152, 0, 0.18);
}

.platform-section {
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.platform-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.platform-intro h2,
.sarah-copy h2,
.lead-card h2 {
  font-size: clamp(34px, 4.8vw, 64px);
}

.outcome-grid {
  display: grid;
  gap: 12px;
}

.outcome-grid article {
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: #fffdf8;
  border-radius: 8px;
}

.outcome-grid p {
  margin: 0;
  color: #4b4741;
  line-height: 1.55;
}

.sarah-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 6vw, 80px) clamp(18px, 5vw, 72px);
  background: #f7f3eb;
}

.sarah-card {
  display: grid;
  gap: 10px;
}

.sarah-photo-placeholder {
  display: grid;
  place-items: end start;
  min-height: 420px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(46,30,62,0.12), rgba(46,30,62,0.62)),
    url("assets/piquepoul-rose-vignobles-foncalieu-2024-1200x1000.jpg") center / cover no-repeat;
  color: white;
}

.sarah-photo-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.sarah-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sarah-copy p:not(.eyebrow) {
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.62;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-list span {
  padding: 9px 12px;
  border: 1px solid rgba(114, 47, 55, 0.2);
  border-radius: 999px;
  background: white;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.lead-funnels {
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) repeat(2, minmax(220px, 0.86fr));
  gap: 14px;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: var(--header);
}

.lead-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(186, 152, 0, 0.3);
  border-radius: 8px;
  background: white;
}

.lead-card.featured {
  background: #fffdf8;
}

.lead-card h2,
.lead-card h3 {
  margin: 0;
}

.lead-card p:not(.eyebrow) {
  color: #3f3d39;
  line-height: 1.56;
}

.sarah-card img {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 440px) minmax(190px, 260px);
  align-items: end;
  gap: 20px;
  padding: 56px clamp(18px, 5vw, 72px) 18px;
}

.search-box,
.sort-box {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.sort-box select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: white;
  color: var(--ink);
}

.sort-box select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, var(--wine) 50%) right 20px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--wine) 50%, transparent 50%) right 14px center / 7px 7px no-repeat,
    white;
  font-weight: 800;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 clamp(18px, 5vw, 72px) 22px;
}

.filter-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.filter-tabs button.active {
  background: var(--header);
  border-color: var(--header);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) 60px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 47, 55, 0.28);
  box-shadow: 0 16px 38px rgba(46, 30, 62, 0.12);
}

.product-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f2f2f2;
  padding: 10px;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  min-height: 44px;
  line-height: 1.2;
}

.product-body p {
  margin: 0;
  min-height: 72px;
  color: #52504c;
  font-size: 14px;
  line-height: 1.45;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.price-row strong { font-size: 18px; }
.price-row strong { color: var(--wine); }
.price-row small { color: var(--muted); font-weight: 700; }

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions .button {
  min-height: 40px;
  padding-inline: 10px;
  border-radius: 6px;
  font-size: 13px;
}

.signup-form {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.signup-form input {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(46, 30, 62, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.signup-form input:focus {
  outline: 2px solid rgba(186, 152, 0, 0.32);
  border-color: var(--gold);
}

.signup-form .button {
  width: 100%;
  min-height: 44px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.form-status.success { color: var(--leaf); }
.form-status.error { color: var(--wine); }

.content-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 58px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-grid article {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid p {
  margin: 0;
  color: #55524d;
  font-size: 15px;
  line-height: 1.48;
}

.seo-band,
.faq-band {
  margin: 26px clamp(18px, 5vw, 72px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(186, 152, 0, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,253,248,0.94)),
    var(--paper);
}

.seo-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: start;
}

.seo-copy p,
.faq-list p {
  color: #3f3d39;
  line-height: 1.58;
}

.seo-copy h2,
.faq-band h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.seo-copy p {
  max-width: 620px;
  margin-bottom: 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.seo-grid a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 16px 18px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(46, 30, 62, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.seo-grid a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 999px 999px 0 0;
}

.seo-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 47, 55, 0.28);
  box-shadow: 0 14px 30px rgba(46, 30, 62, 0.08);
}

.seo-grid strong {
  color: var(--wine);
  font-size: 18px;
}

.seo-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.faq-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(18px, 4vw, 38px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(46, 30, 62, 0.04);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 15px 18px;
  color: var(--wine);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(186, 152, 0, 0.14);
  color: var(--wine);
  font-size: 18px;
}

.faq-list details[open] summary::after { content: "-"; }

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 15px;
}

.delivery-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 30px;
  background: var(--header);
  color: white;
  border-radius: 8px;
}

.delivery-band p { color: rgba(255,255,255,0.86); margin-bottom: 0; }
.delivery-band .button { border-color: var(--gold); background: var(--gold); color: var(--header); }

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 90px);
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97), rgba(255,255,255,0.82)),
    url("assets/wriggly-home-hero.jpg") center / cover no-repeat;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero-copy p:not(.eyebrow),
.contact-intro p {
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.62;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(186, 152, 0, 0.32);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.contact-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.contact-panel dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.contact-panel dt,
.contact-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-panel dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.contact-panel a,
.contact-method-list a {
  color: var(--wine);
}

.contact-trust {
  border-top: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.contact-intro {
  display: grid;
  gap: 14px;
}

.contact-method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.contact-method-list a {
  padding: 10px 12px;
  border: 1px solid rgba(114, 47, 55, 0.2);
  border-radius: 999px;
  background: #fffdf8;
  font-size: 14px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ded8ca;
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form .message-field,
.contact-form button,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(44px, 6vw, 78px);
}

.contact-cards article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(186, 152, 0, 0.28);
  border-radius: 8px;
  background: #fffdf8;
}

.contact-cards p:not(.eyebrow) {
  margin: 0;
  color: #4b4741;
  line-height: 1.56;
}

.contact-delivery {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.country-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 90px);
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97), rgba(255,255,255,0.76)),
    var(--country-hero-image, url("assets/france-wine-country-hero.png")) center / cover no-repeat;
}

.country-hero-copy {
  max-width: 820px;
}

.country-hero-copy p:not(.eyebrow),
.country-intro p,
.country-region-card p,
.country-history p,
.country-product-intro p {
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.62;
}

.country-guide-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(186, 152, 0, 0.34);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.country-guide-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.country-guide-list {
  display: grid;
  gap: 12px;
}

.country-guide-list a,
.country-link-grid a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.country-guide-list strong,
.country-link-grid strong {
  color: var(--wine);
  font-size: 17px;
  line-height: 1.2;
}

.country-guide-list span,
.country-link-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.country-guide-list a:hover,
.country-guide-list a:focus-visible,
.country-link-grid a:hover,
.country-link-grid a:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(46, 30, 62, 0.08);
}

.country-section {
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.country-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.country-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.country-region-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 240px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(186, 152, 0, 0.28);
  border-radius: 8px;
  background: #fffdf8;
}

.country-region-card h3 {
  color: var(--wine);
}

.country-history {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #f7f3eb;
}

.country-history-list {
  display: grid;
  gap: 12px;
}

.country-history-list article {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
}

.country-history-list p {
  margin: 0;
  color: #4b4741;
  line-height: 1.55;
}

.country-link-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.country-product-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.country-product-meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.country-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.country-product-grid .product-card {
  min-height: 100%;
}

.country-loading,
.country-error {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--muted);
  font-weight: 800;
}

.country-cta {
  margin-top: 28px;
}

.country-faq {
  margin-top: 0;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.form-response {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(24px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97), rgba(255,255,255,0.82)),
    url("assets/wriggly-home-hero.jpg") center / cover no-repeat;
}

.form-response > div {
  max-width: 760px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(186, 152, 0, 0.32);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.form-response p:not(.eyebrow) {
  color: #3f3d39;
  font-size: 18px;
  line-height: 1.62;
}

.text-link {
  align-self: center;
  justify-self: start;
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: 56px clamp(18px, 5vw, 72px) 118px;
  color: #f3eee3;
  background: var(--header);
  border-top: 1px solid rgba(186, 152, 0, 0.32);
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer p {
  max-width: 420px;
  color: #c9c2b6;
  line-height: 1.6;
}

.footer nav {
  display: grid;
  gap: 12px;
  min-width: 180px;
}

.footer a {
  color: rgba(255,255,255,0.82);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
}

.bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 6px;
  background: var(--header);
  border: 1px solid rgba(186, 152, 0, 0.34);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.bottom-nav a,
.bottom-nav button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100vw);
  height: 100svh;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-panel.open { transform: translateX(0); }

.product-detail {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 40px);
  pointer-events: none;
}

.product-detail.open {
  display: flex;
  pointer-events: auto;
}

.detail-card {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(820px, calc(100svh - 32px));
  overflow: auto;
  background: white;
  border: 1px solid rgba(186, 152, 0, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(22px, 5vw, 44px);
}

.detail-media {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: clamp(16px, 3vw, 24px);
  background: #f7f3eb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-media .eyebrow {
  margin: 0;
  color: var(--gold);
}

.detail-media img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  padding: 8px;
  background: white;
  border: 1px solid rgba(46, 30, 62, 0.08);
  border-radius: 8px;
}

.detail-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 8px 42px 8px 0;
}

.detail-heading {
  display: grid;
  gap: 8px;
}

.detail-copy h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.04;
}

.detail-copy p,
.detail-description p {
  margin: 0;
  color: #3f3d39;
  font-size: 16px;
  line-height: 1.62;
}

.detail-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  background: #fffdf8;
  border: 1px solid rgba(186, 152, 0, 0.26);
  border-radius: 8px;
}

.detail-price strong {
  color: var(--wine);
  font-size: 26px;
}

.detail-price span {
  color: var(--muted);
  font-weight: 800;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.detail-facts div {
  display: grid;
  gap: 6px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.detail-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-facts dd {
  margin: 0;
  font-weight: 800;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(114, 47, 55, 0.18);
  border-radius: 999px;
  color: var(--wine);
  background: white;
  font-size: 12px;
  font-weight: 900;
}

.attribute-table-wrap {
  border: 1px solid rgba(46, 27, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(46, 27, 62, 0.06);
}

.attribute-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.45;
}

.attribute-table tr + tr {
  border-top: 1px solid rgba(46, 27, 62, 0.09);
}

.attribute-table th,
.attribute-table td {
  padding: 13px 16px;
  text-align: left;
  vertical-align: top;
}

.attribute-table th {
  width: 34%;
  color: var(--plum);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(192, 157, 0, 0.07);
}

.attribute-table td {
  color: var(--text);
}

.detail-attributes {
  box-shadow: none;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.detail-description {
  display: grid;
  gap: 0;
  max-width: 720px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.wine-note-block {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.wine-note-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.detail-description h3,
.detail-description h4 {
  margin: 0;
  color: var(--wine);
}

.detail-description h3 {
  font-size: 18px;
}

.detail-description h4 {
  margin-top: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.detail-description p + p {
  margin-top: 2px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.close-button {
  align-self: start;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.cart-items {
  overflow: auto;
  padding: 16px 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  background: #f2f2f2;
}

.cart-line h3 {
  margin: 0;
  font-size: 15px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-weight: 900;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: white;
}

.fulfilment-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.fulfilment-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fulfilment-choice label {
  position: relative;
  display: grid;
  gap: 6px;
  align-items: stretch;
  min-height: 104px;
  padding: 13px;
  border: 1px solid rgba(46, 30, 62, 0.13);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.fulfilment-choice label:has(input:checked) {
  border-color: var(--wine);
  background: #fffdf8;
  box-shadow: 0 8px 22px rgba(46, 30, 62, 0.08);
}

.fulfilment-choice label:has(input:checked)::after {
  content: "Selected";
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--header);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.fulfilment-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  accent-color: var(--wine);
}

.fulfilment-choice span {
  display: grid;
  align-content: start;
  gap: 5px;
}

.fulfilment-choice strong {
  color: var(--ink);
  font-size: 16px;
}

.fulfilment-choice small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.account-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(46, 30, 62, 0.13);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.account-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}

.account-choice span {
  display: grid;
  gap: 3px;
}

.account-choice strong {
  color: var(--ink);
}

.account-choice small {
  color: var(--muted);
  line-height: 1.35;
}

.checkout-email-field {
  display: grid;
  gap: 0.4rem;
  margin: 0.1rem 0 0.25rem;
}

.checkout-email-field span {
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 900;
}

.checkout-email-field input {
  width: 100%;
  border: 1px solid rgba(46, 30, 62, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 0.78rem 0.85rem;
}

.checkout-email-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 145, 0, 0.13);
}

.checkout-email-field small {
  color: var(--muted);
  line-height: 1.35;
  margin-top: -0.1rem;
}

.account-link {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary small {
  color: var(--muted);
  line-height: 1.4;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(46,30,62,0.42);
}

.product-count {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--header);
}

.success-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 7vw, 64px);
  background: white;
  border: 1px solid rgba(186, 152, 0, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.success-logo {
  width: 180px;
  max-width: 70%;
  margin-bottom: 24px;
}

.scrim.open { display: block; }

.product-page-shell {
  padding-bottom: 0;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(36px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, #ffffff 0%, #fffdf8 58%, #f7f3eb 100%);
}

.product-page-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(46, 30, 62, 0.08);
}

.product-page-media img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.product-page-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 760px;
}

.product-page-copy h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
}

.product-page-intro {
  color: #3f3d39;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.52;
}

.product-page-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.product-page-section h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.product-notes-section {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 4vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.product-notes-section > div:first-child {
  max-width: 760px;
}

.product-page-section p,
.product-page-description p {
  max-width: 780px;
  color: #3f3d39;
  font-size: 17px;
  line-height: 1.7;
}

.product-page-description {
  display: grid;
  gap: 0;
  max-width: 1040px;
}

.product-page-description h3 {
  margin: 0;
  color: var(--wine);
  font-size: 18px;
  text-transform: uppercase;
}

.product-page-description .wine-note-block {
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: 12px clamp(22px, 4vw, 44px);
}

.product-page-description .wine-note-block h3 {
  grid-row: 1 / span 8;
  padding-top: 3px;
}

.product-page-description .wine-note-block p {
  max-width: 760px;
}

.product-page-description .wine-note-block.no-heading {
  grid-template-columns: minmax(0, 1fr);
}

.product-page-description .wine-note-block.no-heading p {
  max-width: 860px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-grid a {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.related-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f2f2f2;
  border-radius: 6px;
}

.related-grid strong {
  color: var(--wine);
  line-height: 1.25;
}

.related-grid span {
  color: var(--muted);
  font-weight: 900;
}

.seasonal-pick-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.seasonal-pick-label img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center 22%;
  border: 2px solid rgba(186, 152, 0, 0.55);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(46, 30, 62, 0.12);
}

.seasonal-pick-label .eyebrow {
  margin: 0;
}

.seasonal-pick-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(186, 152, 0, 0.32);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(46, 30, 62, 0.06);
}

.seasonal-pick-card img {
  width: 120px;
  height: 140px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
}

.seasonal-pick-card span {
  display: grid;
  gap: 8px;
}

.seasonal-pick-card strong {
  color: var(--wine);
  font-size: 22px;
  line-height: 1.15;
}

.seasonal-pick-card small {
  color: #3f3d39;
  font-size: 15px;
  line-height: 1.5;
}

.seasonal-pick-card em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .platform-hero { grid-template-columns: 1fr; min-height: auto; }
  .location-hero { grid-template-columns: 1fr; min-height: auto; }
  .platform-hero-panel { max-width: 680px; }
  .platform-intro,
  .sarah-section,
  .lead-funnels { grid-template-columns: 1fr; }
  .hero-products { max-width: 680px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .content-band { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-copy { padding-right: 0; }
  .detail-media { min-height: 280px; }
  .detail-media img { max-height: 380px; }
  .detail-facts { grid-template-columns: 1fr 1fr 1fr; }
  .seo-band,
  .faq-band { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .location-proof-band { grid-template-columns: 1fr; }
  .location-hospitality { grid-template-columns: 1fr; }
  .location-link-grid { grid-template-columns: 1fr 1fr; }
  .contact-hero,
  .contact-section,
  .country-hero,
  .country-intro,
  .country-history,
  .country-product-head { grid-template-columns: 1fr; min-height: auto; }
  .contact-panel { max-width: 680px; }
  .country-guide-panel { max-width: 680px; }
  .contact-cards { grid-template-columns: 1fr; }
  .country-region-grid { grid-template-columns: 1fr 1fr; }
  .country-link-section { grid-template-columns: 1fr; }
  .country-link-grid { grid-template-columns: 1fr 1fr; }
  .country-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .country-product-meta { text-align: left; }
  .product-page-hero,
  .product-page-section { grid-template-columns: 1fr; }
  .product-page-description .wine-note-block {
    grid-template-columns: 1fr;
  }
  .product-page-description .wine-note-block h3 {
    grid-row: auto;
  }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar { padding: 10px 14px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .brand-logo { width: 62px; }
  .icon-button { min-width: 84px; font-size: 13px; }
  .hero { padding: 28px 16px 18px; background-position: right -60px top 72px; background-size: 330px auto; }
  .platform-hero { padding: 34px 16px 22px; background-position: right -80px top 80px; background-size: 360px auto; }
  .location-hero { padding: 34px 16px 24px; }
  .contact-hero { padding: 34px 16px 24px; }
  .country-hero { padding: 34px 16px 24px; }
  .contact-hero-copy p:not(.eyebrow),
  .country-hero-copy p:not(.eyebrow),
  .country-intro p,
  .country-region-card p,
  .country-history p,
  .country-product-intro p,
  .contact-intro p { font-size: 17px; }
  .contact-panel { padding: 18px; }
  .country-guide-panel { padding: 18px; }
  .contact-section,
  .contact-cards,
  .country-section,
  .country-history { padding-inline: 16px; }
  .contact-form { grid-template-columns: 1fr; padding: 18px; }
  .country-region-grid,
  .country-link-grid,
  .country-product-grid { grid-template-columns: 1fr; }
  .country-product-grid .product-card:nth-child(n+13) { display: none; }
  .location-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .platform-hero-panel { padding: 18px; }
  .platform-section,
  .sarah-section,
  .lead-funnels { padding-inline: 16px; }
  .sarah-photo-placeholder { min-height: 320px; }
  .lead-card { min-height: auto; }
  h1 { font-size: 43px; }
  .hero-copy p:not(.eyebrow) { font-size: 16px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .toolbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-inline: 16px;
  }
  .filter-tabs { padding-inline: 16px; }
  .product-grid { grid-template-columns: 1fr 1fr; padding-inline: 16px; gap: 10px; }
  .product-body { padding: 12px; }
  .product-body h3 { font-size: 16px; min-height: 40px; }
  .product-body p { min-height: 92px; font-size: 13px; }
  .card-actions { grid-template-columns: 1fr; }
  .detail-card { max-height: calc(100svh - 24px); }
  .detail-layout { padding: 18px; }
  .detail-close { top: 10px; right: 10px; }
  .detail-copy { gap: 14px; }
  .detail-copy h2 { padding-right: 54px; font-size: 30px; }
  .detail-media { padding: 14px; }
  .detail-media img { max-height: 320px; }
  .detail-facts { grid-template-columns: 1fr; }
  .detail-actions { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .fulfilment-choice { grid-template-columns: 1fr; }
  .seo-band,
  .faq-band { margin-inline: 16px; padding: 22px; }
  .seo-grid { grid-template-columns: 1fr; }
  .location-section { padding-inline: 16px; }
  .location-proof-band { padding: 34px 16px; }
  .location-hospitality { padding: 34px 16px; }
  .location-area-panel .button { width: 100%; }
  .location-link-grid { grid-template-columns: 1fr; }
  .delivery-band { display: grid; margin-inline: 16px; padding: 22px; }
  .content-band { padding-inline: 16px; }
  .footer { display: grid; grid-template-columns: 1fr; padding-inline: 16px; }
  .footer nav { min-width: 0; }
  .cart-panel {
    width: 100vw;
    grid-template-rows: auto minmax(150px, 1fr) auto;
  }
  .cart-header { padding: 16px; }
  .cart-items {
    min-height: 150px;
    padding: 10px 16px;
  }
  .cart-line {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }
  .cart-line > strong {
    grid-column: 2;
    justify-self: start;
    color: var(--wine);
  }
  .cart-line img {
    width: 52px;
    height: 52px;
    object-fit: contain;
  }
  .cart-summary {
    max-height: 52svh;
    overflow: auto;
    padding: 14px 16px 18px;
  }
  .product-page-hero,
  .product-page-section { padding-inline: 16px; }
  .product-page-media { min-height: 320px; }
  .product-page-copy h1 { font-size: 38px; }
  .related-grid { grid-template-columns: 1fr; }
  .seasonal-pick-card { grid-template-columns: 88px minmax(0, 1fr); }
  .seasonal-pick-card img {
    width: 88px;
    height: 112px;
  }
  .seasonal-pick-card strong { font-size: 18px; }
  .bottom-nav { display: grid; }
  #wtchat-widget,
  .wtchat-widget,
  [id^="wtchat-widget"] {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
  }
  #wtchat-widget .wtchat-panel,
  #wtchat-widget [class*="panel"],
  #wtchat-widget [class*="window"] {
    max-height: calc(100svh - 128px) !important;
  }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
}
