:root{
  --bg: oklch(0.965 0.012 85);
  --surface: oklch(0.99 0.006 85);
  --surface-2: oklch(0.94 0.018 80);
  --fg: oklch(0.28 0.02 50);
  --muted: oklch(0.50 0.018 60);
  --border: oklch(0.90 0.02 70);
  --accent: oklch(0.59 0.135 45);
  --accent-press: oklch(0.50 0.135 45);
  --leaf: oklch(0.60 0.07 145);
  --success: oklch(0.58 0.12 150);
  --shadow: 0 1px 2px oklch(0.28 0.02 50 / 0.06), 0 8px 24px oklch(0.28 0.02 50 / 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--accent-press);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 2.75rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem);
  font-weight: 500;
}

p {
  margin: 0 0 1em;
}

p, li {
  max-width: 65ch;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -64px;
  background: var(--surface);
  color: var(--fg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: top 0.15s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 68px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.brand__mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath d='M9 21c0-6 4-12 11-13 0 7-5 12-11 13z' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M9 21c2-3 4-4 6-4' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  flex-shrink: 0;
}

.brand__mark--footer {
  margin-bottom: 12px;
}

.site-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav a:hover {
  color: var(--fg);
  background: var(--surface-2);
}

.site-nav a[aria-current="page"] {
  color: var(--fg);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  background: var(--surface-2);
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 500;
  white-space: nowrap;
}

.cart-link:hover {
  border-color: var(--accent);
  color: var(--accent-press);
}

.cart-link__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, oklch(0.20 0.02 50 / 0.62), oklch(0.20 0.02 50 / 0.78)), url('/images/hero.jpg') center/cover no-repeat;
  color: oklch(0.99 0.006 85);
  padding-block: clamp(60px, 8vw, 120px);
}

.hero__inner {
  max-width: 640px;
}

.hero h1 {
  color: oklch(0.99 0.006 85);
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem);
  margin-bottom: 0.4em;
}

.hero__lede {
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  max-width: 50ch;
  margin-bottom: 28px;
  color: oklch(0.96 0.006 85);
}

.hero .eyebrow {
  color: oklch(0.92 0.04 75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-press);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-press);
}

.hero .btn--ghost {
  color: oklch(0.99 0.006 85);
  border-color: oklch(0.99 0.006 85 / 0.6);
}

.hero .btn--ghost:hover {
  border-color: oklch(0.99 0.006 85);
  color: #fff;
  background: oklch(0.99 0.006 85 / 0.1);
}

.btn--small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.92rem;
}

.btn--block {
  width: 100%;
}

.section {
  padding-block: clamp(48px, 7vw, 88px);
}

.section__head {
  margin-bottom: 32px;
  max-width: 70ch;
}

.section__head h2 {
  margin-bottom: 0.3em;
}

.section__head p {
  color: var(--muted);
  margin-bottom: 0;
}

.section--alt {
  background: var(--surface);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--accent) 40%, var(--border));
  box-shadow: 0 1px 2px oklch(0.28 0.02 50 / 0.06), 0 14px 32px oklch(0.28 0.02 50 / 0.12);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}

.product-card__region {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-card__price {
  font-weight: 600;
  margin-top: auto;
  padding-top: 8px;
}

.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.breadcrumbs {
  font-size: 0.92rem;
  margin: 20px 0 24px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  max-width: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  color: var(--border);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-press);
}

.breadcrumbs [aria-current="page"] {
  color: var(--fg);
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.value-item h3 {
  margin-bottom: 0.3em;
}

.value-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.value-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--accent);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split--reverse .split__text { order: 2; }

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__text p {
  color: var(--fg);
}

.split__text .lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.blockquote {
  border-left: 3px solid var(--leaf);
  padding: 12px 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fg);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.catalog-toolbar a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.catalog-toolbar a:hover {
  border-color: var(--accent);
  color: var(--accent-press);
}

.catalog-toolbar a.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.product-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-info h1 {
  margin-top: 6px;
}

