:root {
  color-scheme: dark;
  --ink: #f8f3e9;
  --muted: #b9c0c6;
  --soft: #7f8b91;
  --bg: #070809;
  --panel: rgba(17, 20, 22, 0.82);
  --line: rgba(255, 255, 255, 0.13);
  --gold: #e9c46a;
  --rose: #e36a7a;
  --mint: #74d8bd;
  --blue: #68a8ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 16% 5%, rgba(116, 216, 189, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(233, 196, 106, 0.15), transparent 24rem),
    linear-gradient(180deg, #08090a 0%, #0d1011 44%, #090909 100%);
  color: var(--ink);
}

body.locked {
  overflow: hidden;
}

body.admin-page {
  min-height: 100svh;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 32% 38%, rgba(116, 216, 189, 0.18), transparent 22rem),
    radial-gradient(circle at 76% 24%, rgba(233, 196, 106, 0.17), transparent 24rem),
    linear-gradient(135deg, rgba(9, 12, 12, 0.84), rgba(7, 8, 9, 0.95));
  background-size: auto;
  background-position: center;
  backdrop-filter: blur(20px);
}

.age-gate.hidden {
  display: none;
}

.admin-gate {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 70% 14%, rgba(116, 216, 189, 0.18), transparent 24rem),
    radial-gradient(circle at 20% 86%, rgba(233, 196, 106, 0.14), transparent 24rem),
    rgba(5, 6, 6, 0.9);
  backdrop-filter: blur(18px);
}

.admin-gate.hidden {
  display: none;
}

.age-card,
.admin-gate-card {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 15, 16, 0.84);
  box-shadow: var(--shadow);
}

.age-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.76fr);
  gap: 26px;
  align-items: stretch;
  width: min(820px, 100%);
  overflow: hidden;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(9, 11, 11, 0.91);
}

.age-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(116, 216, 189, 0.1), transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.06), transparent 13rem);
  pointer-events: none;
}

.age-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(18px, 3vw, 28px);
}

.age-visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.16), transparent 8rem),
    radial-gradient(circle at 54% 36%, rgba(116, 216, 189, 0.1), transparent 10rem);
}

.age-visual img {
  width: min(78%, 255px);
  max-height: 330px;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 32px rgba(116, 216, 189, 0.08));
  transform: rotate(-6deg) translateY(-10px);
}

.age-visual div {
  position: absolute;
  right: 2px;
  bottom: 18px;
  left: 10px;
  padding: 14px;
  border: 1px solid rgba(116, 216, 189, 0.2);
  border-radius: 8px;
  background: rgba(6, 8, 8, 0.76);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.age-visual span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.age-visual strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  line-height: 1.1;
}

.admin-gate-card {
  display: grid;
  gap: 16px;
}

.mark,
.brand {
  font-weight: 900;
  letter-spacing: 0;
}

.mark {
  color: var(--gold);
  font-size: 0.85rem;
}

.age-card h1 {
  margin: 12px 0;
  max-width: 440px;
  font-size: clamp(2.75rem, 5.6vw, 5.25rem);
  line-height: 0.9;
}

.age-card h1 span {
  white-space: nowrap;
}

.admin-gate-card h1 {
  margin: 6px 0 0;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.92;
}

.age-card p,
.admin-gate-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-gate-card p {
  margin-bottom: 0;
}

.admin-gate-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-gate-card input {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  outline: 0;
  padding: 0 14px;
}

.age-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zip-checker {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.55);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.zip-checker label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.zip-checker div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.zip-checker input,
.zip-checker button {
  min-height: 46px;
  border-radius: 8px;
}

.zip-checker input {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  color: var(--ink);
  outline: none;
  padding: 0 12px;
}

.zip-checker input:focus {
  border-color: rgba(116, 216, 189, 0.72);
}

.zip-checker button {
  border: 0;
  background: var(--ink);
  color: #0b0c0b;
  cursor: pointer;
  font-weight: 900;
  padding: 0 16px;
}

