:root {
  --bg: #0c0c0e;
  --bg-2: #141416;
  --surface: #17171a;
  --surface-2: #1c1c21;
  --ink: #f3eee6;
  --muted: #9a948a;
  --faint: #6f6a63;
  --line: #2a2a2e;
  --line-strong: #3a3a40;
  --accent: #e23b3b;
  --accent-2: #b91c1c;
  --accent-hi: #ff5c5c;
  --accent-dim: rgba(226, 59, 59, 0.16);
  --navy: #e23b3b;
  --gold: var(--accent);
  --gold-2: var(--accent-2);
  --danger: #e23b3b;
  --ok: #3d9a6a;
  --foam: #f3eee6;
  --header: #0c0c0e;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --radius: 10px;
  --max: 1280px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::placeholder { color: var(--muted); opacity: 0.85; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--accent); color: #0c0c0e; padding: 0.55rem 1rem; z-index: 200; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 1.4rem 1.2rem 3rem; }
.muted { color: var(--muted); }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.45rem; font-weight: 700;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--accent); color: var(--ink); border: 0; border-radius: 999px;
  padding: 0.75rem 1.25rem; font-weight: 700; text-decoration: none; cursor: pointer;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--accent-2); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--ink); }
.btn-danger { background: var(--danger); color: var(--ink); }
.btn-sm { padding: 0.45rem 0.75rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.announcement {
  background: var(--bg-2);
  color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.announcement a { color: var(--ink); text-decoration: underline; font-weight: 600; }
.announcement span { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-main {
  max-width: var(--max); margin: 0 auto;
  padding: 0.75rem 1.2rem 0.65rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.1rem; align-items: center;
}
.wordmark { text-decoration: none; display: inline-flex; align-items: baseline; gap: 0.4rem; line-height: 1; color: var(--ink); white-space: nowrap; }
.wordmark-name {
  font-family: var(--serif); font-size: 1.85rem; font-weight: 600; letter-spacing: -0.04em;
  color: var(--ink);
}
.wordmark-tld { font-size: 0.72rem; color: #ffffff; margin-left: 0; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }

.search-form { position: relative; max-width: 640px; width: 100%; margin: 0 auto; min-width: 0; }
.search-form input {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 0.68rem 2.8rem 0.68rem 1.1rem; color: var(--ink);
}
.search-form input:focus { border-color: var(--accent); outline: none; background: var(--surface-2); }
.search-form button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: var(--accent); color: var(--ink); border: 0; border-radius: 8px;
  width: 2.2rem; height: 2.2rem; cursor: pointer; display: grid; place-items: center;
}
.search-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 6px; box-shadow: var(--shadow); overflow: hidden; z-index: 60;
}
.search-suggest a {
  display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 0.7rem; align-items: center;
  padding: 0.6rem 0.8rem; text-decoration: none; border-bottom: 1px solid var(--line);
}
.search-suggest a:hover { background: var(--bg-2); }
.search-suggest img { width: 48px; height: 56px; object-fit: cover; border-radius: 4px; background: var(--bg); }
.search-suggest .s-name { font-weight: 700; }
.search-suggest .s-meta { font-size: 0.8rem; color: var(--muted); }
.search-suggest .s-price { color: var(--accent); font-weight: 800; }

.header-actions { display: flex; align-items: center; gap: 0.35rem; }
.icon-link, .cart-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  text-decoration: none; font-size: 0.88rem; color: var(--ink);
  padding: 0.4rem 0.55rem; border-radius: 4px; font-weight: 600;
}
.icon-link:hover, .cart-link:hover { background: var(--bg-2); }
.cart-count {
  min-width: 1.2rem; height: 1.2rem; border-radius: 999px;
  background: var(--accent); color: var(--ink); font-size: 0.7rem; font-weight: 800;
  display: inline-grid; place-items: center; padding: 0 0.28rem;
}
.cart-count[hidden] { display: none; }

.menu-toggle {
  display: none; background: transparent; border: 0; width: 2.3rem; height: 2.3rem;
  cursor: pointer; padding: 0.35rem;
}
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }

.mega { border-top: 1px solid var(--line); background: var(--header); }
.mega-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 0; padding: 0 1.2rem; position: relative;
}
.mega-inner > a {
  display: block; color: var(--ink);
  padding: 0.7rem 0.95rem; font-size: 0.92rem; font-weight: 700;
  text-decoration: none;
}
.mega-inner > a:hover, .mega-inner > a[aria-current="page"] { color: var(--accent-hi); }
.mega-item { position: relative; }
.mega-item > a, .mega-item > button {
  display: block; background: none; border: 0; color: var(--ink);
  padding: 0.7rem 0.95rem; font-size: 0.92rem; font-weight: 700; cursor: pointer;
  text-decoration: none;
}
.mega-item > a:hover, .mega-item > a[aria-current="page"] { color: var(--accent-hi); }
.mega-panel {
  display: none; position: absolute; left: 0; top: 100%;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 0 0 6px 6px; min-width: 540px; padding: 1rem 1.15rem;
  box-shadow: var(--shadow); z-index: 70;
  grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem 1.3rem;
}
.mega-item:hover .mega-panel, .mega-item:focus-within .mega-panel { display: grid; }
.mega-panel a { text-decoration: none; padding: 0.32rem 0; color: var(--muted); font-size: 0.9rem; }
.mega-panel a:hover { color: var(--accent-hi); }
.mega-panel strong {
  color: var(--ink); display: block; margin-bottom: 0.2rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
}

.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 0.5rem 1.2rem 1rem; background: var(--header); }
.mobile-nav a { display: block; padding: 0.55rem 0; text-decoration: none; border-bottom: 1px solid var(--line); font-weight: 600; }

body.age-locked { overflow: hidden; }
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.72);
  display: grid; place-items: center; padding: 1.2rem;
}
.age-gate-inner {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 2rem 1.5rem; max-width: 460px; width: 100%;
  box-shadow: var(--shadow); text-align: center;
}
.age-gate-inner h1 { font-size: 2rem; }
.age-gate-actions { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; margin-top: 1.1rem; }

.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding: 3.4rem 2.2rem 3rem 8vw; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 0.55rem; }
.lede { font-size: 1.08rem; color: var(--muted); max-width: 38rem; }
.hero-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 0.4rem; }
.hero-media {
  position: relative; min-height: 320px;
  display: grid; place-items: center; padding: 2rem;
  background: radial-gradient(circle at 50% 40%, rgba(226,59,59,0.16), transparent 58%);
}
.hero-cans { display: flex; gap: 0.5rem; align-items: flex-end; }
.hero-cans img {
  width: 118px; height: 158px; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--line); background: var(--bg); box-shadow: var(--shadow);
}
.hero-caption {
  position: absolute; bottom: 1rem; right: 1.1rem;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint);
}


a.promo-banner { text-decoration: none; color: inherit; }
.promo-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 420px;
  background: #111114;
  color: var(--ink);
}
.promo-banner-copy {
  padding: 2.8rem 2.2rem 2.8rem 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-banner .eyebrow { color: var(--accent); }
.promo-banner h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin-bottom: 0.4rem;
}
.promo-banner p { color: var(--muted); max-width: 28rem; }
.promo-banner .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}
.promo-banner-media { position: relative; min-height: 380px; overflow: hidden; background: #000; }
.promo-banner-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}
.promo-banner.is-poster {
  display: block;
  min-height: 0;
  background: #000;
  text-align: center;
}
.promo-banner.is-poster img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 720px;
  margin: 0 auto;
  object-fit: contain;
}

.trust {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line); background: var(--bg-2);
}
.trust article { padding: 1rem 1.15rem; border-right: 1px solid var(--line); }
.trust article:last-child { border-right: 0; }
.trust h3 { font-size: 0.95rem; margin: 0 0 0.2rem; font-family: var(--sans); }
.trust p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin: 0 0 1rem; }
.section-head h2 { margin: 0; font-size: 1.55rem; }

.style-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.65rem; }
.style-tile {
  display: block; text-decoration: none; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 0.85rem; min-height: 88px;
}
.style-tile:hover { border-color: var(--accent); }
.style-tile strong { display: block; font-family: var(--serif); font-size: 1.1rem; }
.style-tile span { color: var(--muted); font-size: 0.8rem; }

