/* Tailgate Daddy — modern parking-lot outfitters */
:root {
  --navy: #0A2447;
  --navy-mid: #133866;
  --ink: #0A0A0A;
  --gold: #FFC72C;
  --gold-deep: #e0aa12;
  --off: #F5F5F5;
  --white: #ffffff;
  --sale: #C41E3A;
  --stock: #2E7D32;
  --muted: #5a6573;
  --line: #e4e6ea;
  --shadow: 0 10px 28px rgba(10, 36, 71, 0.08);
  --shadow-sm: 0 4px 14px rgba(10, 36, 71, 0.06);
  --radius: 14px;
  --header-h: 76px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--off);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100vh;
}
body.lock { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  z-index: 200;
  font-weight: 700;
}
.skip:focus { left: 0.6rem; top: 0.6rem; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Announce */
.announce {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}
.announce-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.45rem 0.7rem; }
.announce .sep { opacity: 0.45; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.18);
}
.header-inner {
  width: min(var(--max), calc(100% - 1.4rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}
.logo-mark {
  display: block;
  height: 54px;
  width: 54px;
  border-radius: 10px;
  background: #0A0A0A;
  flex-shrink: 0;
}
.logo-type {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}
.logo-type strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.logo-type span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.crest {
  display: block;
  width: min(220px, 46vw);
  height: auto;
  background: transparent;
}
.foot-crest { display: inline-block; margin-bottom: 0.85rem; }
.foot-crest img {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: #0A0A0A;
}
.lockup {
  display: block;
  width: min(820px, 100%);
  height: auto;
  margin: 0 auto 1.2rem;
  background: #0A0A0A;
  border-radius: 18px;
}
.brand-moment {
  background: #0A0A0A;
  color: var(--white);
  padding: 3.4rem 0;
  text-align: center;
}
.brand-moment .lede-soft { margin: 0.7rem auto 0; color: rgba(245,245,245,0.78); }
.brand-moment h2 { color: var(--white); }
.about-brand { padding: 2.2rem 0 0; }
.about-split { padding-bottom: 2rem; }
.about-split .prose { padding-top: 0; max-width: 46rem; }
.nav-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.header-tools { display: flex; align-items: center; gap: 0.35rem; }
.tool-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.tool-btn:hover { background: rgba(255,255,255,0.08); color: var(--gold); }
.tool-btn svg, .heart svg { width: 22px; height: 22px; }
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}
.cart-btn img { width: 22px; height: 22px; border-radius: 6px; }
.cart-btn:hover { background: #ffd45c; }
.count-pip {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--sale);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.cart-btn .count-pip { position: static; background: var(--navy); color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  line-height: 1;
  border-radius: 10px;
  min-height: 48px;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #ffd45c; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.btn-ghost:hover { background: rgba(255,199,44,0.12); }
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  outline: 1.5px solid var(--navy);
  outline-offset: -1.5px;
}
.btn-ghost-dark:hover { background: rgba(10,36,71,0.06); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-full { width: 100%; }
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  background: #c8c8c8;
  color: #4a4a4a;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(86vh, 860px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: #0A0A0A center/cover no-repeat;
}
.hero img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.82) 0%, rgba(10,36,71,0.55) 28%, rgba(10,36,71,0.12) 58%, transparent 78%),
    linear-gradient(180deg, transparent 42%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0 3.6rem;
  text-shadow: 0 2px 18px rgba(10,10,10,0.45);
}
.hero-inner > * { max-width: 36rem; }
.hero-inner .hero-actions { max-width: none; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 9vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  max-width: 14ch;
}
.hero .subhead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.hero .lede {
  max-width: 28rem;
  color: rgba(245,245,245,0.92);
  font-size: 1.05rem;
  margin: 0 0 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Trust */
.trust {
  background: var(--ink);
  color: var(--white);
  padding: 1.15rem 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  text-align: center;
}
.trust-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-row span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

/* Sections */
.section { padding: 4rem 0; }
.section-head { margin-bottom: 1.6rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.eyebrow.gold { color: var(--gold); }
h2, .page-hero h1, .prose h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.lede-soft { color: var(--muted); max-width: 40rem; }

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.cat-card {
  position: relative;
  display: block;
  min-height: 210px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.35s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05), rgba(10,10,10,0.72));
}
.cat-card div { position: relative; z-index: 1; padding: 1.1rem; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
}
.cat-arrow { color: var(--gold); font-size: 1.05rem; line-height: 1; }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.product-grid.grid-featured {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-media {
  position: relative;
  background: #eef0f3;
  aspect-ratio: 1 / 1;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
}
.badge-gold { background: var(--gold); color: var(--ink); }
.badge-navy { background: var(--navy); color: var(--gold); }
.heart {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
@media (pointer: coarse) {
  .heart { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
}
.heart svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.heart.is-on { color: var(--sale); }
.heart.is-on svg { fill: var(--sale); stroke: var(--sale); }
.quick-copy .heart, .pdp-buy .heart { position: static; }
.card-body { padding: 0.75rem 0.8rem 0.9rem; display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.card-cat {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.08;
}
.card-body h3 a { text-decoration: none; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.2rem;
}
.price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1;
  margin: 0.15rem 0 0.35rem;
}
.price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.stock {
  color: var(--stock);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
  align-items: center;
}
.card-body > .btn { width: 100%; min-height: 44px; padding: 0.65rem 0.5rem; font-size: 0.88rem; margin-top: auto; }
.card-actions .btn { min-height: 44px; padding: 0.65rem 0.5rem; font-size: 0.92rem; }
.quick-link {
  display: none;
  margin: 0.35rem auto 0;
  padding: 0.2rem;
  min-height: 32px;
  border: 0;
  background: none;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) and (min-width: 901px) {
  .quick-link { display: inline-flex; align-items: center; justify-content: center; }
}
.empty-grid { color: var(--muted); grid-column: 1 / -1; }

/* Promo */
.promo {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #0A0A0A;
}
.promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}
.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.78) 0%, rgba(10,36,71,0.35) 38%, transparent 62%),
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, transparent 40%);
  pointer-events: none;
}
.promo-inner { position: relative; z-index: 1; padding: 3.8rem 0; text-shadow: 0 2px 16px rgba(10,10,10,0.45); }
.promo-inner > * { max-width: 36rem; }
.promo h2 { max-width: 12ch; margin-bottom: 0.45rem; }
.promo-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}

