:root {
  color-scheme: dark;
  --bg: #020403;
  --bg-2: #070b0a;
  --panel: rgba(11, 16, 15, 0.76);
  --panel-solid: #0a100f;
  --line: rgba(231, 255, 246, 0.14);
  --line-bright: rgba(126, 255, 84, 0.38);
  --text: #f5fff9;
  --muted: #a9b9b1;
  --green: #73ff38;
  --green-2: #b9ff66;
  --cyan: #79f7ff;
  --silver: #d8e3e0;
  --hot: #ff4fd8;
  --warning: #ffd166;
  --site-bg: url("processed-assets/site-background.webp");
  --site-bg-position: center top;
  --site-bg-size: cover;
  --site-bg-attachment: fixed;
  --site-bg-repeat: no-repeat;
  --card-paper: #fff9ea;
  --card-paper-2: #f8edcf;
  --card-ink: #171716;
  --card-muted: #4f5350;
  --card-red: #8d1020;
  --card-orange: #ff9d27;
  --poster-shadow: 0 0 0 2px rgba(129, 242, 255, 0.85), 0 0 0 8px rgba(255, 255, 255, 0.86),
    0 22px 70px rgba(0, 0, 0, 0.58), 0 0 48px rgba(121, 247, 255, 0.24);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.58);
  --glow: 0 0 28px rgba(115, 255, 56, 0.2), 0 0 70px rgba(121, 247, 255, 0.08);
  --radius: 8px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
  touch-action: manipulation;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.34), rgba(2, 4, 3, 0.78) 45%, #020403 100%),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat) var(--site-bg-attachment),
    var(--bg);
  color: var(--text);
  text-rendering: geometricPrecision;
  touch-action: manipulation;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.04), rgba(2, 4, 3, 0.78) 72%, #020403 100%),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat);
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 178, 73, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(2, 4, 3, 0.58), rgba(2, 4, 3, 0.1) 35%, rgba(2, 4, 3, 0.12) 65%, rgba(2, 4, 3, 0.6));
  pointer-events: none;
}

body.drawer-open {
  overflow: hidden;
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-scrolled .header-shell {
  background: rgba(2, 5, 4, 0.7);
  border-color: rgba(216, 227, 224, 0.15);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.42);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  margin: 12px auto 0;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 9, 8, 0.42);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.nav-links {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(245, 255, 249, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
  border-color: rgba(115, 255, 56, 0.32);
  background: rgba(115, 255, 56, 0.09);
  box-shadow: inset 0 0 18px rgba(115, 255, 56, 0.08);
}

.brand-lockup {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 126px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 255, 249, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 255, 249, 0.13), rgba(115, 255, 56, 0.07));
  box-shadow: 0 0 0 1px rgba(115, 255, 56, 0.12), 0 18px 45px rgba(0, 0, 0, 0.35), inset 0 0 18px rgba(245, 255, 249, 0.05);
  overflow: hidden;
}

.brand-logo {
  width: 102px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)) saturate(1.08) contrast(1.05);
}

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search,
.shop-search {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(129, 242, 255, 0.26);
  border-radius: 999px;
  background: rgba(2, 5, 4, 0.58);
  color: var(--text);
  box-shadow: inset 0 0 22px rgba(121, 247, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-search:focus-within,
.shop-search:focus-within {
  border-color: rgba(115, 255, 56, 0.62);
  background: rgba(4, 10, 8, 0.82);
  box-shadow: inset 0 0 22px rgba(115, 255, 56, 0.08), 0 0 32px rgba(115, 255, 56, 0.12);
}

.header-search {
  width: clamp(156px, 18vw, 238px);
  padding: 0 13px;
}

.header-search svg,
.shop-search svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: rgba(121, 247, 255, 0.82);
}

.header-search input,
.shop-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.header-search input {
  padding: 0 0 0 8px;
}

.header-search input::placeholder,
.shop-search input::placeholder {
  color: rgba(245, 255, 249, 0.52);
}

.header-search input::-webkit-search-cancel-button,
.shop-search input::-webkit-search-cancel-button {
  filter: invert(1);
  opacity: 0.72;
}

.header-search-results {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  right: 74px;
  width: min(430px, calc(100vw - 32px));
  max-height: min(460px, calc(100vh - var(--header-h) - 28px));
  overflow: auto;
  border: 1px solid rgba(129, 242, 255, 0.42);
  border-radius: 18px;
  padding: 8px;
  background: rgba(2, 5, 4, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62), 0 0 34px rgba(121, 247, 255, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-results-list {
  display: grid;
  gap: 7px;
}

.header-result-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(245, 255, 249, 0.1);
  border-radius: 14px;
  padding: 8px 10px 8px 8px;
  background:
    radial-gradient(circle at 0 0, rgba(121, 247, 255, 0.13), transparent 40%),
    rgba(245, 255, 249, 0.05);
}

.header-result-thumb {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 249, 234, 0.95), rgba(248, 237, 207, 0.9));
  overflow: hidden;
}

.header-result-thumb img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.32));
}

.header-result-info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.header-result-info strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.12;
  text-overflow: ellipsis;
}

.header-result-info small {
  overflow: hidden;
  color: rgba(245, 255, 249, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-result-price {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.header-search-empty {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(245, 255, 249, 0.1);
  border-radius: 14px;
  background: rgba(245, 255, 249, 0.05);
}

.header-search-empty strong {
  color: var(--green);
}

.header-search-empty span {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-trigger {
  position: relative;
  grid-column: 3;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 255, 249, 0.2);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 227, 224, 0.12), rgba(115, 255, 56, 0.08));
  color: var(--text);
  box-shadow: inset 0 0 20px rgba(216, 227, 224, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cart-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(115, 255, 56, 0.56);
  box-shadow: var(--glow);
}

.cart-icon svg,
.icon-button svg,
.benefit-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 1px solid rgba(2, 4, 3, 0.8);
  border-radius: 999px;
  background: var(--green);
  color: #020403;
  font-size: 0.72rem;
  font-weight: 900;
}

#app {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(2, 4, 3, 0.36), rgba(2, 4, 3, 0.78) 36%, #020403 100%);
}

.page-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0) 0%, rgba(2, 4, 3, 0.08) 58%, #020403 100%),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat),
    #020403;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020403;
  opacity: 1;
  filter: url("#video-sharpen") contrast(1.12) saturate(1.1) brightness(1.02);
  transform: scale(1.01);
  transform-origin: center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 58%;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0), rgba(2, 4, 3, 0.42) 58%, #020403),
    radial-gradient(ellipse at center, rgba(2, 4, 3, 0), rgba(2, 4, 3, 0.28));
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 54px) 0 42px;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-size: clamp(3.6rem, 12vw, 9.3rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(115, 255, 56, 0.2), 0 20px 70px rgba(0, 0, 0, 0.55);
}

.hero .hero-gloss-title {
  display: inline-block;
  width: min(830px, 94vw);
  max-width: 12ch;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(3.25rem, 10.5vw, 8.6rem);
  line-height: 0.82;
  background: none;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0;
  filter: none;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.18), 0 18px 46px rgba(0, 0, 0, 0.68);
}

.hero-gloss-title::before,
.hero-gloss-title::after {
  content: none;
}