.zip-checker p {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.zip-checker p.available {
  color: var(--mint);
}

.zip-checker p.review {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #ffffff 48%, var(--mint));
  color: #11130f;
}

.button-muted,
.button-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  min-height: 60px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.62);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-order {
  justify-self: end;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #090a08;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 80px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(transparent, #0d1011);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.city-grid {
  position: absolute;
  right: -8vw;
  bottom: 3vh;
  width: min(760px, 72vw);
  aspect-ratio: 1 / 0.8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
  transform: perspective(850px) rotateX(58deg) rotateZ(-18deg);
  transform-origin: center;
  background: #0a1113;
  box-shadow:
    inset 0 0 86px rgba(116, 216, 189, 0.18),
    0 30px 90px rgba(0, 0, 0, 0.42);
}

.city-grid::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 42% 50%, rgba(233, 196, 106, 0.18), transparent 0 18%, transparent 42%),
    radial-gradient(circle at 64% 42%, rgba(116, 216, 189, 0.2), transparent 0 22%, transparent 50%),
    linear-gradient(135deg, rgba(6, 9, 9, 0.08), rgba(6, 9, 9, 0.56));
  pointer-events: none;
}

.city-grid::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  color: rgba(248, 243, 233, 0.48);
  content: "Map data © OpenStreetMap";
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.city-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1) hue-rotate(180deg) saturate(0.5) brightness(0.66) contrast(1.08);
}

.la-map-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: 8px;
  background: rgba(7, 8, 9, 0.62);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-product-cluster {
  position: absolute;
  right: max(-18px, calc((100vw - 1320px) / 2));
  bottom: 10vh;
  width: min(480px, 36vw);
  height: min(480px, 42vw);
  pointer-events: none;
}

.hero-product-cluster::before {
  position: absolute;
  inset: 12% 4% 2%;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 54%, rgba(233, 196, 106, 0.26), transparent 0 23%, transparent 44%),
    radial-gradient(circle at 62% 44%, rgba(116, 216, 189, 0.22), transparent 0 34%, transparent 58%);
  filter: blur(18px);
}

.hero-product {
  position: absolute;
  display: block;
  object-fit: contain;
  filter:
    saturate(1.1)
    contrast(1.04)
    drop-shadow(0 36px 54px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 22px rgba(116, 216, 189, 0.055));
}

.hero-product-main {
  right: 18%;
  bottom: 12%;
  z-index: 3;
  width: min(282px, 22vw);
  transform: rotate(-7deg);
  filter:
    saturate(1.12)
    contrast(1.1)
    brightness(1.04)
    drop-shadow(0 36px 54px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 22px rgba(116, 216, 189, 0.07));
}

.hero-product-side {
  right: 0;
  bottom: 1%;
  z-index: 2;
  width: min(220px, 18vw);
  opacity: 0.96;
  transform: rotate(10deg);
}

.hero-product-accent {
  right: 48%;
  bottom: 0;
  z-index: 1;
  width: min(190px, 16vw);
  opacity: 0.86;
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 660px;
  padding-top: 20px;
}

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

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(6.2rem, 22vw, 17rem);
  line-height: 0.72;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
}

.hero-logo-title {
  width: min(690px, 56vw);
}

.hero-logo-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  filter:
    saturate(1.08)
    contrast(1.06)
    drop-shadow(0 28px 58px rgba(0, 0, 0, 0.58));
}

.hero-logo-frame img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo-smoke {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-smoke {
    display: none;
  }
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 26px;
  color: #d7dedc;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.dispatch-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(640px, calc(100% - 48px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 16, 16, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dispatch-panel div {
  min-width: 0;
  padding: 18px;
}

.dispatch-panel div + div {
  border-left: 1px solid var(--line);
}

.panel-label {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dispatch-panel strong {
  font-size: clamp(1rem, 2vw, 1.42rem);
}

.section {
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
}

.section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.service-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(116, 216, 189, 0.12), transparent 24rem),
    #0d1011;
}

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

.service-grid article,
.product-card,
.cart,
.signal-board div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.service-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 0;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(0, 0, 0, 0.2);
}

