/* Tobias United Kids — retail-clean soccer storefront
   Palette: navy/black + white + gold accent (optional red highlight)
   Inspired by pro soccer retailer layout patterns — original brand assets only */

:root {
  --navy: #0a1628;
  --navy-soft: #14233d;
  --black: #0a0a0a;
  --gold: #c9a227;
  --gold-bright: #e0b93a;
  --accent-red: #b91c1c;
  --white: #ffffff;
  --off: #f3f4f6;
  --gray: #e5e7eb;
  --line: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --danger: #b42318;
  --radius: 10px;
  --font: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --mobile-bar-h: 4.75rem;
  --header-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.55;
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* —— Slim dark utility bar —— */
.util-bar {
  background: var(--black);
  color: #d1d5db;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.util-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 0.75rem;
}
.util-left, .util-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.util-admin {
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 3px;
  padding: .28rem .55rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.util-admin:hover,
.util-admin:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--navy);
}
.util-link {
  color: #e5e7eb !important;
  text-decoration: none;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.util-link:hover { color: var(--gold-bright) !important; }
.util-cart {
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
}
.util-cart:hover { color: var(--gold-bright) !important; }
.util-bar .lang-toggle {
  border-color: #374151;
  background: transparent;
}
.util-bar .lang-toggle button {
  color: #9ca3af;
  min-height: 28px;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
}
.util-bar .lang-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--navy);
}
.util-bar .cart-count {
  background: var(--accent-red);
  color: #fff;
}