.hero p {
  width: min(560px, 100%);
  margin-bottom: 26px;
  color: rgba(245, 255, 249, 0.8);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  border: 1px solid rgba(115, 255, 56, 0.72);
  padding: 0 22px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #061006;
  box-shadow: 0 0 34px rgba(115, 255, 56, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.mini-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 0 42px rgba(115, 255, 56, 0.38);
}

.ghost-button {
  border: 1px solid rgba(245, 255, 249, 0.22);
  padding: 0 20px;
  background: rgba(245, 255, 249, 0.06);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.ghost-button:hover {
  border-color: rgba(216, 227, 224, 0.42);
  box-shadow: 0 0 26px rgba(216, 227, 224, 0.12);
}

.wide {
  width: 100%;
}

.is-hidden {
  display: none !important;
}

.reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.78, 0.18, 1),
    filter 760ms cubic-bezier(0.2, 0.78, 0.18, 1),
    transform 760ms cubic-bezier(0.2, 0.78, 0.18, 1);
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
  will-change: opacity, filter, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.video-control,
.video-sound-control {
  position: absolute;
  z-index: 5;
  right: max(16px, calc((100vw - 1180px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(245, 255, 249, 0.24);
  border-radius: 999px;
  background: rgba(2, 4, 3, 0.54);
  color: var(--text);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 220ms ease;
}

.video-control {
  bottom: 28px;
  min-width: 134px;
}

.video-sound-control {
  bottom: 82px;
  min-width: 126px;
}

.video-sound-control[aria-pressed="true"] {
  border-color: rgba(115, 255, 56, 0.58);
  color: var(--green);
  box-shadow: 0 0 26px rgba(115, 255, 56, 0.16), 0 14px 38px rgba(0, 0, 0, 0.36);
}

.video-control:hover,
.video-sound-control:hover {
  transform: translateY(-2px);
  border-color: rgba(115, 255, 56, 0.52);
  box-shadow: var(--glow);
}

.video-control svg,
.video-sound-control svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(115, 255, 56, 0.38);
  border-radius: 999px;
  background: rgba(2, 4, 3, 0.52);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34), 0 0 26px rgba(115, 255, 56, 0.13);
  backdrop-filter: blur(16px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.hero-scroll-cue:hover {
  border-color: rgba(115, 255, 56, 0.72);
  background: rgba(2, 4, 3, 0.7);
  box-shadow: var(--glow);
  transform: translate(-50%, -2px);
}

.hero-scroll-cue svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: cueArrow 1300ms ease-in-out infinite;
}

@keyframes cueArrow {
  0%,
  100% {
    transform: translateY(-1px);
  }

  50% {
    transform: translateY(4px);
  }
}

.video-fallback {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 92px;
  display: none;
  width: min(520px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(115, 255, 56, 0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(2, 4, 3, 0.7);
  color: rgba(245, 255, 249, 0.82);
  text-align: center;
  backdrop-filter: blur(14px);
}

.hero.video-failed .hero-video {
  opacity: 0;
}

.hero.video-failed .video-fallback {
  display: block;
}

.intro-band {
  padding: 80px 0 56px;
  background:
    linear-gradient(180deg, #020403 0%, rgba(2, 4, 3, 0.54) 32%, rgba(2, 4, 3, 0.5) 100%),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat) var(--site-bg-attachment);
}

.intro-statement {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  border: 1px solid rgba(129, 242, 255, 0.78);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 46px);
  background:
    radial-gradient(circle at 0 0, rgba(121, 247, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(255, 249, 234, 0.98), rgba(248, 237, 207, 0.94));
  box-shadow: var(--poster-shadow);
}

.intro-statement h2,
.section-heading h2,
.about-hero h1,
.products-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-statement h2 {
  color: var(--card-red);
  text-shadow: none;
}

.intro-statement p,
.section-heading p,
.about-hero p,
.products-hero p,
.cta-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.intro-statement p {
  color: var(--card-muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 0;
  background: transparent;
}

.stat {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(129, 242, 255, 0.7);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.16), transparent 36%),
    rgba(255, 255, 248, 0.76);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.stat strong {
  display: block;
  color: var(--card-red);
  font-size: 1.65rem;
  font-weight: 900;
}

.stat span {
  color: var(--card-muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-block {
  padding: 72px 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.56), rgba(2, 4, 3, 0.62)),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat) var(--site-bg-attachment);
}

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

.section-heading p {
  width: min(410px, 100%);
  margin-bottom: 0;
}

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

.products-page .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 88%, rgba(121, 247, 255, 0.18), transparent 22%),
    radial-gradient(circle at 96% 18%, rgba(255, 157, 39, 0.18), transparent 24%),
    linear-gradient(180deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 14%),
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.38) 42%, transparent 68%);
  opacity: 0.68;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 242, 255, 1);
  box-shadow: 0 0 0 2px rgba(129, 242, 255, 0.98), 0 0 0 8px rgba(255, 255, 255, 0.95),
    0 30px 90px rgba(0, 0, 0, 0.68), 0 0 70px rgba(121, 247, 255, 0.36);
}

.product-card:hover::before {
  opacity: 1;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 286px;
  padding: 30px 24px 18px;
  background:
    radial-gradient(ellipse at center, rgba(121, 247, 255, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 229, 0.72));
}

.product-media::after {
  position: absolute;
  right: 24%;
  bottom: 22px;
  left: 24%;
  height: 18px;
  content: "";
  background: rgba(0, 0, 0, 0.22);
  filter: blur(18px);
}

.product-media img {
  position: absolute;
  width: min(72%, 260px);
  max-height: 238px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32));
  transition: opacity 280ms ease, transform 320ms ease, filter 320ms ease;
}

.product-media .pack-image {
  width: min(86%, 292px);
  opacity: 0;
  transform: scale(0.94) translateY(8px);
}

.snack-card .product-media img {
  width: min(82%, 240px);
  max-height: 244px;
}

.snack-card .product-media::after {
  right: 18%;
  left: 18%;
}

.product-card.has-pack:hover .single-image {
  opacity: 0;
  transform: scale(0.94) translateY(-8px);
}

.product-card.has-pack:hover .pack-image {
  opacity: 1;
  transform: scale(1.03) translateY(0);
}

.product-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

.product-title {
  min-height: 48px;
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 900;
  color: var(--card-red);
  text-shadow: none;
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.price-block {
  display: grid;
  gap: 3px;
}

.price-label {
  color: var(--card-muted);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price {
  color: var(--card-red);
  font-size: 1.18rem;
  font-weight: 900;
}

.pack-label {
  color: var(--card-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.unit-price-note {
  margin: 7px 0 0;
  color: var(--card-muted);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.35;
}

.card-actions,
.drawer-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(141, 16, 32, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.qty-stepper button {
  display: grid;
  place-items: center;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--card-ink);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.qty-stepper button:hover {
  background: rgba(255, 157, 39, 0.18);
  color: var(--card-red);
}

.qty-value {
  text-align: center;
  font-weight: 900;
  color: var(--card-ink);
}

.add-button,
.mini-button {
  border: 1px solid rgba(141, 16, 32, 0.68);
  background: linear-gradient(180deg, #ffcf58, var(--card-orange) 52%, #e34d24);
  color: #ffffff;
  box-shadow: 0 6px 0 #8d1020, 0 12px 24px rgba(141, 16, 32, 0.24);
}

.add-button {
  flex: 1;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.add-button:hover {
  transform: translateY(-1px);
  border-color: rgba(141, 16, 32, 0.95);
  background: linear-gradient(180deg, #ffe16e, #ff9d27 52%, #c83724);
  color: #ffffff;
}

.cta-panel .primary-button,
.cart-panel .primary-button {
  border-color: rgba(141, 16, 32, 0.68);
  background: linear-gradient(180deg, #ffcf58, var(--card-orange) 52%, #e34d24);
  color: #ffffff;
  box-shadow: 0 6px 0 #8d1020, 0 14px 28px rgba(141, 16, 32, 0.26);
}

.cta-panel .primary-button:hover,
.cart-panel .primary-button:hover {
  box-shadow: 0 5px 0 #8d1020, 0 16px 34px rgba(141, 16, 32, 0.34);
}

.cta-panel .ghost-button {
  border-color: rgba(141, 16, 32, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--card-red);
}

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

.benefit-card {
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.16), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid rgba(129, 242, 255, 0.72);
  border-radius: 50%;
  color: var(--card-red);
  background: rgba(121, 247, 255, 0.15);
  box-shadow: inset 0 0 18px rgba(121, 247, 255, 0.12);
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--card-red);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--card-muted);
  line-height: 1.55;
}

.cta-band {
  padding: 74px 0 96px;
  background:
    linear-gradient(90deg, rgba(115, 255, 56, 0.07), rgba(2, 4, 3, 0.44) 36%, rgba(121, 247, 255, 0.06)),
    linear-gradient(180deg, rgba(2, 4, 3, 0.58), rgba(2, 4, 3, 0.66)),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat) var(--site-bg-attachment);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 249, 234, 0.96), rgba(248, 237, 207, 0.92));
  box-shadow: var(--poster-shadow);
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--card-red);
}

.cta-panel p {
  color: var(--card-muted);
}

.footer {
  padding: 36px 0 42px;
  border-top: 1px solid rgba(245, 255, 249, 0.1);
  background: #020403;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(245, 255, 249, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.products-hero,
.about-hero {
  padding: calc(var(--header-h) + 88px) 0 54px;
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.1), rgba(2, 4, 3, 0.72) 78%, rgba(2, 4, 3, 0.92)),
    linear-gradient(90deg, rgba(2, 4, 3, 0.7), rgba(2, 4, 3, 0.12) 44%, rgba(2, 4, 3, 0.58)),
    var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat),
    #020403;
}