.service-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(233, 196, 106, 0.18);
  border-radius: 50%;
  content: "";
  background: rgba(233, 196, 106, 0.055);
  opacity: 0.72;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #090b0a;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(116, 216, 189, 0.14);
}

.service-grid h3,
.product-info h3,
.cart h2 {
  margin: 0;
}

.service-grid p,
.concierge p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.shop-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
    #090909;
}

.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  border-color: rgba(233, 196, 106, 0.72);
  background: rgba(233, 196, 106, 0.14);
  color: var(--ink);
}

.commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

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

.product-card {
  display: grid;
  min-height: 490px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(233, 196, 106, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.product-card.sold-out {
  opacity: 0.62;
}

.product-card.sold-out .product-photo {
  filter: grayscale(0.8) drop-shadow(0 26px 34px rgba(0, 0, 0, 0.36));
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 242px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.24), transparent 8rem),
    linear-gradient(transparent, rgba(0, 0, 0, 0.22)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    var(--accent);
}

.product-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  content: "";
}

.product-render {
  position: relative;
  width: 68px;
  height: 184px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent 18% 75%, rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, #f6f4ea, var(--device));
  box-shadow:
    inset 8px 0 16px rgba(255, 255, 255, 0.18),
    inset -14px 0 24px rgba(0, 0, 0, 0.22),
    0 28px 58px rgba(0, 0, 0, 0.38);
  transform: rotate(11deg);
}

.product-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(86%, 245px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.36));
  transform: scale(1.04);
  transition: transform 180ms ease;
}

.product-card:hover .product-photo {
  transform: translateY(-5px) scale(1.14);
}