/* UGC */
.ugc { background: var(--white); }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.ugc-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.ugc-grid img { width: 100%; height: 100%; object-fit: cover; }
.ugc-grid figcaption {
  position: absolute;
  left: -9999px;
}

/* Newsletter */
.newsletter {
  background: var(--navy);
  color: var(--white);
  padding: 3.4rem 0;
}
.news-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.news-grid img { width: 120px; height: 120px; border-radius: 16px; background: #0A0A0A; }
.news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.news-form input {
  flex: 1 1 220px;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  background: var(--white);
}

/* Page hero */
.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: var(--white);
  padding: 3.2rem 0 2.6rem;
  position: relative;
}
.page-hero.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,36,71,0.82), rgba(10,10,10,0.45));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero p { max-width: 40rem; color: rgba(245,245,245,0.86); margin: 0.6rem 0 0; }

/* Shop page — title + filters, no lifestyle hero */
.shop-page { padding: 1.35rem 0 3.2rem; }
.shop-head { margin-bottom: 1rem; }
.shop-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
}
.shop-head .eyebrow { margin-bottom: 0.35rem; }

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
  align-items: end;
}
.shop-toolbar label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.shop-toolbar select,
.form input, .form textarea, .form select,
.qty-input, #site-search {
  min-height: 46px;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
}
.shop-toolbar select:focus,
.form input:focus, .form textarea:focus, .form select:focus,
.qty-input:focus, #site-search:focus {
  outline: 2px solid var(--gold);
  border-color: var(--navy);
}

/* PDP */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 1.2rem 0 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.crumbs a { color: var(--navy); text-decoration: none; font-weight: 600; }
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 1rem 0 2.4rem;
  align-items: start;
}
.pdp-stage {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}
.pdp-stage img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; margin-top: 0.65rem; }
.thumb {
  border: 2px solid transparent;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}
.thumb.is-on { border-color: var(--gold); }
.thumb img { width: 100%; height: 88px; object-fit: cover; }
.pdp-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.92;
  margin: 0 0 0.7rem;
}
.pdp-meta { display: flex; flex-wrap: wrap; gap: 0.7rem 1rem; align-items: center; margin-bottom: 0.8rem; }
.pdp-meta .price { font-size: 2.4rem; }
.review-chip {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--white);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}
.pdp-buy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 1.1rem 0;
}
.qty-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.qty-input { width: 72px; text-align: center; }
.specs {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.specs span:first-child { color: var(--muted); }
.legal-chip { font-size: 0.82rem; color: var(--muted); }
.reviews { background: var(--white); }
.text-link { font-weight: 700; color: var(--navy); }

/* Prose / forms */
.prose { max-width: 46rem; padding: 2.4rem 0 3.4rem; }
.prose h2 { font-size: 1.8rem; margin: 1.8rem 0 0.5rem; }
.prose h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.25rem; margin: 1.2rem 0 0.4rem; }
.form { display: grid; gap: 0.85rem; max-width: 32rem; }
.form label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.form-status { min-height: 1.4rem; color: var(--stock); }
.faq details {
  background: var(--white);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 0.55rem 0;
  box-shadow: var(--shadow-sm);
}
.faq summary { cursor: pointer; font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(245,245,245,0.84);
  padding: 3rem 0 1.4rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.6rem;
}
.site-footer h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.site-footer h3.mt { margin-top: 1.3rem; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.32rem 0; }
.foot-legal {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,199,44,0.2);
  font-size: 0.8rem;
  color: rgba(245,245,245,0.62);
}