/* —— Main header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0.45rem 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  flex-shrink: 0;
}
.logo-link img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
}
.logo-text span {
  display: block;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.6rem;
}

.search-form {
  display: none;
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.search {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  padding: 0.65rem 2.75rem 0.65rem 1rem;
  background: var(--off);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
}
.search:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.08);
}
.search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 0 3px 3px 0;
  font-size: 1.1rem;
  cursor: pointer;
}
.search-submit:hover { background: var(--navy-soft); }

.lang-toggle {
  display: inline-flex;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  min-height: 36px;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}

.header-cart {
  display: none;
  position: relative;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.35rem 0.65rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
}
.header-cart:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.cart-icon { font-size: 1rem; line-height: 1; }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}
.cart-count[hidden] { display: none !important; }

.nav-toggle {
  border: 1px solid #d1d5db;
  background: var(--white);
  border-radius: 4px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  min-height: 44px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-toggle:hover { border-color: var(--navy); }

/* Category nav */
.site-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0.5rem 0 0.85rem;
  display: grid;
  gap: 0.15rem;
}
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.site-nav a:hover {
  background: var(--off);
  color: var(--accent-red);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { background: var(--navy); color: #fff; }
.btn-solid {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.2);
}
.btn-solid:hover { background: var(--navy-soft); color: #fff; }
.btn-light {
  background: rgba(255, 255, 255, 0.95);
  border-color: #fff;
  color: var(--navy);
}
.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.btn-wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.btn-wa:hover { filter: brightness(1.05); color: #fff; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-lg {
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-press:active { transform: scale(0.97); }

/* —— Hero carousel (edge-to-edge retail) —— */
.hero-slider-wrap {
  margin: 0;
  padding: 0;
  background: var(--navy);
}
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slider-viewport {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
  background: var(--navy);
}
.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-slider-scrim {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.35) 45%,
    rgba(10, 22, 40, 0.15) 100%
  );
  z-index: 1;
}
.hero-slider-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem 2.75rem;
  color: #fff;
  width: min(100% - 0rem, var(--max));
  margin-inline: auto;
  pointer-events: none;
}
.hero-slider-caption .hero-ctas {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.hero-slider-caption h1 {
  font-size: clamp(1.55rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero-slider-caption .hero-eyebrow {
  background: rgba(201, 162, 39, 0.95);
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
}
.hero-slider-btn:hover { background: #fff; }
.hero-slider-btn.prev { left: 0.65rem; }
.hero-slider-btn.next { right: 0.65rem; }
.hero-slider-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.hero-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.hero-slider-dots button[aria-current="true"] {
  background: var(--gold-bright);
  transform: scale(1.25);
}

/* Sub-hero intro */
.hero-home {
  padding: 1.25rem 0 0.25rem;
  background: var(--white);
}
.hero-home .hero-body {
  color: var(--muted);
  font-size: 1rem;
  max-width: 48ch;
  margin-bottom: 0.85rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hero-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  background: var(--off);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-pills a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Sections */
.section { padding: 2rem 0 2.5rem; }
.section-tight { padding: 1.5rem 0; }
.section h2 {
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.section .lead { color: var(--muted); margin-bottom: 1rem; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.section-head h2 {
  margin-bottom: 0.15rem;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-head .lead { margin-bottom: 0; }
.section-link {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--gold);
}
.section-link:hover { color: var(--accent-red); }
.hide-mobile { display: none; }

.section-featured {
  background: var(--off);
  padding: 2.25rem 0 2.75rem;
}

/* Category tiles — large image row */
.cat-tiles {
  display: grid;
  gap: 0.75rem;
}
.cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(transparent 30%, rgba(10, 22, 40, 0.85));
}
.cat-tile-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cat-tile-sub {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

/* How-to */
.how-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 0.65rem;
}
.how-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.how-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}
.how-steps li:nth-child(2) .how-num { background: var(--gold); color: var(--navy); }
.how-steps li:nth-child(3) .how-num { background: #25D366; }

/* Trust */
.trust {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}
.trust-home { margin: 0; }
.trust-item { display: flex; gap: 0.65rem; align-items: flex-start; }
.trust-item .dot {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--off);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.trust-item strong { display: block; font-size: 0.92rem; }
.trust-item span { font-size: 0.8rem; color: var(--muted); }
.trust-item a { font-weight: 600; }

/* Sport band */
.band {
  padding: 2.5rem 0;
  text-align: center;
}
.band .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.band h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.band p { color: var(--muted); max-width: 28rem; margin: 0 auto 1.1rem; }
.band-sport {
  position: relative;
  padding: 2.75rem 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  overflow: hidden;
}
.band-sport::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 80%, rgba(201, 162, 39, 0.28), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(185, 28, 28, 0.18), transparent 35%);
  pointer-events: none;
}
.band-sport .container { position: relative; z-index: 1; }
.band-sport .eyebrow { color: var(--gold-bright); }
.band-sport h2 { color: #fff; }
.band-sport p { color: rgba(255, 255, 255, 0.82); }
.band-sport .btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.band-sport .btn-solid:hover {
  background: var(--gold-bright);
  color: var(--navy);
}

/* Product cards — clean white on gray */
.product-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.1);
  color: inherit;
}
.product-card:active { transform: scale(0.985); }
.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background: #eceff3;
  overflow: hidden;
}
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card-media .badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 1;
}
.product-card-body { padding: 0.85rem 0.9rem 1.05rem; }
.product-card-type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--off);
  border: 1px solid var(--line);
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}
.product-card h3 {
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0.45rem 0 0.4rem;
  line-height: 1.3;
  font-weight: 700;
}
.product-card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-red);
}
.badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}
.product-grid-home { gap: 1rem; }
.product-grid-home .product-card-media { aspect-ratio: 3 / 4; }
.product-grid-home .product-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Contact */
.contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.25rem;
  margin-top: 0.5rem;
}
.contact-home {
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.05);
}
.contact-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.contact-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.contact-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.65rem 1.1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 0;
  color: #fff !important;
}
.social-btn:hover { filter: brightness(1.05); color: #fff !important; }
.social-btn.wa { background: #25D366; }
.social-btn.fb { background: #1877F2; }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Footer columns */
.site-footer {
  background: var(--navy);
  color: #9ca3af;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.footer-col h3 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.footer-col a,
.site-footer a {
  color: #d1d5db;
}
.footer-col a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.8rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.75rem 0;
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}
.mobile-bar a {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-bar .primary { background: var(--navy); color: #fff; }
.mobile-bar .primary:hover { color: #fff; }
.mobile-bar .secondary {
  border: 1px solid #d1d5db;
  color: var(--navy);
  position: relative;
}
.mobile-bar .social-mini {
  flex: 0 0 auto;
  width: 48px;
  min-height: 48px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}
.mobile-bar .social-mini.wa { background: #25D366; }
.mobile-bar .social-mini svg { width: 22px; height: 22px; fill: currentColor; }
.mobile-bar .cart-count {
  position: absolute;
  top: -4px;
  right: 8px;
}

/* Shop filters */
.filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: grid;
  gap: 0.85rem;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.filter-row .label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 100%;
}
.chip {
  border: 1px solid #d1d5db;
  background: var(--white);
  border-radius: 4px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
  color: var(--navy);
}
.chip.is-active,
.chip[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.shop-search {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--off);
}
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.shop-toolbar select {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 0.45rem 0.75rem;
  font: inherit;
  min-height: 40px;
  background: var(--white);
}
.shop-count { font-size: 0.88rem; color: var(--muted); }
.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--off);
  border-radius: 4px;
  border: 1px dashed #cfd5e0;
  color: var(--muted);
}
.empty-state[hidden] { display: none !important; }

/* Product detail */
.product-layout { display: grid; gap: 1.25rem; }
.gallery {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery-main {
  aspect-ratio: 1;
  background: #eceff3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem;
  overflow-x: auto;
}
.thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  border: 2px solid transparent;
  overflow: hidden;
  padding: 0;
  background: #eee;
  cursor: pointer;
}
.thumb.is-active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 {
  color: var(--navy);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  margin-bottom: 0.35rem;
  font-weight: 800;
}
.product-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.product-desc { color: var(--muted); margin: 0.5rem 0 0.85rem; max-width: 36rem; }
.price-ask {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-red);
  margin: 0.5rem 0 1rem;
}
.size-block { margin: 1rem 0; }
.size-block h3 {
  font-size: 0.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.size-options { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.size-btn {
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  border: 1.5px solid #d1d5db;
  background: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}
.size-btn.is-active,
.size-btn[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.size-error { color: var(--danger); font-size: 0.85rem; margin-top: 0.4rem; }
.size-error[hidden] { display: none !important; }
.note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
.includes-box,
.policy-box {
  background: var(--off);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  margin: 0.85rem 0;
  font-size: 0.9rem;
  border: 1px solid var(--line);
}
.includes-box strong,
.policy-box strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(10, 22, 40, 0.08);
}
.sticky-atc .btn { flex: 1; }
body.has-sticky-atc {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
body.has-sticky-atc .mobile-bar { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(100%, 900px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: var(--white);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

/* Live storefront administration */
.admin-mode-bar {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  background: #f6c945;
  color: #07172f;
  border-bottom: 3px solid #07172f;
  box-shadow: 0 4px 18px rgba(7, 23, 47, .18);
}
.admin-mode-bar[hidden], .admin-drawer[hidden] { display: none !important; }
.admin-mode-inner {
  width: min(100% - 1.5rem, var(--max));
  min-height: 54px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  padding: .45rem 0;
  font-size: .8rem;
}
.admin-live-dot { width: 9px; height: 9px; border-radius: 50%; background: #138a58; box-shadow: 0 0 0 4px rgba(19,138,88,.16); }
.admin-session-label { opacity: .72; border-left: 1px solid rgba(7,23,47,.25); padding-left: .65rem; }
.admin-save-state { margin-left: auto; font-weight: 700; }
.admin-save-state.is-saving { opacity: .62; }
.admin-mode-action {
  border: 1px solid rgba(7,23,47,.35);
  background: rgba(255,255,255,.38);
  color: #07172f;
  border-radius: 3px;
  padding: .45rem .7rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.admin-mode-action:hover { background: #07172f; color: #f6c945; }
.admin-mode-exit { background: #07172f; color: #f6c945; }
body.admin-active { padding-top: 54px; }
body.admin-active .product-card { outline: 2px solid transparent; outline-offset: -2px; }
body.admin-active .product-card:hover { outline-color: #f6c945; cursor: pointer; }
.admin-drawer { position: fixed; inset: 0; z-index: 110; }
.admin-drawer-backdrop { position: absolute; inset: 0; background: rgba(7,23,47,.48); opacity: 0; transition: opacity .22s ease; }
.admin-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(100%, 500px);
  overflow-y: auto; background: #fffdf8; border-left: 5px solid #f6c945;
  padding: 1.25rem 1.25rem 1.5rem; transform: translateX(100%);
  transition: transform .24s cubic-bezier(.22,1,.36,1); box-shadow: -14px 0 35px rgba(7,23,47,.17);
}
.admin-drawer.is-open .admin-drawer-backdrop { opacity: 1; }
.admin-drawer.is-open .admin-drawer-panel { transform: translateX(0); }
.admin-drawer-head { display:flex; justify-content:space-between; gap: 1rem; align-items:flex-start; border-bottom:1px solid #e7e2d5; padding-bottom:1rem; }
.admin-kicker { color:#a97800; font-size:.68rem; font-weight:800; letter-spacing:.14em; }
.admin-drawer h2 { color:#07172f; font-size:1.45rem; margin-top:.2rem; }
.admin-close { border:0; background:transparent; font-size:1.8rem; color:#07172f; cursor:pointer; line-height:1; }
.admin-drawer-help { color:#596273; font-size:.88rem; margin:1rem 0; }
.admin-field { display:grid; gap:.32rem; margin-bottom:.8rem; color:#07172f; font-size:.75rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }
.admin-field input, .admin-field textarea, .admin-field select { width:100%; border:1px solid #d9d5ca; border-radius:4px; background:#fff; color:#17233b; padding:.7rem .75rem; font:inherit; font-size:.92rem; font-weight:500; letter-spacing:0; text-transform:none; }
.admin-field textarea { min-height:78px; resize:vertical; }
.admin-field input:focus, .admin-field textarea:focus, .admin-field select:focus { outline:2px solid #f6c945; border-color:#07172f; }
.admin-image-preview { display:flex; align-items:center; gap:.75rem; padding:.65rem; margin-bottom:1rem; background:#f0eee7; color:#596273; font-size:.75rem; }
.admin-image-preview img { width:60px; height:60px; object-fit:cover; }
.admin-product-choice { width:100%; display:flex; align-items:center; gap:.7rem; text-align:left; border:1px solid #e7e2d5; border-radius:4px; background:#fff; padding:.55rem; margin-bottom:.5rem; color:#07172f; cursor:pointer; }
.admin-product-choice:hover { border-color:#f6c945; background:#fffaf0; }
.admin-product-choice img { width:48px; height:48px; object-fit:cover; }
.admin-product-choice span { display:grid; gap:.1rem; flex:1; }
.admin-product-choice small { color:#697386; font-size:.75rem; }
.admin-product-choice b { color:#a97800; font-size:.64rem; letter-spacing:.08em; }
.admin-drawer-foot { display:flex; align-items:center; justify-content:space-between; gap:.8rem; margin-top:1rem; padding-top:1rem; border-top:1px solid #e7e2d5; }
.admin-drawer-foot #admin-form-status { color:#138a58; font-size:.78rem; font-weight:700; }
@media (max-width: 600px) {
  .admin-session-label { display:none; }
  .admin-save-state { margin-left: auto; }
  .admin-mode-inner { gap:.45rem; }
  .admin-mode-action { padding:.4rem .55rem; font-size:.72rem; }
  body.admin-active { padding-top: 92px; }
}

/* Cart */
.cart-lines { display: grid; gap: 0.85rem; }
.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem;
  align-items: start;
}
.cart-line img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 4px;
  background: #eee;
}
.cart-line h3 { font-size: 0.95rem; color: var(--navy); }
.cart-line .meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.25rem 0 0.5rem;
}
.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
}
.qty-control button {
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--off);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}
.qty-control span {
  min-width: 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.btn-text {
  border: 0;
  background: transparent;
  color: var(--danger);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
  padding: 0.25rem 0.5rem;
}
.cart-summary {
  margin-top: 1.25rem;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.15rem;
}
.cart-summary .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.cart-summary .note { margin-bottom: 1rem; }
.cart-summary .btn { width: 100%; margin-top: 0.5rem; }

/* Size guide */
.prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.25rem 1.35rem;
  max-width: 40rem;
}
.prose h2 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 1.15rem 0 0.4rem;
}
.prose p { color: var(--muted); margin-bottom: 0.65rem; }
.prose .callout {
  background: var(--off);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text);
  margin: 1rem 0;
  border-left: 3px solid var(--gold);
}
.page-title {
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-lead { color: var(--muted); margin-bottom: 1.25rem; }
.desk-atc { display: none; margin-top: 1rem; }
.desk-atc .btn { width: 100%; max-width: 320px; }

/* Legacy cat-card support (unused on home but kept) */
.cat-cards { display: grid; gap: 0.85rem; }
.cat-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 112px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
}
.cat-card-img { overflow: hidden; background: #eceff3; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.9rem 1rem;
}
.cat-card-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.cat-card-sub { font-size: 0.82rem; color: var(--muted); }
.cat-card-go { display: none; }

/* —— Responsive —— */
@media (min-width: 640px) {
  .cat-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-tile { aspect-ratio: 3 / 4; }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
  .hero-slider-viewport {
    aspect-ratio: 16 / 9;
    max-height: 520px;
  }
}

@media (min-width: 800px) {
  body { padding-bottom: 0; }
  body.has-sticky-atc { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .sticky-atc { display: none; }
  .nav-toggle { display: none; }
  .search-form { display: flex; }
  .header-cart { display: inline-flex; }
  .hide-mobile { display: inline; }

  .util-bar { font-size: 0.78rem; }

  .site-nav {
    display: block !important;
    border-top: 1px solid var(--line);
    background: var(--navy);
  }
  .site-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    justify-content: center;
  }
  .site-nav a {
    min-height: 44px;
    padding: 0.65rem 1.15rem;
    font-size: 0.8rem;
    border-radius: 0;
    color: #e5e7eb;
  }
  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-bright);
  }

  .hero-slider-viewport {
    aspect-ratio: 21 / 8;
    max-height: 560px;
  }
  .hero-slider-caption {
    padding: 2.5rem 0 3.25rem;
    left: max(1rem, calc((100% - var(--max)) / 2));
    right: auto;
    width: min(100% - 2rem, 560px);
    margin: 0;
  }
  .hero-slider-caption h1 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    max-width: 14ch;
  }
  .hero-slider-btn { width: 52px; height: 52px; }
  .hero-slider-btn.prev { left: 1.25rem; }
  .hero-slider-btn.next { right: 1.25rem; }

  .hero-home { padding: 1.5rem 0 0.5rem; }

  .trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.15rem 1.25rem;
  }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid-home {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
  .product-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
  }
  .filters {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .filter-row .label { width: auto; margin-right: 0.35rem; }
  .desk-atc { display: block !important; }

  .how-steps {
    padding: 1.15rem 1.5rem;
    gap: 1rem;
  }
  .how-steps li {
    font-size: 0.92rem;
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
  }

  .cat-tile { aspect-ratio: 4 / 5; max-height: 380px; }
}

@media (max-width: 420px) {
  .logo-text { display: none; }
  .util-left .util-link:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-press:active,
  .cat-tile:active,
  .product-card:active,
  .hero-pills a:active {
    transform: none;
  }
  .cat-tile:hover img { transform: none; }
  .hero-slider-track { transition: none; }
}