.product-card.in-cart {
  border-color: rgba(116, 216, 189, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(116, 216, 189, 0.12),
    0 22px 70px rgba(0, 0, 0, 0.28);
}

.product-card.in-cart .product-visual::before {
  border-color: rgba(116, 216, 189, 0.38);
}

.product-render::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 24px;
  height: 30px;
  border-radius: 12px;
  content: "";
  background: rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.product-render::after {
  position: absolute;
  right: 15px;
  bottom: 22px;
  left: 15px;
  height: 6px;
  border-radius: 99px;
  content: "";
  background: rgba(0, 0, 0, 0.34);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 9, 9, 0.42);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.product-info {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

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

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.inventory-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid rgba(116, 216, 189, 0.24);
  border-radius: 999px;
  background: rgba(116, 216, 189, 0.09);
  color: var(--mint) !important;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-card.sold-out .inventory-label {
  border-color: rgba(227, 106, 122, 0.3);
  background: rgba(227, 106, 122, 0.11);
  color: var(--rose) !important;
}

.spec-grid {
  display: grid;
  gap: 7px;
}

.spec-grid span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

.spec-grid em {
  display: block;
  flex: 0 0 auto;
  color: var(--soft);
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spec-grid strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.08;
  overflow-wrap: normal;
  text-align: right;
  word-break: normal;
}

.flavor-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.flavor-notes span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price {
  font-size: 1.45rem;
  font-weight: 900;
}

.add-button,
.detail-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(233, 196, 106, 0.5);
  border-radius: 8px;
  background: rgba(233, 196, 106, 0.13);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.detail-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.product-card.in-cart .add-button {
  border-color: rgba(116, 216, 189, 0.56);
  background: rgba(116, 216, 189, 0.16);
  color: var(--mint);
}

.add-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.cart {
  position: sticky;
  top: 92px;
  padding: 18px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.3);
}

.cart-head,
.cart-totals div,
.cart-row,
.product-bottom {
  display: flex;
}

.cart-head {
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.cart-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-head span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-close {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 80px;
  margin: 18px 0;
}

.empty-cart {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.cart-row {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 0.82rem;
}

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

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.cart-totals {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-totals div {
  align-items: center;
  justify-content: space-between;
}

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

.cart-totals .total {
  color: var(--ink);
  font-size: 1.18rem;
}

.minimum-progress {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.minimum-progress div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.minimum-progress strong {
  color: var(--gold);
}

.progress-track {
  display: block;
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  transition: width 220ms ease;
}

.minimum-status {
  display: grid;
  margin-top: 14px;
}

.minimum-status p {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

.minimum-status.warning p {
  border-color: rgba(233, 196, 106, 0.4);
  background: rgba(233, 196, 106, 0.09);
  color: var(--gold);
}

.cart-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.cart-trust span {
  padding: 7px 8px;
  border: 1px solid rgba(116, 216, 189, 0.2);
  border-radius: 999px;
  background: rgba(116, 216, 189, 0.065);
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout::before {
  content: "Delivery details";
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-ready {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(116, 216, 189, 0.26);
  border-radius: 8px;
  background: rgba(116, 216, 189, 0.08);
}

.payment-ready span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-ready strong {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.35;
}

.checkout label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout input,
.checkout textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  outline: none;
}

.checkout input {
  min-height: 45px;
  padding: 0 12px;
}

.checkout textarea {
  resize: vertical;
  padding: 12px;
}

.checkout input:focus,
.checkout textarea:focus {
  border-color: rgba(233, 196, 106, 0.75);
}

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.checkout-button {
  width: 100%;
}

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 27;
  display: none;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.checkout-review {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 76% 16%, rgba(116, 216, 189, 0.14), transparent 24rem),
    rgba(0, 0, 0, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(14px);
}

.checkout-review.show {
  opacity: 1;
  pointer-events: auto;
}

.checkout-review-card {
  position: relative;
  width: min(880px, 100%);
  max-height: min(820px, calc(100svh - 48px));
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(233, 196, 106, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
    rgba(8, 10, 10, 0.97);
  box-shadow: var(--shadow);
}

.review-heading {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 18px;
}

.review-heading span,
.review-panel > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.review-heading p,
.review-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.review-panel {
  display: grid;
  gap: 10px;
  min-height: 140px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.review-panel strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

#reviewItems {
  display: grid;
  gap: 8px;
}

#reviewItems div,
.review-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#reviewItems span,
.review-totals p {
  margin: 0;
  color: var(--soft);
}

.review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.fine-print {
  margin: 0;
  color: var(--soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.concierge {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(227, 106, 122, 0.14), transparent 28rem),
    radial-gradient(circle at 72% 78%, rgba(116, 216, 189, 0.11), transparent 24rem),
    #0d1011;
}

.concierge::after {
  position: absolute;
  top: 18%;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(520px, 42vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(116, 216, 189, 0.42), transparent);
  opacity: 0.62;
  transform: rotate(-18deg);
}

.brand-system {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
  background:
    radial-gradient(circle at 10% 18%, rgba(233, 196, 106, 0.1), transparent 22rem),
    #090909;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.brand-grid article {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(0, 0, 0, 0.2);
}

.brand-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--mint), var(--rose));
  opacity: 0.72;
}

.policy-center {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
  background:
    radial-gradient(circle at 18% 12%, rgba(116, 216, 189, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 74%, rgba(233, 196, 106, 0.08), transparent 26rem),
    #080909;
}

.policy-heading {
  position: sticky;
  top: 118px;
}

.policy-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.policy-grid article {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.policy-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(116, 216, 189, 0.14);
  border-radius: 50%;
  content: "";
  background: rgba(116, 216, 189, 0.04);
}

.policy-grid span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-grid h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.08;
}

.policy-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.brand-grid h3 {
  margin: 48px 0 10px;
}

.brand-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-dot {
  position: absolute;
  top: 24px;
  left: 24px;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.18);
}

.brand-dot.gold {
  background: var(--gold);
}

.brand-dot.mint {
  background: var(--mint);
}

.brand-dot.rose {
  background: var(--rose);
}

.owner-dashboard {
  background:
    radial-gradient(circle at 82% 8%, rgba(116, 216, 189, 0.13), transparent 22rem),
    #0a0c0d;
}

.admin-dashboard {
  min-height: 100svh;
  padding-top: 138px;
}

.admin-dashboard h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
}

.owner-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.owner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ops-alerts {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  margin-bottom: 14px;
}

.ops-alerts article {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(116, 216, 189, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(116, 216, 189, 0.18), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.22);
}

.ops-alerts article::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--mint);
  box-shadow: 0 0 26px rgba(116, 216, 189, 0.58);
}

.ops-alerts span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-alerts strong {
  display: block;
  max-width: 78%;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.ops-alerts p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.owner-stats article,
.orders-panel,
.order-record {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.owner-stats article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
}

.owner-stats span,
.order-record span,
.order-status label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-stats strong {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.9;
}

.orders-panel {
  min-height: 220px;
  padding: 14px;
}

.inventory-admin,
.settings-admin,
.reports-admin {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.report-actions .button {
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.82rem;
}

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

.report-grid article,
.movement-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.035);
}

.report-grid article {
  min-height: 132px;
  padding: 14px;
}

.report-grid span,
.movement-panel span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.report-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.movement-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 14px;
  margin-top: 10px;
  padding: 14px;
}

.movement-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.25;
}