.products-hero .page-inner,
.about-hero .page-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.products-hero p,
.about-hero p {
  margin-bottom: 0;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
}

.shop-category-tabs {
  display: inline-flex;
  gap: 8px;
  border: 1px solid rgba(129, 242, 255, 0.34);
  border-radius: 999px;
  padding: 6px;
  background: rgba(2, 4, 3, 0.42);
  box-shadow: inset 0 0 22px rgba(121, 247, 255, 0.07);
  backdrop-filter: blur(14px);
}

.shop-tab {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: rgba(245, 255, 249, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-tab:hover,
.shop-tab.is-active {
  border-color: rgba(115, 255, 56, 0.44);
  background: rgba(115, 255, 56, 0.12);
  color: var(--green);
  box-shadow: inset 0 0 16px rgba(115, 255, 56, 0.09);
}

.shop-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.shop-search-row > span {
  flex: 0 0 auto;
  border: 1px solid rgba(245, 255, 249, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(2, 4, 3, 0.5);
  color: rgba(245, 255, 249, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.shop-search {
  width: min(520px, 100%);
  min-height: 50px;
  padding: 0 16px;
  border-radius: var(--radius);
}

.shop-search input {
  padding: 0 0 0 10px;
  font-size: 0.92rem;
}

.shop-global-results {
  min-height: 360px;
}

.empty-results {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(129, 242, 255, 0.56);
  border-radius: var(--radius);
  padding: 34px;
  background:
    radial-gradient(circle at 50% 0, rgba(121, 247, 255, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 249, 234, 0.97), rgba(248, 237, 207, 0.96));
  color: var(--card-ink);
  text-align: center;
  box-shadow: var(--poster-shadow);
}

.empty-results h3 {
  margin: 0 0 8px;
  color: var(--card-red);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.empty-results p {
  max-width: 440px;
  margin: 0;
  color: var(--card-muted);
  font-weight: 800;
}

.shop-panel {
  display: none;
}

.shop-panel.is-active {
  display: block;
}

.shop-pills {
  margin-bottom: 22px;
}

.compact-heading {
  margin-top: 10px;
}

.combo-feature-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.18), transparent 32%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  overflow: hidden;
}

.combo-feature-copy h2 {
  margin-bottom: 12px;
  color: var(--card-red);
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.combo-feature-copy p:not(.eyebrow) {
  color: var(--card-muted);
  line-height: 1.65;
}

.combo-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.combo-feature-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(141, 16, 32, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--card-red);
  font-weight: 900;
}

.combo-feature-image {
  display: block;
  border: 1px solid rgba(129, 242, 255, 0.7);
  border-radius: 8px;
  padding: 0;
  background: transparent;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.combo-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.combo-feature-card:hover .combo-feature-image img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.035);
}

.snack-piece-feature-card {
  margin-top: 30px;
}

.snack-piece-feature-card .combo-feature-image {
  background:
    radial-gradient(circle at 74% 38%, rgba(255, 157, 39, 0.16), transparent 34%),
    #050505;
}

.snack-piece-feature-card .combo-feature-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.extra-piece-feature-card .combo-feature-image {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(115, 255, 56, 0.12), transparent 48%),
    #050505;
}

.extra-piece-feature-card .combo-feature-image img {
  aspect-ratio: 16 / 9;
  padding: 22px;
  box-sizing: border-box;
  object-fit: contain;
}

.snack-piece-section {
  margin-top: 26px;
  scroll-margin-top: 120px;
}

.snack-piece-card .combo-picker-media img {
  max-width: 78%;
}

.snack-piece-card .card-actions {
  align-items: stretch;
  flex-direction: column;
}

.snack-piece-card .qty-stepper {
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
}

.combo-hero {
  padding: calc(var(--header-h) + 88px) 0 74px;
  background:
    linear-gradient(90deg, rgba(2, 4, 3, 0.82), rgba(2, 4, 3, 0.18) 48%, rgba(2, 4, 3, 0.74)),
    linear-gradient(180deg, rgba(2, 4, 3, 0.08), rgba(2, 4, 3, 0.9)),
    url("processed-assets/custom-combo-hero.webp") center / cover no-repeat,
    #020403;
}

.combo-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
}

.combo-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.86;
  font-weight: 900;
  text-transform: uppercase;
}

.combo-hero-copy {
  min-width: 0;
}

.combo-hero-copy p {
  max-width: 540px;
  color: rgba(245, 255, 249, 0.82);
  line-height: 1.65;
}

.combo-price {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(129, 242, 255, 0.72);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(2, 4, 3, 0.5);
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(121, 247, 255, 0.16);
}

.combo-hero-card {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: 10px;
  background: linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
}

.combo-hero-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
}

.combo-builder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 410px) 1fr;
  gap: 22px;
  align-items: start;
}

.combo-builder-section {
  scroll-margin-top: 120px;
}

.combo-box-card {
  position: sticky;
  z-index: 1;
  top: 110px;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
}

.combo-box-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.combo-box-top h3 {
  margin-bottom: 0;
  color: var(--card-red);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.combo-box-top strong {
  color: var(--card-red);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.combo-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.combo-slot {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(141, 16, 32, 0.18);
  border-radius: 6px;
  background:
    radial-gradient(circle at center, rgba(121, 247, 255, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.52);
  overflow: hidden;
}

.combo-slot img {
  width: 70%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.combo-slot.is-empty span {
  color: rgba(141, 16, 32, 0.3);
  font-weight: 900;
}

.combo-progress {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: var(--card-red);
  font-weight: 900;
}

.combo-progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(141, 16, 32, 0.16);
  overflow: hidden;
}

.combo-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--card-orange), var(--card-red));
  transition: width 180ms ease;
}

.combo-reset {
  margin-top: 12px;
  border-color: rgba(141, 16, 32, 0.22);
  color: var(--card-red);
  background: rgba(255, 255, 255, 0.52);
}

.combo-picker-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.combo-picker-card {
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.12), transparent 32%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.74), 0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(121, 247, 255, 0.16);
  overflow: hidden;
}

.combo-picker-media {
  display: grid;
  place-items: center;
  height: 170px;
  background:
    radial-gradient(ellipse at center, rgba(121, 247, 255, 0.22), transparent 58%),
    rgba(255, 255, 255, 0.42);
}

.combo-picker-media img {
  max-width: 68%;
  max-height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.28));
}

.combo-picker-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.combo-picker-body h3 {
  min-height: 42px;
  margin-bottom: 0;
  color: var(--card-red);
  font-size: 0.9rem;
  line-height: 1.18;
}

.combo-picker-body span {
  color: var(--card-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.combo-picker-actions {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
}

.combo-picker-actions button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(141, 16, 32, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: var(--card-red);
  font-weight: 900;
}

.combo-picker-actions button:disabled,
.combo-box-card .primary-button:disabled,
.cart-panel .primary-button:disabled,
.checkout-form .primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  filter: grayscale(0.35);
  transform: none;
}

.combo-picker-actions strong {
  color: var(--card-red);
  text-align: center;
  font-size: 1.05rem;
}

.collection-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(245, 255, 249, 0.13);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(245, 255, 249, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  padding: 72px 0 96px;
}

.about-visual {
  position: sticky;
  top: 104px;
  align-self: start;
  min-height: 520px;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  background:
    url("processed-assets/optimized/fiesta-mango-single.webp") center 40% / min(58%, 330px) no-repeat,
    radial-gradient(circle at 20% 86%, rgba(121, 247, 255, 0.2), transparent 28%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  overflow: hidden;
}

.about-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 249, 234, 0.96));
}

.about-visual-content {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 24px;
  left: 22px;
}

.about-visual-content strong {
  display: block;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--card-red);
}

.about-visual-content span {
  display: block;
  margin-top: 14px;
  color: var(--card-muted);
  line-height: 1.55;
}

.about-stack {
  display: grid;
  gap: 14px;
}

.about-card {
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.13), transparent 32%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
}

.about-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--card-red);
}