.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.promise article {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.1rem;
}
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-2); border-block: 1px solid var(--line);
}
.split-visual {
  min-height: 260px;
  background:
    radial-gradient(circle at 30% 40%, rgba(1,33,105,0.28), transparent 52%),
    repeating-linear-gradient(135deg, var(--surface) 0 14px, var(--bg-2) 14px 28px);
}
.split-copy { padding: 2.6rem 2.2rem; display: flex; flex-direction: column; justify-content: center; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 100%;
}
.card:hover { box-shadow: var(--shadow); }
.card-media {
  display: block; background: var(--bg); aspect-ratio: 1 / 1.05;
  position: relative; overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: contain; }
.badge {
  position: absolute; top: 0.55rem; left: 0.55rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 999px;
}
.badge-new { background: var(--navy); }
.badge-oos { background: var(--danger); }
.card-body { padding: 0.7rem 0.75rem 0.85rem; display: flex; flex-direction: column; gap: 0.18rem; flex: 1; }
.card-body h3 { font-size: 0.98rem; margin: 0; font-family: var(--sans); font-weight: 700; letter-spacing: 0; }
.card-body h3 a { text-decoration: none; }
.card-body h3 a:hover { color: var(--accent); }
.card-brew { font-size: 0.78rem; color: var(--muted); margin: 0; }
.card-meta { font-size: 0.75rem; color: var(--faint); margin: 0; }
.card-price { margin-top: 0.35rem; display: flex; align-items: baseline; gap: 0.4rem; }
.price { font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.compare { color: var(--faint); text-decoration: line-through; font-size: 0.85rem; }
.unit { font-size: 0.75rem; color: var(--muted); margin: 0; }
.card-actions { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem; margin-top: 0.55rem; align-items: stretch; }
.stepper {
  display: inline-flex; border: 1px solid var(--line-strong); border-radius: 4px; overflow: hidden; height: 2.2rem;
}
.stepper button {
  width: 1.8rem; background: var(--bg-2); border: 0; cursor: pointer; font-weight: 700;
}
.stepper input {
  width: 2.1rem; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  text-align: center; background: var(--surface);
}
.card.is-oos .card-actions { opacity: 0.55; pointer-events: none; }

.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 1.4rem; align-items: start; }
.filters-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 6px; padding: 0.95rem 0.95rem 1.1rem;
  position: sticky; top: 7.2rem;
}
.filters-toggle-label { display: none; }
.filters-panel h2 { font-size: 1rem; margin: 0 0 0.7rem; font-family: var(--sans); }
.filter-group { margin-bottom: 0.9rem; }
.filter-group h3 {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 0.35rem; font-weight: 800;
}
.filter-group label {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; color: var(--muted); padding: 0.14rem 0; cursor: pointer;
}
.filter-group input { accent-color: var(--accent); }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  margin-bottom: 0.85rem; flex-wrap: wrap;
}
.results-count { color: var(--muted); margin: 0; }
.field { display: flex; flex-direction: column; gap: 0.25rem; }
.field label span { color: var(--faint); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 4px; padding: 0.6rem 0.7rem; color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0 0 0.9rem; }
.chip {
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px; padding: 0.32rem 0.7rem; cursor: pointer; font-size: 0.84rem;
}
.chip[aria-pressed="true"], .chip.is-on { background: var(--accent); color: var(--ink); border-color: var(--accent); font-weight: 700; }

.pagination { display: flex; gap: 0.35rem; justify-content: center; flex-wrap: wrap; margin: 1.4rem 0 0.3rem; }
.pagination a, .pagination span {
  min-width: 2.1rem; height: 2.1rem; display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: 4px; text-decoration: none; font-size: 0.88rem;
}
.pagination a:hover { border-color: var(--accent); }
.pagination .is-current { background: var(--accent); color: var(--ink); border-color: var(--accent); font-weight: 800; }

.page-intro { margin-bottom: 1.2rem; max-width: 46rem; }
.page-intro h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.product-media { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info .price-row { display: flex; align-items: baseline; gap: 0.6rem; margin: 0.3rem 0 0.5rem; }
.product-info .price { font-size: 1.7rem; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 0.9rem 0 1rem; }
.specs div { background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 0.65rem 0.75rem; }
.specs dt { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 800; }
.specs dd { margin: 0.12rem 0 0; font-weight: 700; }
.product-facts {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0 1.25rem;
}
.product-facts article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 1.05rem;
}
.product-facts h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 0.4rem;
}
.product-facts p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}
.qty-row { display: flex; gap: 0.6rem; align-items: center; margin: 0.9rem 0; flex-wrap: wrap; }
.qty-row input { width: 4.4rem; text-align: center; border: 1px solid var(--line-strong); border-radius: 4px; padding: 0.6rem; background: var(--bg); color: var(--ink); }
.stock-ok { color: var(--ok); font-weight: 700; font-size: 0.9rem; }
.stock-low { color: var(--accent); font-weight: 800; }
.stock-out { color: var(--danger); font-weight: 800; }
.multibuy {
  background: var(--accent-dim); border: 1px solid var(--surface); border-radius: 6px;
  padding: 0.7rem 0.85rem; margin: 0.6rem 0 0.9rem; font-weight: 600;
}