.movement-list {
  display: grid;
  gap: 8px;
}

.movement-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.movement-list strong {
  margin: 0;
  font-size: 0.92rem;
}

.movement-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.inventory-heading {
  align-items: center;
  margin-bottom: 14px;
}

.inventory-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

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

.settings-grid label {
  display: grid;
  gap: 6px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.settings-grid input,
.settings-grid select,
.settings-grid textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 10, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0 10px;
}

.settings-grid textarea {
  min-height: 92px;
  padding: 10px;
  line-height: 1.45;
  resize: vertical;
  text-transform: none;
}

.settings-wide {
  grid-column: span 2;
}

.settings-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.settings-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.inventory-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.inventory-summary span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.inventory-summary strong {
  color: var(--ink);
}

.inventory-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.inventory-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 150px auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.inventory-row.low_stock {
  border-color: rgba(233, 196, 106, 0.32);
}

.inventory-row.sold_out {
  border-color: rgba(227, 106, 122, 0.32);
  opacity: 0.74;
}

.inventory-row span,
.inventory-row label {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inventory-row h3,
.inventory-row p {
  margin: 0;
}

.inventory-row h3 {
  color: var(--ink);
  font-size: 1rem;
}

.inventory-row p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.inventory-row label {
  display: grid;
  gap: 5px;
}

.inventory-row input,
.inventory-row select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 10, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0 10px;
}

.inventory-save {
  min-height: 40px;
  padding: 0 12px;
}

.orders-empty {
  display: grid;
  min-height: 170px;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

.orders-empty.hidden {
  display: none;
}

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

.order-record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.order-record::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--mint);
}

.order-record.preparing::before {
  background: var(--gold);
}

.order-record.out-for-delivery::before {
  background: var(--mint);
}

.order-record.delivered::before {
  background: rgba(255, 255, 255, 0.32);
}

.order-record.canceled::before,
.order-record.needs-review::before {
  background: var(--rose);
}

.order-record h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.order-record p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.owner-note-preview {
  color: var(--mint) !important;
  font-weight: 800;
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.order-meta strong {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 0.78rem;
}

.order-status {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.order-status strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.order-status p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

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

.order-actions .button {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #050606;
}

.site-footer p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

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

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.footer-policy-grid article {
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-policy-grid span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-policy-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  line-height: 1.15;
}

.footer-policy-grid p {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.legal-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.concierge p {
  max-width: 560px;
  font-size: 1.06rem;
}

.signal-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-board div {
  position: relative;
  display: grid;
  min-height: 136px;
  overflow: hidden;
  padding: 20px;
  align-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(0, 0, 0, 0.22);
}

.signal-board div::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--mint);
  box-shadow: 0 0 28px rgba(116, 216, 189, 0.58);
}

.signal-board div::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(233, 196, 106, 0.16);
  border-radius: 50%;
  content: "";
  background: rgba(233, 196, 106, 0.045);
}

.signal-board span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-board strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 1.16;
}