.about-card p {
  margin-bottom: 0;
  color: var(--card-muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 12px;
  border: 0;
  background: transparent;
}

.timeline-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(129, 242, 255, 0.8);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 100%, rgba(121, 247, 255, 0.16), transparent 34%),
    rgba(255, 255, 248, 0.76);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.74), 0 16px 38px rgba(0, 0, 0, 0.26);
}

.timeline-item strong {
  color: var(--card-red);
  font-size: 1.12rem;
  font-weight: 900;
}

.timeline-item span {
  color: var(--card-muted);
  line-height: 1.55;
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: background 280ms ease, visibility 0s linear 320ms;
}

.cart-drawer.is-open {
  background: rgba(0, 0, 0, 0.56);
  visibility: visible;
  pointer-events: auto;
  transition: background 280ms ease;
}

.cart-panel {
  display: flex;
  width: min(440px, 100%);
  height: 100%;
  flex-direction: column;
  border-left: 1px solid rgba(129, 242, 255, 0.8);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.16), transparent 26%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.54), -8px 0 36px rgba(121, 247, 255, 0.22);
  backdrop-filter: blur(24px) saturate(150%);
  transform: translateX(105%);
  transition: transform 320ms cubic-bezier(0.2, 0.74, 0.3, 1);
}

.cart-panel .eyebrow {
  color: var(--card-red);
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 22px 18px;
  border-bottom: 1px solid rgba(141, 16, 32, 0.16);
}

.cart-head h2 {
  margin-bottom: 0;
  font-size: 1.72rem;
  text-transform: uppercase;
  color: var(--card-red);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(141, 16, 32, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: var(--card-red);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button:hover {
  border-color: rgba(141, 16, 32, 0.5);
  color: var(--card-red);
  background: rgba(255, 157, 39, 0.18);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 14px;
}

.empty-cart {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 1px dashed rgba(141, 16, 32, 0.28);
  border-radius: var(--radius);
  color: var(--card-muted);
  text-align: center;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(129, 242, 255, 0.78);
  border-radius: var(--radius);
  padding: 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.12), transparent 36%),
    rgba(255, 255, 248, 0.78);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.74), 0 16px 38px rgba(0, 0, 0, 0.2);
}

.drawer-thumb {
  display: grid;
  place-items: center;
  height: 92px;
  border-radius: 6px;
  background: rgba(121, 247, 255, 0.13);
}

.drawer-thumb img {
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.45));
}

.drawer-item h3 {
  margin-bottom: 6px;
  font-size: 0.96rem;
  line-height: 1.25;
  color: var(--card-red);
}

.drawer-price {
  display: block;
  margin-bottom: 10px;
  color: var(--card-red);
  font-weight: 900;
}