/* Drawers */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer, .wish-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 71;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0,0,0,0.25);
}
.drawer.open, .wish-drawer.open { transform: none; }
.drawer header, .wish-drawer header, .overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  background: var(--navy);
  color: var(--white);
}
.drawer header h2, .wish-drawer header h2, .overlay-head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
  font-size: 1.45rem;
}
.icon-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  min-height: 44px;
  min-width: 44px;
}
.drawer-body { padding: 1rem 1.1rem; flex: 1; overflow: auto; }
.drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.drawer-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--off);
}
.drawer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
  font-size: 1.05rem;
}
.drawer-item h3 a { text-decoration: none; }
.qty { display: flex; gap: 0.4rem; align-items: center; }
.qty button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--navy);
  background: var(--off);
  cursor: pointer;
  border-radius: 8px;
}
.drawer-foot {
  padding: 1rem 1.1rem 1.3rem;
  border-top: 2px solid var(--navy);
  background: var(--off);
}
.checkout-note, .empty-cart { font-size: 0.88rem; color: var(--muted); }
.wish-actions { display: grid; gap: 0.35rem; }

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1.2rem;
}
.overlay.open { display: grid; }
.overlay-card {
  background: var(--white);
  border-radius: 16px;
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  box-shadow: var(--shadow);
  position: relative;
}
.search-card, .account-card { width: min(560px, 100%); padding-bottom: 1.2rem; }
.search-card #site-search { width: calc(100% - 2.2rem); margin: 0.9rem 1.1rem; }
.search-hit {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.8rem;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  align-items: center;
}
.search-hit:hover { background: var(--off); }
.search-hit img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.search-hit em { display: block; color: var(--muted); font-style: normal; font-size: 0.85rem; }
.account-card { padding: 0 1.2rem 1.4rem; }
.account-card p { margin: 1rem 0; }
.quick-card { padding: 1.2rem; }
.quick-close { position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2; }
[data-quick-body] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.quick-media { background: var(--off); border-radius: 12px; overflow: hidden; }
.quick-media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.15rem;
  z-index: 90;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease;
  border-radius: 10px;
  border: 1px solid var(--gold);
}
.toast.show { transform: translateX(-50%) translateY(0); }

@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.grid-featured { grid-template-columns: repeat(5, 1fr); }
  .trust-row, .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-header { position: sticky; }
  .header-inner { grid-template-columns: auto auto 1fr; position: relative; }
  .logo-mark { height: 46px; width: 46px; }
  .logo-type strong { font-size: 1.15rem; }
  .logo-type span { font-size: 0.52rem; letter-spacing: 0.08em; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #07182f;
    flex-direction: column;
    padding: 0.6rem 1.2rem 1rem;
    gap: 0;
    z-index: 60;
    box-shadow: 0 16px 28px rgba(0,0,0,0.28);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.85rem 0;
    min-height: 44px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
  }
  .pdp, [data-quick-body], .news-grid { grid-template-columns: 1fr; }
  .hero { min-height: 68vh; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero .subhead { font-size: 1.2rem; }
  .hero .lede { font-size: 0.98rem; }
  .cart-btn .cart-label { display: none; }
  .product-grid.grid-featured { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.1rem; }
}
@media (max-width: 620px) {
  .product-grid, .product-grid.grid-featured, .ugc-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 0.9rem 0.7rem; }
  .hero { min-height: 78vh; }
  .hero-inner { padding: 3.2rem 0 2rem; }
  .hero h1 { font-size: clamp(2.05rem, 12vw, 2.85rem); max-width: 11ch; }
  .hero .subhead { font-size: 1.05rem; margin-bottom: 0.7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .tool-btn { width: 44px; height: 44px; }
  .foot-grid { gap: 1.6rem; }
  .foot-crest img { width: 120px; height: 120px; }
  .announce-inner { font-size: 0.62rem; letter-spacing: 0.08em; }
}