.signal-board small {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(116, 216, 189, 0.42);
  border-radius: 8px;
  background: rgba(10, 13, 13, 0.9);
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 10%, rgba(114, 222, 199, 0.16), transparent 32%),
    rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.order-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.order-modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: min(820px, calc(100svh - 48px));
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(114, 222, 199, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 10, 0.96);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.58);
}

.order-modal-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 18px;
}

.order-modal-heading span,
.order-detail-grid span,
.order-items-detail > span,
.text-customer label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-modal-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9;
}

.order-modal-heading p,
.order-detail-grid p,
.order-items-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.order-detail-grid article,
.order-items-detail,
.owner-note-box,
.text-customer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.order-detail-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 14px;
}

.order-detail-grid strong {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.15;
}

.order-items-detail {
  display: grid;
  gap: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.order-items-detail div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.order-items-detail strong {
  color: var(--ink);
}

.status-button-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.status-button-grid .button {
  min-height: 48px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.eta-control {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(233, 196, 106, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 20%, rgba(233, 196, 106, 0.13), transparent 8rem),
    rgba(255, 255, 255, 0.04);
}

.eta-control label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eta-control select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0 12px;
}

.eta-control p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.owner-note-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  margin-bottom: 14px;
  border-color: rgba(116, 216, 189, 0.22);
  background:
    radial-gradient(circle at 86% 18%, rgba(116, 216, 189, 0.11), transparent 9rem),
    rgba(255, 255, 255, 0.04);
}

.owner-note-box label {
  display: grid;
  gap: 8px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-note-box textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  line-height: 1.45;
  padding: 12px;
}

.text-customer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
}

.text-customer label {
  display: grid;
  gap: 8px;
}

.text-customer textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  line-height: 1.45;
  padding: 12px;
}

.text-customer .button {
  min-height: 48px;
}

.product-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(233, 196, 106, 0.14), transparent 23rem),
    rgba(0, 0, 0, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(14px);
}

.product-drawer.show {
  opacity: 1;
  pointer-events: auto;
}

.product-drawer-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(820px, calc(100svh - 48px));
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 10, 0.97);
  box-shadow: var(--shadow);
}

.drawer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: stretch;
}

.drawer-visual {
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
    var(--accent);
}

.drawer-visual img {
  width: min(72%, 330px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.42));
  transform: rotate(-3deg);
}

.drawer-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.drawer-copy > span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.drawer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.drawer-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.drawer-price-row strong {
  color: var(--ink);
  font-size: 2rem;
}

.drawer-price-row em {
  color: var(--mint);
  font-style: normal;
  font-weight: 900;
}

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

.drawer-specs div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.drawer-specs span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-specs strong {
  color: var(--ink);
  line-height: 1.12;
}

.drawer-add {
  width: 100%;
}

.mobile-cart-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 28;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border: 1px solid rgba(233, 196, 106, 0.48);
  border-radius: 8px;
  background: linear-gradient(135deg, #151714, #090a09);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.44);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 0 16px;
}

.mobile-cart-bar strong {
  color: var(--gold);
}

.confirmation {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 74% 18%, rgba(116, 216, 189, 0.16), transparent 22rem),
    radial-gradient(circle at 22% 88%, rgba(233, 196, 106, 0.13), transparent 24rem),
    rgba(0, 0, 0, 0.76);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  backdrop-filter: blur(14px);
}

.confirmation.show {
  opacity: 1;
  visibility: visible;
}

.dispatch-card {
  position: relative;
  width: min(1060px, 100%);
  max-height: min(860px, calc(100svh - 48px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(116, 216, 189, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    rgba(8, 10, 10, 0.96);
  box-shadow: var(--shadow);
}

.dispatch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.dispatch-hero h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.96;
}

.dispatch-hero p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.dispatch-eta,
.dispatch-id,
.driver-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.dispatch-eta {
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(233, 196, 106, 0.22), transparent 8rem),
    rgba(255, 255, 255, 0.06);
}

.dispatch-eta span,
.dispatch-id span,
.driver-card span,
.map-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-eta strong {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.9;
}

.dispatch-eta small {
  color: var(--muted);
  font-weight: 800;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
}

.dispatch-map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 22%, rgba(116, 216, 189, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(104, 168, 255, 0.09), rgba(233, 196, 106, 0.06)),
    #080b0d;
}