.combo-drawer-summary {
  margin: 0 0 10px;
  color: var(--card-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.combo-thumb img {
  max-width: 88px;
  max-height: 78px;
  border-radius: 4px;
  object-fit: cover;
}

.remove-button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: rgba(141, 16, 32, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.remove-button:hover {
  color: var(--hot);
}

.cart-footer {
  max-height: 68vh;
  overflow: auto;
  border-top: 1px solid rgba(141, 16, 32, 0.16);
  padding: 18px 22px 22px;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--card-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.total-row strong {
  color: var(--card-red);
  font-size: 1.25rem;
}

.cart-note {
  margin: 12px 0 0;
  color: var(--card-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.cart-footer .primary-button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 138px;
  z-index: 76;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(129, 242, 255, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.34), transparent 26%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  color: var(--card-red);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.64), 0 18px 44px rgba(0, 0, 0, 0.36), 0 0 34px rgba(129, 242, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.76), 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 42px rgba(255, 157, 39, 0.24);
}

.chat-fab svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chat-fab span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #fff8ea;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.chat-drawer {
  position: fixed;
  z-index: 92;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: background 280ms ease, visibility 0s linear 320ms;
}

.chat-drawer.is-open {
  background: rgba(0, 0, 0, 0.52);
  visibility: visible;
  pointer-events: auto;
  transition: background 280ms ease;
}

.chat-panel {
  display: flex;
  width: min(420px, 100%);
  height: 100%;
  flex-direction: column;
  border-left: 1px solid rgba(129, 242, 255, 0.86);
  background:
    radial-gradient(circle at 100% 0, rgba(115, 255, 56, 0.16), transparent 30%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  color: var(--card-ink);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.54), -8px 0 36px rgba(121, 247, 255, 0.22);
  transform: translateX(105%);
  transition: transform 320ms cubic-bezier(0.2, 0.74, 0.3, 1);
}

.chat-drawer.is-open .chat-panel {
  transform: translateX(0);
}

.chat-head h2 {
  color: var(--card-red);
}

.chat-messages {
  display: grid;
  align-content: start;
  flex: 1;
  gap: 10px;
  overflow: auto;
  padding: 14px;
}

.chat-empty {
  display: grid;
  gap: 10px;
  min-height: 240px;
  align-content: center;
  border: 1px dashed rgba(141, 16, 32, 0.24);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.chat-empty h3 {
  margin: 0;
  color: var(--card-red);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.chat-empty p:not(.eyebrow) {
  margin: 0;
  color: var(--card-muted);
  font-weight: 800;
  line-height: 1.5;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  border: 1px solid rgba(141, 16, 32, 0.16);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.chat-bubble.is-admin {
  justify-self: start;
  border-color: rgba(129, 242, 255, 0.7);
  background:
    radial-gradient(circle at 100% 0, rgba(121, 247, 255, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.72);
}

.chat-bubble.is-customer {
  justify-self: end;
  border-color: rgba(141, 16, 32, 0.22);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.16), transparent 36%),
    rgba(255, 248, 226, 0.86);
}

.chat-bubble span {
  display: block;
  margin-bottom: 5px;
  color: var(--card-muted);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-bubble p {
  margin: 0;
  color: var(--card-ink);
  font-weight: 820;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.chat-form {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(141, 16, 32, 0.16);
  padding: 14px;
}

.chat-form label,
.admin-chat-reply label {
  display: grid;
  gap: 7px;
  color: var(--card-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-form input,
.chat-form textarea,
.admin-chat-reply textarea {
  width: 100%;
  border: 1px solid rgba(141, 16, 32, 0.18);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--card-ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  outline: none;
  resize: vertical;
}

.chat-form input:focus,
.chat-form textarea:focus,
.admin-chat-reply textarea:focus {
  border-color: rgba(129, 242, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(129, 242, 255, 0.16);
}

.chat-note {
  margin: 0;
  color: var(--card-muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.42;
  text-align: center;
}

.chat-form[hidden] {
  display: none;
}

.chat-review-card {
  display: grid;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(129, 242, 255, 0.82);
  border-radius: var(--radius);
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.16), transparent 40%),
    rgba(255, 255, 248, 0.82);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.66), 0 16px 38px rgba(0, 0, 0, 0.18);
}

.chat-review-card h3 {
  margin: 0;
  color: var(--card-red);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.chat-review-card p:not(.eyebrow) {
  margin: 0;
  color: var(--card-muted);
  font-weight: 820;
  line-height: 1.48;
}

.chat-stars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.chat-stars label {
  cursor: pointer;
}

.chat-stars input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chat-stars span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(141, 16, 32, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--card-red);
  font-size: 0.82rem;
  font-weight: 950;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.chat-stars input:checked + span,
.chat-stars span:hover {
  border-color: rgba(255, 157, 39, 0.78);
  background: rgba(255, 157, 39, 0.2);
  transform: translateY(-1px);
}

.chat-review-card > label {
  display: grid;
  gap: 7px;
  color: var(--card-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-review-card textarea {
  width: 100%;
  border: 1px solid rgba(141, 16, 32, 0.18);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--card-ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  outline: none;
  resize: vertical;
}

.chat-review-card textarea:focus {
  border-color: rgba(129, 242, 255, 0.86);
  box-shadow: 0 0 0 4px rgba(129, 242, 255, 0.16);
}

.order-toast {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-h) + 26px) 16px 16px;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background 220ms ease;
}

.order-toast.is-visible {
  background: rgba(0, 0, 0, 0.42);
  opacity: 1;
}

.order-toast-card {
  width: min(520px, 100%);
  border: 1px solid rgba(129, 242, 255, 0.92);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 28px);
  background:
    radial-gradient(circle at 100% 0, rgba(115, 255, 56, 0.2), transparent 36%),
    linear-gradient(145deg, #fff9ea, #f8edcf);
  color: var(--card-ink);
  box-shadow: var(--poster-shadow);
  transform: translateY(-18px) scale(0.96);
  transition: transform 260ms cubic-bezier(0.2, 0.74, 0.3, 1);
}

.order-toast.is-visible .order-toast-card {
  transform: translateY(0) scale(1);
}

.order-toast-card span {
  display: block;
  color: var(--card-red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.order-toast-card strong {
  display: block;
  margin-top: 8px;
  color: var(--card-red);
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.order-toast-card p {
  margin: 10px 0 0;
  color: var(--card-muted);
  font-weight: 850;
  line-height: 1.45;
}

.order-toast.is-error .order-toast-card {
  border-color: rgba(255, 79, 216, 0.72);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.18), transparent 36%),
    linear-gradient(145deg, #fff9ea, #f8edcf);
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid rgba(129, 242, 255, 0.62);
  border-radius: var(--radius);
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(121, 247, 255, 0.14), transparent 42%),
    rgba(255, 255, 248, 0.72);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.58), 0 18px 40px rgba(0, 0, 0, 0.16);
}

.checkout-form[hidden] {
  display: none;
}

.checkout-headline h2,
.checkout-headline h3 {
  margin: 0;
  color: var(--card-red);
  font-size: clamp(1.18rem, 3vw, 2rem);
  text-transform: uppercase;
}

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

.checkout-grid label,
.payment-option {
  display: grid;
  gap: 6px;
  color: var(--card-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-wide {
  grid-column: 1 / -1;
}

.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(141, 16, 32, 0.2);
  border-radius: 8px;
  outline: 0;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--card-ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checkout-grid textarea {
  resize: vertical;
}

.checkout-grid input:focus,
.checkout-grid textarea:focus {
  border-color: rgba(115, 255, 56, 0.72);
  background: #fffdf5;
  box-shadow: 0 0 0 3px rgba(115, 255, 56, 0.16);
}

.payment-option {
  border: 1px solid rgba(141, 16, 32, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.56);
}

.payment-option label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--card-ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: none;
}

.payment-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.checkout-message {
  min-height: 18px;
  margin: 0;
  color: var(--card-red);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.checkout-hero {
  padding: calc(var(--header-h) + 74px) 0 46px;
  background:
    radial-gradient(circle at 78% 22%, rgba(115, 255, 56, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.12), rgba(2, 4, 3, 0.76)),
    #020403;
}

.checkout-hero .page-inner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.checkout-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.88;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.checkout-hero p:last-child {
  margin-bottom: 0;
  color: rgba(245, 255, 249, 0.78);
  line-height: 1.65;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: start;
}

.checkout-page-form,
.checkout-summary,
.checkout-empty {
  border-color: rgba(129, 242, 255, 0.86);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
}

.checkout-page-form {
  padding: clamp(18px, 3vw, 28px);
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h) + 26px);
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 22px);
  color: var(--card-ink);
}

.checkout-summary-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.checkout-summary-head h2 {
  margin: 0;
  color: var(--card-red);
  text-transform: uppercase;
}

.checkout-summary .ghost-button {
  min-height: 40px;
  border-color: rgba(141, 16, 32, 0.28);
  background: rgba(255, 255, 255, 0.52);
  color: var(--card-red);
}

.checkout-summary-list {
  display: grid;
  gap: 12px;
  max-height: 48vh;
  overflow: auto;
  padding-right: 4px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(141, 16, 32, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.56);
}

.checkout-summary-thumb {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 7px;
  background: rgba(121, 247, 255, 0.14);
  overflow: hidden;
}

.checkout-summary-thumb img {
  max-width: 92%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.36));
}

.checkout-summary-item h3 {
  margin: 0 0 5px;
  color: var(--card-red);
  font-size: 0.9rem;
  line-height: 1.18;
}

.checkout-summary-item span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--card-muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.checkout-unit-note {
  display: block;
  margin-top: 5px;
  color: var(--card-muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-summary-item strong {
  color: var(--card-red);
  font-size: 0.9rem;
  white-space: nowrap;
}

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border-top: 1px solid rgba(141, 16, 32, 0.18);
  padding-top: 16px;
  color: var(--card-muted);
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-total-row strong {
  color: var(--card-red);
  font-size: 1.45rem;
}

.checkout-range-warning,
.checkout-range-ok {
  margin: 12px 0 0;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
}

.checkout-range-warning {
  border: 1px solid rgba(141, 16, 32, 0.28);
  background: rgba(141, 16, 32, 0.1);
  color: var(--card-red);
}

.checkout-range-ok {
  border: 1px solid rgba(115, 255, 56, 0.32);
  background: rgba(115, 255, 56, 0.12);
  color: #24510e;
}

.checkout-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: clamp(24px, 5vw, 42px);
  color: var(--card-ink);
}

.checkout-empty h2 {
  margin: 0;
  color: var(--card-red);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.checkout-empty p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--card-muted);
  font-weight: 800;
  line-height: 1.55;
}

.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-success-actions .ghost-button {
  border-color: rgba(141, 16, 32, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--card-red);
}

.admin-hero {
  padding: calc(var(--header-h) + 74px) 0 46px;
  background:
    radial-gradient(circle at 82% 18%, rgba(121, 247, 255, 0.14), transparent 30%),
    radial-gradient(circle at 14% 70%, rgba(115, 255, 56, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.22), rgba(2, 4, 3, 0.78)),
    #020403;
}

.admin-hero .page-inner {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.admin-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.88;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.admin-hero p:last-child {
  margin-bottom: 0;
  color: rgba(245, 255, 249, 0.78);
  line-height: 1.65;
}

.admin-login-wrap {
  display: grid;
  place-items: center;
}

.admin-login-card {
  width: min(520px, 100%);
  padding: clamp(18px, 3vw, 28px);
  border-color: rgba(129, 242, 255, 0.86);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.admin-stats article {
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(121, 247, 255, 0.13), transparent 42%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.7), 0 16px 38px rgba(0, 0, 0, 0.2);
}

.admin-stats span {
  display: block;
  color: var(--card-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--card-red);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.admin-toolbar > .ghost-button,
.admin-toolbar-actions .ghost-button {
  border-color: rgba(129, 242, 255, 0.32);
  background: rgba(2, 5, 4, 0.58);
  color: var(--text);
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.admin-toolbar-actions span {
  color: rgba(245, 255, 249, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.delivery-admin-page .admin-toolbar {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.delivery-admin-page .admin-toolbar h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.delivery-admin-page .admin-delivery-grid {
  grid-template-columns: minmax(0, 1fr);
}

.delivery-admin-page .admin-map-panel {
  min-height: min(76vh, 760px);
}

.delivery-admin-page .admin-mini-map {
  min-height: min(62vh, 640px);
}

.delivery-admin-page .admin-route-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-view-tabs {
  display: inline-grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 8px;
  width: min(1180px, 100%);
  margin-bottom: 18px;
  border: 1px solid rgba(129, 242, 255, 0.3);
  border-radius: var(--radius);
  padding: 6px;
  background: rgba(2, 5, 4, 0.66);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.admin-view-tab {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  background: transparent;
  color: rgba(245, 255, 249, 0.78);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.admin-view-tab span {
  display: inline-grid;
  min-width: 26px;
  min-height: 22px;
  place-items: center;
  margin-left: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.admin-view-tab:hover,
.admin-view-tab.is-active {
  border-color: rgba(129, 242, 255, 0.78);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.24), transparent 42%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  color: var(--card-red);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.56), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.admin-orders {
  display: grid;
  gap: 18px;
}

.admin-orders-compact {
  gap: 12px;
}

.admin-order-card {
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 22px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  color: var(--card-ink);
}

.admin-order-card.is-compact {
  padding: 14px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.66), 0 16px 38px rgba(0, 0, 0, 0.2);
}

.admin-order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-order-top h2 {
  margin: 0 0 6px;
  color: var(--card-red);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-order-card.is-compact .admin-order-top {
  align-items: center;
  margin-bottom: 12px;
}

.admin-order-card.is-compact .admin-order-top h2 {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1;
}

.admin-order-card.is-compact .admin-order-top span {
  font-size: 0.76rem;
}

.admin-order-top span {
  color: var(--card-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-order-status {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.admin-order-status span {
  border: 1px solid rgba(115, 255, 56, 0.35);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(115, 255, 56, 0.13);
  color: #24510e;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-order-status strong {
  color: var(--card-red);
  font-size: 1.2rem;
  white-space: nowrap;
}

.admin-order-card.is-compact .admin-order-status {
  gap: 6px;
}

.admin-order-card.is-compact .admin-order-status span {
  padding: 6px 10px;
}

.admin-order-card.is-compact .admin-order-status strong {
  font-size: 1rem;
}

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

.admin-compact-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(180px, 1.2fr) minmax(180px, 1.15fr) minmax(110px, 0.6fr);
  gap: 8px;
}

.admin-compact-grid div {
  border: 1px solid rgba(141, 16, 32, 0.14);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.5);
}

.admin-customer-grid div {
  border: 1px solid rgba(141, 16, 32, 0.14);
  border-radius: 8px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.5);
}

.admin-compact-grid span,
.admin-customer-grid span {
  display: block;
  color: var(--card-muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-compact-grid strong,
.admin-customer-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--card-ink);
  font-size: 0.88rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-compact-grid strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.admin-order-items {
  display: grid;
  gap: 10px;
}

.admin-order-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(141, 16, 32, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.56);
}

.admin-order-item h4 {
  margin: 0 0 4px;
  color: var(--card-red);
  font-size: 0.9rem;
}

.admin-order-item span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--card-muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.admin-order-item strong {
  color: var(--card-red);
  font-size: 0.88rem;
  white-space: nowrap;
}

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

.admin-order-actions .ghost-button {
  min-height: 40px;
  border-color: rgba(141, 16, 32, 0.24);
  background: rgba(255, 255, 255, 0.52);
  color: var(--card-red);
}

.danger-button {
  min-height: 42px;
  border: 1px solid rgba(141, 16, 32, 0.34);
  border-radius: 999px;
  padding: 0 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.14), transparent 40%),
    rgba(141, 16, 32, 0.1);
  color: var(--card-red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.danger-button:hover {
  border-color: rgba(141, 16, 32, 0.62);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.2), transparent 40%),
    rgba(141, 16, 32, 0.16);
  box-shadow: 0 10px 24px rgba(141, 16, 32, 0.16);
  transform: translateY(-1px);
}

.admin-order-card.is-compact .admin-order-actions {
  margin-top: 12px;
}

.admin-order-card.is-compact .primary-button {
  min-height: 40px;
  padding: 0 22px;
  font-size: 0.78rem;
}

.admin-section-toolbar,
.admin-map-headline,
.admin-modal-headline,
.admin-route-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.admin-section-toolbar {
  margin: 8px 0 16px;
}

.admin-section-toolbar h2,
.admin-map-headline h3,
.admin-route-topline h3,
.admin-modal-headline h2,
.admin-attention-block h3 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.admin-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-inline-warning,
.admin-inline-note {
  margin: 0 0 14px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 209, 102, 0.1);
  color: rgba(255, 248, 222, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.admin-inline-note {
  border-color: rgba(121, 247, 255, 0.22);
  background: rgba(121, 247, 255, 0.08);
  color: rgba(245, 255, 249, 0.78);
}

.admin-delivery-layout,
.admin-post-layout {
  display: grid;
  gap: 16px;
}

.admin-delivery-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 0.6fr);
  gap: 16px;
  align-items: stretch;
}

.admin-map-panel,
.admin-route-summary,
.admin-attention-block,
.admin-route-stop {
  border: 1px solid rgba(129, 242, 255, 0.7);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(121, 247, 255, 0.14), transparent 38%),
    rgba(6, 13, 12, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.admin-map-panel {
  min-height: 360px;
  padding: 16px;
}

.admin-map-panel.is-empty {
  display: grid;
  align-content: center;
  gap: 8px;
}

.admin-map-panel.is-empty h3,
.admin-map-panel.is-empty p:not(.eyebrow) {
  margin: 0;
}

.admin-map-headline {
  margin-bottom: 12px;
}

.admin-map-headline span {
  border: 1px solid rgba(115, 255, 56, 0.3);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-mini-map {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(245, 255, 249, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(115, 255, 56, 0.12), transparent 24%),
    rgba(2, 5, 4, 0.78);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.admin-mini-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.03);
  pointer-events: none;
  user-select: none;
}

.admin-map-tiles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: rgba(2, 5, 4, 0.8);
}

.admin-map-tile {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.admin-route-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.admin-route-svg polyline,
.admin-route-svg line {
  stroke: rgba(121, 247, 255, 0.92);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 5 4;
  fill: none;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.62));
}

.admin-route-svg marker path {
  fill: rgba(121, 247, 255, 0.96);
}

.admin-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.admin-map-marker {
  position: absolute;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: var(--green);
  color: #102206;
  font-size: 0.76rem;
  font-weight: 950;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.admin-map-attribution {
  margin: 8px 0 0;
  color: rgba(236, 255, 249, 0.58);
  font-size: 0.72rem;
}

.admin-map-marker.is-start {
  background: var(--warning);
  color: #2a2100;
}

.admin-map-marker.is-failed {
  background: var(--hot);
  color: #fff;
}

.admin-route-segment-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: min(210px, 42vw);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(2, 5, 4, 0.24);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(2, 5, 4, 0.82);
  color: rgba(245, 255, 249, 0.9);
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.34);
}

.admin-route-segment-badge strong {
  color: var(--green-2);
  font-size: 0.62rem;
}

.admin-route-leg-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.admin-route-leg-list article {
  border: 1px solid rgba(245, 255, 249, 0.14);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-route-leg-list span,
.admin-route-leg-list small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-route-leg-list strong {
  display: block;
  margin: 4px 0 2px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.1;
}

.admin-route-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.admin-route-summary article {
  border: 1px solid rgba(245, 255, 249, 0.14);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-route-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-route-summary strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 1.2rem;
}

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

.admin-route-stop {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.admin-route-stop.is-failed {
  border-color: rgba(255, 79, 216, 0.52);
}

.admin-route-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #102206;
  font-weight: 950;
}

.admin-route-body {
  min-width: 0;
}

.admin-route-topline {
  margin-bottom: 12px;
}

.admin-route-topline h3 {
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.admin-status-badge {
  border: 1px solid rgba(121, 247, 255, 0.25);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(121, 247, 255, 0.1);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-status-badge.status-failed {
  border-color: rgba(255, 79, 216, 0.34);
  background: rgba(255, 79, 216, 0.12);
  color: #ffd7f5;
}

.admin-status-badge.status-out_for_delivery {
  border-color: rgba(115, 255, 56, 0.35);
  background: rgba(115, 255, 56, 0.12);
  color: var(--green-2);
}

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

.admin-route-grid div {
  border: 1px solid rgba(245, 255, 249, 0.12);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-route-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-route-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-route-note {
  margin: 12px 0 0;
  border-left: 3px solid var(--warning);
  padding-left: 10px;
  color: rgba(255, 248, 222, 0.9);
  font-weight: 800;
}

.admin-attention-block {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-color: rgba(255, 209, 102, 0.42);
}

.admin-attention-block article {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 209, 102, 0.18);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 209, 102, 0.08);
}

.admin-attention-block strong,
.admin-attention-block span,
.admin-attention-block small {
  overflow-wrap: anywhere;
}

.admin-attention-block small {
  color: rgba(255, 248, 222, 0.74);
}

.admin-order-card.is-post-card .admin-order-top h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
}

.admin-modal-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.admin-modal-card {
  display: grid;
  width: min(720px, 100%);
  max-height: min(92vh, 780px);
  overflow: auto;
  gap: 16px;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 22px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  color: var(--card-ink);
}

.admin-modal-card label {
  display: grid;
  gap: 7px;
  color: var(--card-red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-modal-card small {
  color: var(--card-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: none;
}

.admin-modal-card input,
.admin-modal-card textarea {
  width: 100%;
  border: 1px solid rgba(141, 16, 32, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--card-ink);
  font: inherit;
  font-weight: 700;
}

.admin-modal-card textarea {
  resize: vertical;
}

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

.admin-checkbox-line {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(141, 16, 32, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.admin-checkbox-line input {
  width: auto;
}

.admin-copy-box {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(141, 16, 32, 0.14);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.admin-copy-box span {
  color: var(--card-muted);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-copy-box p {
  margin: 0;
  color: var(--card-ink);
  font-weight: 800;
  line-height: 1.35;
}

.admin-copy-box .ghost-button {
  justify-self: start;
  border-color: rgba(141, 16, 32, 0.24);
  color: var(--card-red);
}

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

.admin-history-layout {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-history-list {
  display: grid;
  gap: 8px;
  max-height: 620px;
  overflow: auto;
  border: 1px solid rgba(129, 242, 255, 0.34);
  border-radius: var(--radius);
  padding: 10px;
  background:
    radial-gradient(circle at 100% 0, rgba(115, 255, 56, 0.12), transparent 42%),
    rgba(2, 5, 4, 0.68);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.admin-history-number {
  min-height: 44px;
  border: 1px solid rgba(129, 242, 255, 0.28);
  border-radius: 9px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 255, 249, 0.88);
  font-size: 0.85rem;
  font-weight: 950;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-history-number:hover,
.admin-history-number.is-active {
  border-color: rgba(129, 242, 255, 0.88);
  background: linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  color: var(--card-red);
  transform: translateY(-1px);
}

.admin-history-detail {
  min-width: 0;
}

.admin-history-detail .admin-order-card {
  margin: 0;
}

.history-empty {
  min-height: 320px;
}

.admin-chat-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-chat-list {
  display: grid;
  gap: 8px;
  max-height: 660px;
  overflow: auto;
  border: 1px solid rgba(129, 242, 255, 0.34);
  border-radius: var(--radius);
  padding: 10px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.12), transparent 42%),
    rgba(2, 5, 4, 0.68);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.admin-chat-thread {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(129, 242, 255, 0.28);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 255, 249, 0.9);
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-chat-thread:hover,
.admin-chat-thread.is-active {
  border-color: rgba(129, 242, 255, 0.88);
  background: linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  color: var(--card-red);
  transform: translateY(-1px);
}

.admin-chat-thread.is-closed {
  border-color: rgba(141, 16, 32, 0.68);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.2), transparent 38%),
    rgba(141, 16, 32, 0.28);
  color: #fff0f1;
}

.admin-chat-thread.is-closed.is-active,
.admin-chat-thread.is-closed:hover {
  border-color: rgba(255, 172, 172, 0.92);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.2), transparent 38%),
    linear-gradient(145deg, #fff6ed, #f4d5cb);
  color: var(--card-red);
}

.admin-chat-thread span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.admin-chat-thread strong {
  font-size: 0.92rem;
  line-height: 1.15;
}

.admin-chat-thread em {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 950;
}

.admin-chat-thread small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-chat-thread p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: currentColor;
  opacity: 0.82;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.28;
}

.admin-chat-card {
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 22px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  color: var(--card-ink);
}

.admin-chat-card.is-closed {
  border-color: rgba(141, 16, 32, 0.72);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.18), transparent 34%),
    linear-gradient(145deg, #fff1e8, #f2cfc8);
  box-shadow: 0 0 0 5px rgba(141, 16, 32, 0.16), 0 20px 46px rgba(141, 16, 32, 0.22);
}

.admin-chat-headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-chat-headline h2 {
  margin: 0 0 6px;
  color: var(--card-red);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-chat-headline span {
  color: var(--card-muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-chat-headline .ghost-button {
  min-height: 40px;
  border-color: rgba(141, 16, 32, 0.22);
  background: rgba(255, 255, 255, 0.52);
  color: var(--card-red);
}

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

.admin-chat-closed-actions .ghost-button {
  min-height: 42px;
  border-color: rgba(141, 16, 32, 0.24);
  background: rgba(255, 255, 255, 0.58);
  color: var(--card-red);
}

.admin-chat-closed-note {
  margin-top: 14px;
  border: 1px solid rgba(141, 16, 32, 0.16);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--card-red);
  font-weight: 900;
}

.admin-chat-closed-note p {
  margin: 0;
}

.admin-chat-messages {
  display: grid;
  gap: 10px;
  max-height: 430px;
  overflow: auto;
  border: 1px solid rgba(141, 16, 32, 0.12);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.admin-chat-message {
  width: fit-content;
  max-width: 82%;
  border: 1px solid rgba(141, 16, 32, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-chat-message.is-admin {
  justify-self: end;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.16), transparent 40%),
    rgba(255, 248, 226, 0.86);
}

.admin-chat-message.is-customer {
  justify-self: start;
  border-color: rgba(129, 242, 255, 0.5);
}

.admin-chat-message span {
  display: block;
  margin-bottom: 5px;
  color: var(--card-muted);
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-chat-message p {
  margin: 0;
  color: var(--card-ink);
  font-weight: 830;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.admin-chat-reply {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.admin-chat-reply .primary-button {
  justify-self: end;
}

.admin-review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(129, 242, 255, 0.42);
  border-radius: var(--radius);
  padding: 14px 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.12), transparent 36%),
    rgba(2, 5, 4, 0.68);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.admin-review-toolbar h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-review-toolbar .ghost-button,
.admin-review-selector .ghost-button {
  border-color: rgba(129, 242, 255, 0.32);
  background: rgba(2, 5, 4, 0.58);
  color: var(--text);
}

.admin-review-selector {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(141, 16, 32, 0.26);
  border-radius: var(--radius);
  padding: clamp(14px, 3vw, 20px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.12), transparent 36%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  color: var(--card-ink);
  box-shadow: var(--poster-shadow);
}

.admin-review-selector h3 {
  margin: 0;
  color: var(--card-red);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  text-transform: uppercase;
}

.admin-review-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.admin-review-options label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(141, 16, 32, 0.14);
  border-radius: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.admin-review-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--card-red);
}

.admin-review-options strong,
.admin-review-options small {
  display: block;
}

.admin-review-options strong {
  color: var(--card-red);
  font-size: 0.84rem;
  line-height: 1.25;
}

.admin-review-options small {
  margin-top: 3px;
  color: var(--card-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

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

.admin-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.admin-review-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(129, 242, 255, 0.86);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 22px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 157, 39, 0.14), transparent 34%),
    linear-gradient(145deg, var(--card-paper), var(--card-paper-2));
  box-shadow: var(--poster-shadow);
  color: var(--card-ink);
}

.admin-review-card h2 {
  margin: 0 0 4px;
  color: var(--card-red);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.admin-review-card span {
  color: var(--card-muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.admin-review-card strong {
  color: #f7a318;
  font-size: 1.55rem;
  letter-spacing: 1px;
  text-shadow: 0 8px 20px rgba(141, 16, 32, 0.18);
}

.admin-review-card p:not(.eyebrow) {
  margin: 0;
  color: var(--card-muted);
  font-weight: 830;
  line-height: 1.55;
}

@media (max-width: 1020px) {
  .product-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-statement,
  .products-hero .page-inner,
  .about-hero .page-inner,
  .checkout-hero .page-inner,
  .admin-hero .page-inner,
  .combo-hero-grid,
  .combo-builder-layout,
  .checkout-layout,
  .combo-feature-card,
  .about-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .about-visual {
    position: relative;
    top: 0;
    min-height: 440px;
  }

  .combo-box-card {
    position: relative;
    top: 0;
  }

  .checkout-summary {
    position: relative;
    top: 0;
  }

  .admin-customer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-toolbar,
  .admin-delivery-grid,
  .admin-history-layout,
  .admin-chat-layout {
    grid-template-columns: 1fr;
  }

  .admin-toolbar-actions {
    justify-content: flex-start;
  }

  .admin-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 132px;
    --site-bg-size: min(980px, 240vw) auto;
    --site-bg-attachment: scroll;
    --site-bg-repeat: repeat-y;
  }

  .header-shell {
    width: min(100% - 20px, 720px);
    min-height: 120px;
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 28px;
  }

  .nav-links {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 30px;
    padding: 0 5px;
    font-size: 0.64rem;
    white-space: nowrap;
  }

  .brand-lockup {
    top: 8px;
    width: 86px;
    height: 44px;
    transform: translateX(-50%);
  }

  .brand-logo {
    width: 72px;
    height: 36px;
  }

  .header-actions {
    align-self: start;
    gap: 6px;
  }

  .header-search {
    position: absolute;
    top: 54px;
    right: 58px;
    left: 12px;
    width: auto;
    min-height: 30px;
    padding: 0 10px;
  }

  .header-search svg {
    width: 14px;
    height: 14px;
  }

  .header-search input {
    padding-left: 6px;
    font-size: 0.72rem;
  }

  .header-search-results {
    top: calc(100% + 8px);
    right: 8px;
    left: 8px;
    width: auto;
    max-height: min(420px, calc(100vh - var(--header-h) - 24px));
  }

  .header-result-card {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 66px;
  }

  .header-result-thumb {
    width: 50px;
    height: 50px;
  }

  .header-result-info strong {
    font-size: 0.75rem;
  }

  .header-result-price {
    font-size: 0.72rem;
  }

  .cart-trigger {
    align-self: start;
    width: 42px;
    height: 42px;
    margin-top: 8px;
  }

  .hero-overlay {
    padding-bottom: 100px;
  }

  .hero::after {
    height: 32%;
    background:
      linear-gradient(180deg, rgba(2, 4, 3, 0), rgba(2, 4, 3, 0.1) 62%, rgba(2, 4, 3, 0.18)),
      radial-gradient(ellipse at center, rgba(2, 4, 3, 0), rgba(2, 4, 3, 0.08));
  }

  .hero-video {
    object-position: center top;
    transform: scale(1.01);
    transform-origin: center top;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 19vw, 5.7rem);
  }

  .video-control,
  .video-sound-control {
    right: 16px;
  }

  .video-control {
    bottom: 20px;
  }

  .video-sound-control {
    bottom: 74px;
  }

  .hero-scroll-cue {
    left: 16px;
    bottom: 20px;
    transform: none;
  }

  .hero-scroll-cue:hover {
    transform: translateY(-2px);
  }

  .intro-band {
    margin-top: -1px;
    padding: 30px 0 24px;
    background:
      linear-gradient(180deg, rgba(2, 4, 3, 0.34), rgba(2, 4, 3, 0.42) 44%, rgba(2, 4, 3, 0.5)),
      var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat) var(--site-bg-attachment);
  }

  .section-block {
    padding: 36px 0;
    background:
      linear-gradient(180deg, rgba(2, 4, 3, 0.42), rgba(2, 4, 3, 0.58)),
      var(--site-bg) var(--site-bg-position) / var(--site-bg-size) var(--site-bg-repeat) var(--site-bg-attachment);
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading,
  .footer-inner,
  .shop-toolbar,
  .admin-review-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-category-tabs {
    width: 100%;
  }

  .shop-tab {
    flex: 1;
  }

  .shop-search-row {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-search,
  .shop-search-row > span {
    width: 100%;
  }

  .checkout-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .admin-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .admin-toolbar,
  .admin-history-layout,
  .admin-chat-layout {
    grid-template-columns: 1fr;
  }

  .admin-stats,
  .admin-customer-grid,
  .admin-compact-grid,
  .admin-route-grid,
  .admin-route-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .admin-stats article,
  .admin-route-summary article,
  .admin-customer-grid div,
  .admin-compact-grid div,
  .admin-route-grid div {
    padding: 9px;
  }

  .admin-stats article {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.62), 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .admin-stats span,
  .admin-route-summary span,
  .admin-customer-grid span,
  .admin-compact-grid span,
  .admin-route-grid span {
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .admin-stats strong,
  .admin-route-summary strong {
    margin-top: 5px;
    font-size: 1.02rem;
  }

  .admin-customer-grid strong,
  .admin-compact-grid strong,
  .admin-route-grid strong {
    font-size: 0.74rem;
    line-height: 1.18;
  }

  .admin-wide {
    grid-column: 1 / -1;
  }

  .admin-view-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    overflow: visible;
  }

  .admin-view-tab {
    min-width: 0;
    padding: 9px 7px;
    font-size: 0.66rem;
    line-height: 1.05;
  }

  .admin-view-tab span {
    min-width: 20px;
    min-height: 18px;
    margin-left: 4px;
    font-size: 0.62rem;
  }

  .admin-order-card {
    padding: 12px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.66), 0 14px 32px rgba(0, 0, 0, 0.2);
  }

  .admin-order-card.is-compact {
    padding: 10px;
  }

  .admin-order-top {
    gap: 8px;
    margin-bottom: 10px;
  }

  .admin-order-top {
    flex-direction: column;
  }

  .admin-order-top h2,
  .admin-order-card.is-post-card .admin-order-top h2 {
    font-size: clamp(1.05rem, 6vw, 1.45rem);
    line-height: 1;
  }

  .admin-order-card.is-compact .admin-order-top h2 {
    font-size: 0.98rem;
  }

  .admin-order-status {
    justify-items: start;
    gap: 5px;
  }

  .admin-order-status span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .admin-order-status strong {
    font-size: 0.98rem;
  }

  .admin-order-item {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
  }

  .admin-order-item h4 {
    font-size: 0.78rem;
  }

  .admin-order-item span {
    font-size: 0.66rem;
  }

  .admin-order-item strong {
    font-size: 0.76rem;
  }

  .admin-order-item strong {
    grid-column: auto;
  }

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

  .stats-strip,
  .products-page .product-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-media {
    height: 170px;
    padding: 18px 12px 10px;
  }

  .product-media img,
  .snack-card .product-media img {
    width: min(84%, 170px);
    max-height: 148px;
  }

  .product-body {
    gap: 10px;
    padding: 12px;
  }

  .product-title {
    min-height: 42px;
    font-size: 0.8rem;
    line-height: 1.18;
  }

  .price {
    font-size: 0.95rem;
  }

  .pack-label,
  .unit-price-note {
    font-size: 0.62rem;
  }

  .card-actions {
    gap: 7px;
  }

  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-stepper {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions a {
    width: 100%;
  }

  .combo-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .combo-feature-actions .primary-button,
  .combo-feature-actions span {
    width: 100%;
    justify-content: center;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .combo-hero {
    padding-top: calc(var(--header-h) + 58px);
  }

  .combo-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .combo-hero .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .combo-hero .primary-button,
  .combo-price {
    width: 100%;
    justify-content: center;
  }

  .combo-hero-card {
    padding: 7px;
  }

  .combo-hero-card img {
    max-height: 260px;
  }

  .combo-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .combo-picker-media {
    height: 145px;
  }

  .combo-picker-body h3 {
    min-height: 56px;
  }

  .combo-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-section-toolbar,
  .admin-map-headline,
  .admin-modal-headline,
  .admin-route-topline,
  .admin-order-top {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-route-stop {
    grid-template-columns: 1fr;
  }

  .admin-route-index {
    width: 36px;
    height: 36px;
  }

  .admin-modal-grid {
    grid-template-columns: 1fr;
  }

  .admin-modal-actions,
  .admin-order-actions {
    justify-content: stretch;
  }

  .admin-modal-actions .primary-button,
  .admin-modal-actions .ghost-button,
  .admin-modal-actions .danger-button,
  .admin-order-actions .primary-button,
  .admin-order-actions .ghost-button,
  .admin-order-actions .danger-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .page-inner,
  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-links a {
    padding: 0 4px;
    font-size: 0.55rem;
  }

  .brand-lockup {
    width: 66px;
    height: 36px;
  }

  .brand-logo {
    width: 56px;
    height: 30px;
  }

  .cart-trigger {
    width: 38px;
    height: 38px;
  }

  .cart-panel {
    width: 100%;
  }

  .chat-fab {
    right: 18px;
    bottom: 126px;
    width: 52px;
    height: 52px;
  }

  .chat-panel {
    width: 100%;
  }

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

  .admin-stats,
  .admin-customer-grid,
  .admin-compact-grid,
  .admin-route-grid,
  .admin-route-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .products-page .product-grid,
  .benefit-grid {
    gap: 8px;
  }

  .product-media {
    height: 145px;
    padding: 14px 8px 8px;
  }

  .product-media img,
  .snack-card .product-media img {
    max-height: 128px;
  }

  .product-body {
    gap: 8px;
    padding: 10px;
  }

  .product-title {
    min-height: 40px;
    font-size: 0.72rem;
  }

  .price {
    font-size: 0.84rem;
  }

  .add-button,
  .mini-button {
    font-size: 0.66rem;
  }

  .admin-wide {
    grid-column: 1 / -1;
  }

  .admin-mini-map {
    min-height: 220px;
  }

  .admin-route-segment-badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