.two-col { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 1.4rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); padding: 0.35rem 0; border-bottom: 1px solid var(--line);
}
.cart-table td { padding: 0.85rem 0.4rem 0.85rem 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 0.7rem; align-items: center; }
.cart-item img { width: 64px; height: 76px; object-fit: contain; border-radius: 6px; background: var(--bg); border: 1px solid var(--line); }
.cart-item a { text-decoration: none; font-weight: 700; }
.qty-mini { width: 3.8rem; border: 1px solid var(--line-strong); border-radius: 4px; padding: 0.35rem; text-align: center; background: var(--bg); color: var(--ink); }
.linkish { background: none; border: 0; color: var(--accent); cursor: pointer; text-decoration: underline; padding: 0; }
.summary {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 1rem 1.05rem;
  position: sticky; top: 7.2rem;
}
.summary h2 { font-size: 1.15rem; }
.summary-row { display: flex; justify-content: space-between; margin: 0.35rem 0; color: var(--muted); }
.summary-row.total { color: var(--ink); font-weight: 800; font-size: 1.12rem; border-top: 1px solid var(--line); padding-top: 0.65rem; margin-top: 0.65rem; }
.ship-options label, .pay-box {
  display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 0.8rem 0.9rem; margin-bottom: 0.5rem; cursor: pointer;
}
.ship-options label:has(input:checked), .pay-box { border-color: var(--accent); }
.checkout-banner {
  background: var(--accent-dim); border: 1px solid var(--surface);
  border-radius: 6px; padding: 0.8rem 0.95rem; margin-bottom: 1rem;
}
.checkout-banner:empty { display: none; }
.notice { background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 0.85rem 0.95rem; color: var(--muted); margin: 0.8rem 0; }
.empty {
  text-align: center; padding: 2.6rem 1rem;
  background: var(--bg-2); border: 1px dashed var(--line-strong); border-radius: 6px;
}