.live-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #080b0d;
}

.dispatch-map .leaflet-container {
  background: #080b0d;
  color: var(--ink);
  font-family: inherit;
}

.dispatch-map .leaflet-tile {
  filter: invert(1) hue-rotate(180deg) saturate(0.46) brightness(0.68) contrast(1.08);
}

.dispatch-map .leaflet-control-attribution {
  background: rgba(8, 10, 10, 0.72);
  color: rgba(244, 241, 230, 0.62);
  font-size: 0.66rem;
}

.dispatch-map .leaflet-control-attribution a {
  color: var(--mint);
}

.dispatch-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 20% 18%, rgba(116, 216, 189, 0.2), transparent 18rem),
    radial-gradient(circle at 82% 76%, rgba(233, 196, 106, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(7, 9, 9, 0.1), rgba(7, 9, 9, 0.34));
}

.map-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(244, 241, 230, 0.18);
  border-radius: 999px;
  background: rgba(10, 12, 12, 0.84);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.map-marker span {
  width: 13px;
  height: 13px;
  border: 3px solid #080b0d;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(116, 216, 189, 0.14);
}

.map-marker.driver span {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(233, 196, 106, 0.16);
  animation: driverPulse 1.8s ease-in-out infinite;
}

.map-marker.dropoff span {
  background: var(--rose);
  box-shadow: 0 0 0 8px rgba(255, 124, 131, 0.14);
}

.map-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 12px;
  backdrop-filter: blur(14px);
}

.map-card strong {
  color: var(--ink);
}

.map-card.pickup {
  top: 22px;
  left: 22px;
}

.map-card.destination {
  right: 22px;
  bottom: 22px;
}

.dispatch-details {
  display: grid;
  gap: 12px;
}

.dispatch-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.driver-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px;
}

.driver-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  color: #11130f;
  font-weight: 950;
}

.driver-card strong {
  display: block;
  margin-top: 4px;
}

.driver-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.status-steps {
  display: grid;
  gap: 12px;
}

.status-steps div {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px 14px 14px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.status-steps div > span {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.status-steps div.complete > span {
  border-color: var(--mint);
  background: var(--mint);
  box-shadow: 0 0 24px rgba(116, 216, 189, 0.42);
}

.status-steps div.active {
  border-color: rgba(233, 196, 106, 0.4);
  background: rgba(233, 196, 106, 0.09);
}

.status-steps div.active > span {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 24px rgba(233, 196, 106, 0.42);
  animation: driverPulse 1.8s ease-in-out infinite;
}

.status-steps strong {
  color: var(--ink);
}

.status-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(-25deg) scaleX(0.82);
  }
  50% {
    opacity: 1;
    transform: rotate(-25deg) scaleX(1);
  }
}

@keyframes driverPulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(233, 196, 106, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(233, 196, 106, 0.02);
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(5.4rem, 28vw, 11rem);
  }

  .hero-logo-title {
    width: min(560px, 86vw);
  }

  .hero-product-cluster {
    right: -4vw;
    bottom: 12vh;
    width: min(520px, 54vw);
    height: min(520px, 58vw);
  }

  .dispatch-panel,
  .service-band,
	  .commerce-layout,
	  .concierge,
	  .dispatch-hero,
	  .dispatch-grid,
	  .brand-system,
	  .policy-center,
	  .policy-grid,
	  .footer-policy-grid,
	  .order-detail-grid,
	  .drawer-layout,
	  .age-card,
	  .report-grid,
	  .review-grid,
	  .ops-alerts,
	  .movement-panel,
	  .settings-grid,
	  .inventory-row,
	  .order-record,
	  .site-footer {
	    grid-template-columns: 1fr;
	  }

	  .policy-heading {
	    position: static;
	  }

	  .drawer-visual {
	    min-height: 360px;
	  }

	  .drawer-specs {
	    grid-template-columns: 1fr;
	  }

  .dispatch-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 70px;
  }

  .service-grid,
  .products,
  .owner-stats,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart {
    position: static;
  }
}