.product-region {
  color: var(--muted);
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-price .muted {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: 8px;
}

.product-info .desc {
  margin-bottom: 24px;
}

.brew-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.brew-block h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.brew-block p {
  margin-bottom: 0;
  color: var(--fg);
}

.add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.add-to-cart label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.add-to-cart select {
  min-height: 48px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
}

.related h2 {
  margin-bottom: 24px;
}

.cart-page h1 {
  margin-top: 0;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
}

.cart-item__media {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}

.cart-item__meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item__total {
  font-weight: 600;
}

.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.qty button {
  width: 36px;
  min-height: 36px;
  background: var(--surface);
  border: 0;
  color: var(--fg);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
}

.qty button:hover {
  background: var(--surface-2);
}

.qty .qty__val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0 6px;
  border-inline: 1px solid var(--border);
  font-weight: 600;
}

.cart-totals {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.cart-totals dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
}

.cart-totals dt {
  color: var(--muted);
}

.cart-totals dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.cart-totals .totals-grand {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 14px;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.cart-totals .totals-grand dt,
.cart-totals .totals-grand dd {
  font-weight: 600;
  color: var(--fg);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.empty {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.empty h1 {
  margin-bottom: 12px;
}

.empty p {
  color: var(--muted);
  margin-inline: auto;
  margin-bottom: 24px;
}

.callout {
  background: var(--surface-2);
  border-left: 3px solid var(--leaf);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0 24px;
}

.callout p {
  margin: 0;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-note {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--surface-2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.nap-block dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  margin: 0;
}

.nap-block dt {
  color: var(--muted);
  font-weight: 500;
}

.nap-block dd {
  margin: 0;
}

.thankyou {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.thankyou h1 {
  margin-bottom: 12px;
}

.thankyou p {
  color: var(--muted);
  margin-inline: auto;
  margin-bottom: 24px;
}

.prose {
  max-width: 70ch;
}

.prose h1 {
  margin-top: 0;
}

.prose h2 {
  margin-top: 1.6em;
}

.prose p, .prose li {
  max-width: 65ch;
}

.shipping-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin: 24px 0;
}

.shipping-table dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0;
  margin: 0;
}

.shipping-table dt,
.shipping-table dd {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}

.shipping-table dt {
  font-weight: 600;
  color: var(--fg);
  background: var(--surface-2);
}

.shipping-table dt:first-of-type,
.shipping-table dd:first-of-type {
  border-top: 0;
}

.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 72px);
}

.page-hero h1 {
  margin: 0;
}

.page-hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 12px 0 0;
}

.error-page {
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 20px;
}

.error-page h1 {
  margin-bottom: 12px;
}

.site-footer {
  margin-top: 64px;
  padding-top: 56px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--fg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 14px;
  font-family: var(--font-body);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list a,
.footer-address a,
.footer-contact a {
  color: var(--fg);
  text-decoration: none;
}

.footer-list a:hover,
.footer-address a:hover,
.footer-contact a:hover {
  color: var(--accent-press);
  text-decoration: underline;
}

.footer-address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-contact {
  margin: 0;
  line-height: 1.7;
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: none;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999;
  background: var(--surface);
  color: var(--fg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px oklch(0.28 0.02 50 / 0.08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  max-width: 80ch;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .site-header__inner {
    flex-wrap: wrap;
  }
  .brand {
    flex: 1 1 auto;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding-bottom: 12px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    border-radius: 0;
    padding-block: 14px;
    border-bottom: 1px solid var(--border);
  }
  .site-nav a[aria-current="page"] {
    background: var(--surface-2);
  }
  .cart-link {
    flex-shrink: 0;
  }
  .cart-layout,
  .contact-grid,
  .product-detail,
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split--reverse .split__text { order: 0; }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 16px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 60px 1fr;
  }
  .cart-item__media {
    width: 60px;
    height: 60px;
  }
  .cart-item__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