.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 1.1rem; }
.order-list { display: grid; gap: 0.65rem; }
.order-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 0.85rem 0.95rem; }
.order-card header { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.order-card p { margin: 0 0 0.4rem; }
.order-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f3eee6;
}
.order-status--wait {
  background: #141416;
  color: #9a948a;
  border: 1px solid #2a2a2e;
}
.order-status--paid {
  background: rgba(226, 59, 59, 0.16);
  color: #f3eee6;
  border: 1px solid #e23b3b;
}
.order-status--sent {
  background: rgba(61, 154, 106, 0.18);
  color: #3d9a6a;
  border: 1px solid #3d9a6a;
}
.order-send {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #2a2a2e;
}
.order-send label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #f3eee6;
}
.order-send input {
  width: 100%;
  min-height: 44px;
  background: #0c0c0e;
  color: #f3eee6;
  border: 1px solid #3a3a40;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font-size: 16px;
}
.order-send .btn {
  min-height: 44px;
  width: 100%;
  max-width: 22rem;
  background: #e23b3b;
  color: #f3eee6;
  cursor: pointer;
}
.order-send .btn-ghost {
  background: transparent;
  color: #f3eee6;
  border: 1px solid #3a3a40;
}
.order-send-note {
  margin: 0.7rem 0 0;
  color: #9a948a;
  font-weight: 600;
}
.order-sent-flag {
  margin: 0.7rem 0 0.2rem;
  color: #3d9a6a;
  font-weight: 800;
}
@media (max-width: 720px) {
  .order-send .btn { max-width: none; }
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th, .admin-table td { text-align: left; padding: 0.5rem 0.35rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table input, .admin-table select { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 0.3rem 0.4rem; background: var(--bg); color: var(--ink); }
.photo-pick {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.photo-preview {
  max-height: 160px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
}
.photo-remove {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  font-size: 0.9rem;
}
.tabs { display: flex; gap: 0.35rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.auth-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.site-footer { background: var(--header); border-top: 1px solid var(--line); margin-top: 2.2rem; color: var(--muted); }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 1.4rem;
  padding: 2.2rem 1.2rem 1.4rem;
}
.footer-deals p { font-size: 0.9rem; }
.footer-subscribe {
  display: flex;
  gap: 0.4rem;
  margin: 0.5rem 0 0.4rem;
  flex-wrap: wrap;
}
.footer-subscribe input[type="email"] {
  flex: 1 1 10rem;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.5rem 0.65rem;
  background: var(--bg);
  color: var(--ink);
}
.footer-deals-note { font-size: 0.78rem; color: var(--faint); margin: 0; }
.footer-brand .wordmark { color: var(--ink); }
.footer-lede { max-width: 28rem; }
.site-footer h2 {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 0.6rem; font-weight: 800;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent-hi); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.55rem 0 0;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #f3eee6;
  text-decoration: none;
  border-radius: 8px;
}
.social-icon svg { display: block; }
.social-icon:hover,
.social-icon:focus-visible,
.site-footer .social-icon:hover,
.site-footer .social-icon:focus-visible {
  color: #e23b3b;
}
.footer-brand .social-links { margin-top: 0.65rem; }
a[href^="mailto:"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
a[href^="mailto:"]:hover { color: var(--accent-hi); }
.site-footer a[href^="mailto:"] { color: var(--ink); }
.site-footer li { margin: 0.25rem 0; }
.footer-base {
  max-width: var(--max); margin: 0 auto;
  padding: 0.85rem 1.2rem 1.3rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--faint);
}
.legal-page { max-width: 46rem; }
.legal-page h2 { margin-top: 1.3rem; }

.toast {
  position: fixed; bottom: 1.1rem; right: 1.1rem; z-index: 90;
  background: var(--navy); color: var(--ink); border-radius: 6px; padding: 0.7rem 0.95rem;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); pointer-events: none; transition: 0.2s ease;
}
.toast-show { opacity: 1; transform: none; }
.toast-error { background: var(--danger); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .style-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
}
@media (max-width: 899px) {
  .link-label { display: none; }
  .mega { display: none; }
  .hero, .split, .two-col, .product-layout, .account-grid, .auth-split, .form-grid, .promise, .footer-grid, .promo-banner {
    grid-template-columns: 1fr;
  }
  .promo-banner-media { min-height: 280px; order: -1; }
  .promo-banner-copy { padding: 1.6rem 1.2rem 1.8rem; }
  .promo-banner.is-poster img { max-height: 480px; }
  .hero-copy { padding: 2rem 1.2rem 1.4rem; }
  .hero-cans { justify-content: center; max-width: 100%; }
  .hero-cans img { width: 88px; height: 118px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
  .style-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust article { border-right: 0; border-bottom: 1px solid var(--line); }
  .split-copy { padding: 1.8rem 1.2rem; }
  .announcement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.12rem 0.65rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.3;
  }
  .header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.5rem;
    padding: 0.5rem 0.95rem 0.45rem;
  }
  .wordmark { margin-right: auto; flex: 0 1 auto; }
  .wordmark-name { font-size: 1.28rem; }
  .wordmark-tld { font-size: 0.58rem; letter-spacing: 0.12em; }
  .header-actions { gap: 0.15rem; flex: 0 0 auto; }
  .icon-link, .cart-link {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0.5rem 0.4rem;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 44px;
    height: auto;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem 0.5rem;
    overflow: visible;
  }
  .search-form { flex: 1 1 100%; order: 3; max-width: none; min-width: 0; }
  .search-form input {
    min-height: 44px;
    font-size: 16px;
    padding: 0.65rem 3.1rem 0.65rem 1rem;
  }
  .search-form button {
    width: 2.4rem;
    height: 2.4rem;
  }
  .search-suggest a { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .mobile-nav:not([hidden]) { display: block; }
  .mobile-nav {
    padding: 0.25rem 0.95rem 0.85rem;
    max-height: min(70dvh, 28rem);
    overflow-y: auto;
  }
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0;
  }
  .summary { position: static; }
  .card-actions { grid-template-columns: 1fr; }
  .stepper { display: flex; height: 44px; width: 100%; }
  .stepper button { width: 44px; min-width: 44px; }
  .stepper input { flex: 1; width: auto; min-width: 0; }
  .card-actions .btn { min-height: 44px; width: 100%; }
  .btn, .btn-sm { min-height: 44px; }
  .btn-sm { padding: 0.6rem 0.9rem; }
  .age-gate { padding: 0.85rem; }
  .age-gate-inner { padding: 1.35rem 1.05rem; max-width: 100%; }
  .age-gate-inner h1 { font-size: 1.5rem; }
  .age-gate-actions { flex-direction: column; align-items: stretch; }
  .age-gate-actions .btn { width: 100%; min-height: 44px; }
  .field input, .field select, .field textarea {
    min-height: 44px;
    font-size: 16px;
  }
  .field textarea { min-height: 120px; }
  .filter-group label {
    min-height: 44px;
    padding: 0.5rem 0;
  }
  .chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
  }
  .pagination a, .pagination span {
    min-width: 44px;
    height: 44px;
  }
  .qty-row input { min-height: 44px; font-size: 16px; }
  .footer-subscribe { align-items: stretch; }
  .footer-subscribe input[type="email"] { min-height: 44px; font-size: 16px; }
  .footer-subscribe .btn { min-height: 44px; }
  .footer-brand .wordmark-name { font-size: 1.28rem; }
  .section-head { flex-wrap: wrap; align-items: center; }
  .toast { left: 0.85rem; right: 0.85rem; bottom: 0.85rem; }
  .cart-table, .cart-table tbody { display: block; width: 100%; }
  .cart-table thead { display: none; }
  .cart-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.4rem 0.75rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .cart-table td {
    display: block;
    padding: 0;
    border: 0;
  }
  .cart-table td:first-child { grid-column: 1 / -1; }
  .cart-table td:nth-child(2) { align-self: center; }
  .cart-table td:nth-child(3) { font-weight: 800; justify-self: end; align-self: center; }
  .cart-table td:nth-child(4) { grid-column: 1 / -1; }
  .qty-mini { min-height: 44px; min-width: 3.6rem; font-size: 16px; }
  .linkish { min-height: 44px; padding: 0.45rem 0; }
  input[type="checkbox"]:not(.sr-only), input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
  }
  #admin-root { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 40rem; }
  .menu-toggle span { margin: 0; width: 100%; }
  .menu-toggle { gap: 5px; }
  #checkout-form .btn[type="submit"] { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .filters-toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
  }
  .filters-toggle-label::after {
    content: "Show";
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .filters-toggle:checked + .filters-toggle-label::after { content: "Hide"; }
  .filters-panel { padding: 0; }
  .filters-body { display: none; padding: 0 0.9rem 0.95rem; }
  .filters-body h2 { display: none; }
  .filters-toggle:checked ~ .filters-body { display: block; }
}
@media (max-width: 520px) {
  .wrap { padding: 1rem 0.8rem 2.2rem; }
  .header-main { padding: 0.4rem 0.8rem; }
  .mobile-nav { padding-left: 0.8rem; padding-right: 0.8rem; }
  .footer-grid { padding: 1.6rem 0.8rem 1.1rem; gap: 1.1rem; }
  .footer-base { padding: 0.8rem 0.8rem 1.2rem; }
  .announcement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.15rem 0.75rem;
    padding: 0.35rem 0.8rem;
    font-size: 0.64rem;
  }
  .announcement span:nth-child(2) { display: none; }
  .style-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .page-intro h1 { font-size: 1.65rem; }
  .hero-copy { padding: 1.45rem 0.8rem 1.1rem; }
  .hero-media { padding: 1rem 0.6rem 1.3rem; min-height: 0; }
  .hero-cans img { width: 72px; height: 96px; }
  .promo-banner-copy { padding: 1.3rem 0.8rem 1.5rem; }
  .promo-banner-media { min-height: 220px; }
  .product-grid { gap: 0.45rem; }
  .card-body { padding: 0.55rem 0.5rem 0.65rem; }
  .card-body h3 { font-size: 0.9rem; }
  .qty-row { align-items: stretch; }
  .qty-row .btn { width: 100%; }
  .footer-subscribe { flex-wrap: nowrap; }
  .checkout-banner, .notice, .multibuy, .pay-box, .ship-options label { overflow-wrap: anywhere; }
}