@media (max-width: 680px) {
  .age-card {
    padding: 12px;
  }

  .age-copy {
    padding: 18px;
  }

  .age-card h1 {
    font-size: clamp(2.6rem, 13vw, 4.05rem);
  }

  .age-visual {
    min-height: 250px;
  }

  .age-visual img {
    width: min(62%, 210px);
    max-height: 220px;
  }

  .owner-heading {
    display: grid;
    align-items: start;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
  }

  .header-order {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-right: 18px;
    padding-bottom: 42px;
    padding-left: 18px;
  }

  .hero-media {
    opacity: 0.78;
  }

  .hero-logo-smoke,
  .city-grid {
    display: none;
  }

  .hero-product-cluster {
    right: -150px;
    bottom: 92px;
    width: 330px;
    height: 330px;
    opacity: 0.34;
  }

  .hero-product-main {
    width: 176px;
    right: 38%;
    filter:
      saturate(1.08)
      contrast(1.04)
      brightness(1.02)
      drop-shadow(0 24px 36px rgba(0, 0, 0, 0.48));
  }

  .hero-product-side {
    display: none;
  }

  .hero-product-accent {
    display: none;
  }

  .hero-copy {
    margin-top: 26px;
  }

  .hero-logo-title {
    width: min(100%, 500px);
  }

  .dispatch-panel {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .dispatch-panel div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 60px 18px;
  }

  .shop-heading {
    display: grid;
  }

  .service-grid,
  .products,
	  .signal-board,
	  .owner-stats,
	  .brand-grid,
	  .status-button-grid,
	  .eta-control {
	    grid-template-columns: 1fr;
	  }

	  .text-customer,
	  .owner-note-box,
	  .owner-actions {
	    grid-template-columns: 1fr;
	  }

	  .owner-actions {
	    display: grid;
	    justify-content: stretch;
	    width: 100%;
	  }

	  .settings-wide {
	    grid-column: span 1;
	  }

	  .settings-actions {
	    display: grid;
	  }

	  .report-actions,
	  .movement-list div {
	    display: grid;
	    justify-content: stretch;
	  }

	  .product-card {
	    min-height: auto;
	  }

	  .product-bottom,
	  .product-actions,
	  .drawer-price-row {
	    align-items: stretch;
	    flex-direction: column;
	  }

	  .product-actions,
	  .product-actions button {
	    width: 100%;
	  }

	  .spec-grid {
	    grid-template-columns: 1fr;
	  }

  .mobile-cart-bar.visible {
    display: flex;
  }

  .cart-scrim {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.cart-drawer-open .cart-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .cart {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 29;
    max-height: min(82svh, 760px);
    overflow: auto;
    transform: translateY(calc(100% + 24px));
    transition: transform 220ms ease;
  }

  body.cart-drawer-open .cart {
    transform: translateY(0);
  }

  .cart-close {
    display: inline-grid;
    place-items: center;
  }

  body.cart-drawer-open .mobile-cart-bar {
    display: none;
  }

  .review-actions {
    display: grid;
  }

  .toast {
    right: 14px;
    bottom: 84px;
    left: 14px;
    max-width: none;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 96px;
  }

	  .confirmation {
	    padding: 12px;
	  }

	  .checkout-review {
	    padding: 12px;
	  }

	  .checkout-review-card {
	    max-height: calc(100svh - 24px);
	    padding: 18px;
	  }

	  .product-drawer {
	    padding: 12px;
	  }

	  .product-drawer-card {
	    max-height: calc(100svh - 24px);
	    padding: 18px;
	  }

	  .drawer-visual {
	    min-height: 300px;
	  }

  .dispatch-card {
    max-height: calc(100svh - 24px);
    padding: 18px;
  }

  .dispatch-map {
    min-height: 320px;
  }

  .dispatch-id {
    display: grid;
  }
}
