:root {
  color-scheme: dark;
  --ink: #f8d46a;
  --gold: #f5c84b;
  --gold-soft: #a9822d;
  --muted: #927d4d;
  --paper: rgba(245, 200, 75, 0.07);
  --paper-strong: rgba(245, 200, 75, 0.14);
  --line: rgba(245, 200, 75, 0.2);
  --charcoal: #0b0b08;
  --black: #000;
  --copper: #f19b3a;
  --citron: #f5c84b;
  --aqua: #00f0ff;
  --acid: #61ff9b;
  --violet: #ff4fd8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.76);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 200, 75, 0.14), transparent 18rem),
    radial-gradient(circle at 94% 28%, rgba(255, 79, 216, 0.12), transparent 16rem),
    radial-gradient(circle at 18% 70%, rgba(0, 240, 255, 0.08), transparent 18rem),
    #000;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(245, 200, 75, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 200, 75, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 7px
    );
  opacity: 0.13;
}

button {
  font: inherit;
}

.tap-ripple {
  position: absolute;
  z-index: 4;
  width: var(--tap-size, 80px);
  height: var(--tap-size, 80px);
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 247, 214, 0.72) 0%, rgba(255, 226, 122, 0.34) 28%, rgba(0, 240, 255, 0.14) 48%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.22);
  animation: tap-bloom 560ms ease-out forwards;
}

.section-arrival-glow {
  animation: arrival-glow 880ms ease-out;
}

.is-tap-active {
  filter: brightness(1.08) saturate(1.08);
}

.app-shell {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 12px 14px 48px;
}

.masthead {
  position: relative;
  overflow: hidden;
  margin-right: -14px;
  margin-left: -14px;
  min-height: 40svh;
  padding: 0;
  background: image-set(
      url("assets/city-labs-cyber-square-logo-540w.webp") 1x,
      url("assets/city-labs-cyber-square-logo-768w.webp") 1.5x,
      url("assets/city-labs-cyber-square-logo.webp") 2x
    )
    center center / cover no-repeat;
  border-bottom: 1px solid rgba(213, 169, 73, 0.22);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.78);
}

.masthead::before,
.masthead::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.masthead::before {
  display: none;
}

.masthead::after {
  display: none;
}

.menu-toggle {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 25;
  display: grid;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(255, 224, 122, 0.84);
  border-radius: 999px;
  clip-path: circle(50%);
  background-clip: padding-box;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 24%),
    radial-gradient(circle at 74% 78%, rgba(255, 79, 216, 0.26), transparent 38%),
    linear-gradient(145deg, rgba(255, 226, 122, 0.34), rgba(130, 78, 7, 0.16)),
    rgba(8, 8, 6, 0.86);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(245, 200, 75, 0.34),
    0 0 20px rgba(255, 79, 216, 0.12),
    inset 0 0 0 1px rgba(255, 241, 168, 0.2);
  color: #fff;
  cursor: pointer;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border-radius: inherit;
}

.menu-toggle::before {
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28) 34%, transparent 52%);
  opacity: 0.42;
  transform: translateX(-58%);
  transition: transform 360ms ease, opacity 180ms ease;
}

.menu-toggle::after {
  inset: 10px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  box-shadow: inset 0 0 14px rgba(0, 240, 255, 0.08);
}

.menu-toggle:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(255, 238, 166, 0.94);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.54),
    0 0 28px rgba(245, 200, 75, 0.42),
    0 0 22px rgba(255, 79, 216, 0.2),
    inset 0 0 0 1px rgba(255, 241, 168, 0.24);
}

.menu-toggle:hover::before,
.menu-toggle[aria-expanded="true"]::before {
  opacity: 0.66;
  transform: translateX(58%);
}

.menu-toggle[aria-expanded="true"] {
  border-color: rgba(0, 240, 255, 0.62);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 70% 76%, rgba(0, 240, 255, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(255, 79, 216, 0.3), rgba(245, 200, 75, 0.18)),
    rgba(8, 8, 6, 0.9);
}

.menu-toggle > span:not(.tap-ripple) {
  position: relative;
  z-index: 2;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff7d6, #ffd85b, #c88b21);
  box-shadow: 0 0 12px rgba(245, 200, 75, 0.64);
  transition: transform 180ms ease, opacity 160ms ease, background 180ms ease;
}

.menu-toggle:focus,
.menu-toggle:focus-visible {
  outline: 0;
}

.menu-toggle[aria-expanded="true"] > span:not(.tap-ripple) {
  background: linear-gradient(90deg, #fff, #8ff9ff, #ff7ee7);
  box-shadow:
    0 0 12px rgba(0, 240, 255, 0.54),
    0 0 10px rgba(255, 79, 216, 0.32);
}

.menu-toggle[aria-expanded="true"] > span:not(.tap-ripple):nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:not(.tap-ripple):nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.menu-toggle[aria-expanded="true"] > span:not(.tap-ripple):nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle.is-tap-active {
  transform: scale(0.94);
}

.category-menu[hidden] {
  display: none;
}

.category-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  background:
    radial-gradient(circle at 88% 14%, rgba(245, 200, 75, 0.28), transparent 15rem),
    radial-gradient(circle at 18% 82%, rgba(0, 240, 255, 0.16), transparent 16rem),
    radial-gradient(circle at 92% 76%, rgba(255, 79, 216, 0.14), transparent 15rem),
    rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(11px);
  overscroll-behavior: contain;
}

body.category-menu-open {
  overflow: hidden;
}

.category-menu-panel {
  position: relative;
  width: min(100%, 390px);
  max-height: calc(100svh - 20px);
  overflow: hidden auto;
  border: 1px solid rgba(255, 226, 122, 0.48);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 226, 122, 0.16), transparent 13rem),
    radial-gradient(circle at 96% 12%, rgba(255, 79, 216, 0.13), transparent 12rem),
    radial-gradient(circle at 18% 92%, rgba(0, 240, 255, 0.1), transparent 13rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(7, 8, 10, 0.94);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.76),
    0 0 34px rgba(245, 200, 75, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.category-menu:not([hidden]) .category-menu-panel {
  animation: menu-panel-in 260ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.category-menu-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
}

.category-menu-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid rgba(245, 200, 75, 0.24);
  background:
    linear-gradient(180deg, rgba(12, 10, 6, 0.98), rgba(8, 8, 9, 0.88));
  backdrop-filter: blur(16px);
}

.category-menu-kicker {
  margin: 0 0 3px;
  color: #8ff9ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(0, 240, 255, 0.44),
    0 0 18px rgba(255, 79, 216, 0.18);
}

.category-menu-head h2 {
  margin: 0;
  color: #fff7d6;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(245, 200, 75, 0.28);
}

.category-menu-close {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(255, 226, 122, 0.38);
  border-radius: 999px;
  clip-path: circle(50%);
  background-clip: padding-box;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.26), transparent 36%),
    rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow:
    0 0 16px rgba(245, 200, 75, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-menu-close:hover {
  transform: rotate(90deg) scale(1.05);
  border-color: rgba(255, 126, 231, 0.62);
  box-shadow:
    0 0 18px rgba(255, 79, 216, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.category-menu-close:focus,
.category-menu-close:focus-visible {
  outline: 0;
}

.category-menu-close:focus-visible {
  box-shadow:
    0 0 0 3px rgba(245, 200, 75, 0.2),
    0 0 20px rgba(255, 79, 216, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.category-menu-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.category-group {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 75, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 94% 18%, rgba(255, 79, 216, 0.11), transparent 8rem),
    linear-gradient(145deg, rgba(245, 200, 75, 0.09), rgba(0, 240, 255, 0.04)),
    rgba(0, 0, 0, 0.36);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-menu:not([hidden]) .category-group {
  animation: menu-item-in 320ms ease both;
}

.category-menu:not([hidden]) .category-group:nth-child(1) {
  animation-delay: 35ms;
}

.category-menu:not([hidden]) .category-group:nth-child(2) {
  animation-delay: 80ms;
}

.category-menu:not([hidden]) .category-group:nth-child(3) {
  animation-delay: 125ms;
}

.category-group::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transform: translateX(-70%);
  transition: transform 360ms ease, opacity 180ms ease;
}

.category-group:hover,
.category-group.is-open {
  transform: translateY(-1px);
  border-color: rgba(255, 226, 122, 0.44);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(245, 200, 75, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.category-group:hover::before,
.category-group.is-open::before {
  opacity: 1;
  transform: translateX(70%);
}

.category-trigger {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 10px;
  background: transparent;
  color: #fff7d6;
  text-align: left;
  cursor: pointer;
}

.category-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 226, 122, 0.44);
  border-radius: 12px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(245, 200, 75, 0.2), rgba(255, 79, 216, 0.08)),
    rgba(245, 200, 75, 0.1);
  color: var(--gold);
  box-shadow:
    0 0 16px rgba(245, 200, 75, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.category-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.category-title {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(245, 200, 75, 0.12);
}

.category-meta {
  display: block;
  margin-top: 2px;
  color: rgba(255, 247, 214, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-chevron {
  display: none;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 226, 122, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--gold);
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.category-trigger:hover .category-icon,
.category-trigger[aria-expanded="true"] .category-icon {
  transform: scale(1.05) rotate(-3deg);
  color: #8ff9ff;
  box-shadow:
    0 0 18px rgba(0, 240, 255, 0.2),
    0 0 16px rgba(245, 200, 75, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.category-trigger[aria-expanded="true"] .category-chevron {
  transform: rotate(90deg);
  border-color: rgba(0, 240, 255, 0.36);
  color: #8ff9ff;
}

.category-brand-list {
  display: grid;
  grid-template-columns: repeat(2, 142px);
  justify-content: center;
  column-gap: 12px;
  row-gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  transition:
    max-height 240ms ease,
    padding 180ms ease;
}

.category-group.is-open .category-brand-list {
  max-height: 1200px;
  padding: 0 10px 12px;
}

.category-brand {
  position: relative;
  display: block;
  width: 142px;
  height: 138px;
  min-height: 138px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 200, 75, 0.14), transparent 5.2rem),
    radial-gradient(circle at 92% 12%, rgba(0, 240, 255, 0.08), transparent 5rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  outline: 0;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.category-brand img,
.category-brand-placeholder {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(245, 200, 75, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2), transparent 48%),
    linear-gradient(135deg, rgba(245, 200, 75, 0.22), rgba(0, 240, 255, 0.14));
  object-fit: cover;
  box-shadow:
    0 0 14px rgba(245, 200, 75, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.category-brand-badge-well {
  position: absolute;
  top: 12px;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: visible;
  border-radius: 999px;
  transform: translateX(-50%);
  background: transparent;
  box-shadow: none;
}

.category-brand-badge-well::before {
  display: none;
  content: none;
}

.category-brand img.category-brand-badge {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 92px;
  height: 92px;
  max-width: none;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: transparent;
  object-fit: contain;
  filter: none;
  box-shadow: none !important;
}

.category-brand[href]:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 226, 122, 0.36);
  background:
    radial-gradient(circle at 96% 12%, rgba(255, 79, 216, 0.12), transparent 6rem),
    linear-gradient(135deg, rgba(245, 200, 75, 0.12), rgba(0, 240, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.26),
    0 0 18px rgba(245, 200, 75, 0.1);
}

.category-brand-copy {
  position: absolute;
  top: 106px;
  right: 8px;
  left: 8px;
  display: grid;
  width: auto;
  min-width: 0;
  height: 26px;
  align-content: center;
  justify-items: center;
}

.category-brand-name {
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: clamp(0.64rem, 2.65vw, 0.76rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.category-brand-note {
  display: none;
}

.category-brand-action {
  display: none;
}

.category-brand--disabled {
  opacity: 0.78;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(245, 200, 75, 0.42);
}

h1,
h2,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-logo {
  display: none;
}

.masthead-copy {
  color: #b79a55;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: right;
}

.section-bubbles {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.section-bubble {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 104px 34px;
  align-items: center;
  min-height: 74px;
  overflow: hidden;
  padding: 10px 10px 10px 12px;
  border: 1px solid rgba(245, 200, 75, 0.16);
  border-radius: 8px;
  color: #ffe27a;
  text-decoration: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 56%, rgba(245, 200, 75, 0.1) 100%),
    #050503;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.04) inset,
    0 14px 34px rgba(0, 0, 0, 0.42);
}

.section-bubble--disposables {
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: start;
  min-height: 150px;
  padding: 15px 10px 13px 16px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 58%, rgba(0, 0, 0, 0.58) 70%, rgba(0, 0, 0, 0.08) 88%),
    image-set(
      url("assets/disposables-bubble-banner-v3-700w.webp") 1x,
      url("assets/disposables-bubble-banner-v3-1000w.webp") 1.5x,
      url("assets/disposables-bubble-banner-v3.webp") 2x
    ) right center / auto 116% no-repeat;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.08) inset,
    0 0 20px rgba(245, 200, 75, 0.2),
    0 0 42px rgba(245, 200, 75, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.54);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-bubble--disposables::before {
  opacity: 0.08;
}

.section-bubble--disposables::after {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  box-shadow:
    0 0 18px rgba(245, 200, 75, 0.22),
    0 0 34px rgba(245, 200, 75, 0.13);
}

.section-bubble--disposables:hover {
  border-color: rgba(245, 200, 75, 0.34);
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.14) inset,
    0 0 26px rgba(245, 200, 75, 0.26),
    0 0 56px rgba(245, 200, 75, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.54);
  transform: translateY(-1px);
}

.section-bubble--disposables:active {
  transform: translateY(0) scale(0.99);
}

.section-bubble--disposables .section-icon {
  display: none;
}

.section-bubble--disposables .section-copy {
  width: min(100%, 214px);
  padding-right: 0;
}

.section-bubble--edibles {
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: start;
  min-height: 150px;
  padding: 15px 10px 13px 16px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 44%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.04) 82%),
    image-set(
      url("assets/edibles-bubble-banner-v3-700w.webp") 1x,
      url("assets/edibles-bubble-banner-v3-1000w.webp") 1.5x,
      url("assets/edibles-bubble-banner-v3.webp") 2x
    ) 62% center / auto 116% no-repeat;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.08) inset,
    0 0 20px rgba(245, 200, 75, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.52);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-bubble--edibles:hover {
  border-color: rgba(245, 200, 75, 0.34);
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.14) inset,
    0 0 28px rgba(245, 200, 75, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.54);
  transform: translateY(-1px);
}

.section-bubble--edibles:active {
  transform: translateY(0) scale(0.99);
}

.section-bubble--edibles .section-icon {
  display: none;
}

.section-bubble--edibles .section-copy {
  width: min(100%, 214px);
  padding-right: 0;
}

.section-bubble--edibles .section-visual {
  display: none;
}

.section-bubble--edibles .section-arrow {
  align-self: center;
  justify-self: end;
  width: 38px;
  height: 38px;
  border-color: rgba(245, 200, 75, 0.34);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 226, 122, 0.28), transparent 40%),
    rgba(0, 0, 0, 0.56);
  box-shadow:
    0 0 18px rgba(245, 200, 75, 0.28),
    0 0 0 1px rgba(245, 200, 75, 0.08) inset;
}

.section-bubble--concentrates {
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: start;
  min-height: 150px;
  padding: 15px 10px 13px 16px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 52%, rgba(0, 0, 0, 0.52) 66%, rgba(0, 0, 0, 0.08) 86%),
    image-set(
      url("assets/concentrates-bubble-banner-v1-700w.webp") 1x,
      url("assets/concentrates-bubble-banner-v1-1000w.webp") 1.5x,
      url("assets/concentrates-bubble-banner-v1.webp") 2x
    ) right center / auto 116% no-repeat;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.08) inset,
    0 0 20px rgba(245, 200, 75, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.52);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-bubble--concentrates:hover {
  border-color: rgba(245, 200, 75, 0.34);
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.14) inset,
    0 0 28px rgba(245, 200, 75, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.54);
  transform: translateY(-1px);
}

.section-bubble--concentrates:active {
  transform: translateY(0) scale(0.99);
}

.section-bubble.is-tap-active {
  transform: translateY(1px) scale(0.985);
}

.section-bubble--concentrates .section-icon,
.section-bubble--concentrates .section-visual {
  display: none;
}

.section-bubble--concentrates .section-copy {
  width: min(100%, 214px);
  padding-right: 0;
}

.concentrate-types {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  width: min(100%, 182px);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(245, 200, 75, 0.14);
}

.concentrate-types span {
  display: grid;
  grid-template-columns: 128px 48px;
  align-items: baseline;
  gap: 6px;
  color: #fff3b8;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 0 14px rgba(245, 200, 75, 0.2);
}

.concentrate-types strong {
  overflow: hidden;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concentrate-types em {
  color: #bda15a;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
}

.concentrate-types b {
  color: #ffe27a;
  font-size: 0.86rem;
  font-weight: 950;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(245, 200, 75, 0.28);
}

.section-bubble--concentrates .section-arrow {
  align-self: center;
  justify-self: end;
  width: 38px;
  height: 38px;
  border-color: rgba(245, 200, 75, 0.34);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 226, 122, 0.28), transparent 40%),
    rgba(0, 0, 0, 0.56);
  box-shadow:
    0 0 18px rgba(245, 200, 75, 0.28),
    0 0 0 1px rgba(245, 200, 75, 0.08) inset;
}

.section-bubble::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0%, rgba(245, 200, 75, 0.12) 52%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px);
  opacity: 0.42;
}

.section-bubble::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--section-accent, #f5c84b));
  box-shadow: 0 0 18px var(--section-accent, #f5c84b);
}

.section-icon,
.section-copy,
.section-visual,
.section-arrow {
  position: relative;
  z-index: 1;
}

.section-icon {
  display: grid;
  width: 26px;
  height: 42px;
  place-items: center;
  border-left: 2px solid var(--section-accent, #f5c84b);
  color: #f7d86d;
}

.section-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.section-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.section-title {
  overflow: hidden;
  color: #fff4bf;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-note {
  overflow: hidden;
  color: #8c7b54;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-tiers {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(245, 200, 75, 0.14);
}

.price-tiers span {
  display: grid;
  grid-template-columns: 128px 48px 28px;
  align-items: baseline;
  gap: 6px;
  min-height: 20px;
  color: #bda15a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.price-tiers strong {
  color: #fff3b8;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-tiers em {
  color: #bda15a;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
}

.price-tiers b {
  margin-left: 0;
  color: #ffe27a;
  font-size: 0.86rem;
  font-weight: 950;
  text-shadow: 0 0 12px rgba(245, 200, 75, 0.28);
  white-space: nowrap;
}

.price-tiers small {
  color: #c9ad66;
  font-size: 0.68rem;
  font-weight: 850;
}

.section-visual {
  justify-self: stretch;
  height: 58px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 74% 40%, var(--section-accent, #f5c84b), transparent 19px),
    linear-gradient(135deg, rgba(245, 200, 75, 0.32), transparent 36%),
    var(--section-art);
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 20px rgba(245, 200, 75, 0.1) inset;
}

.section-bubble--disposables .section-visual {
  display: none;
}

.section-bubble--disposables .section-arrow {
  align-self: center;
  justify-self: end;
  width: 38px;
  height: 38px;
  border-color: rgba(245, 200, 75, 0.34);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 226, 122, 0.28), transparent 40%),
    rgba(0, 0, 0, 0.56);
  box-shadow:
    0 0 18px rgba(245, 200, 75, 0.28),
    0 0 0 1px rgba(245, 200, 75, 0.08) inset;
}

.section-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, 0.18);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.4rem;
  line-height: 1;
}

.section-bubble--disposables {
  --section-accent: #00eaff;
  --section-art: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent);
}

.section-bubble--edibles {
  --section-accent: #f5c84b;
  --section-art: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent);
}

.section-bubble--concentrates {
  --section-accent: #ff4fd8;
  --section-art: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent);
}

.brand-carousel {
  margin: 4px -14px 20px;
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(245, 200, 75, 0.12);
  border-bottom: 1px solid rgba(245, 200, 75, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 200, 75, 0.14), transparent 16rem),
    rgba(0, 0, 0, 0.62);
}

.brand-carousel > .brand-carousel-logo {
  position: static;
  display: block;
  width: min(82%, 340px);
  height: auto;
  margin: 0 auto 10px;
  opacity: 0.95;
  filter:
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 16px rgba(245, 200, 75, 0.34));
}

.brand-carousel--swirl {
  background:
    radial-gradient(circle at 50% 0%, rgba(178, 55, 255, 0.18), transparent 16rem),
    rgba(0, 0, 0, 0.62);
}

.brand-carousel--ace-ultra-premium {
  background:
    radial-gradient(circle at 50% -4%, rgba(255, 220, 105, 0.24), transparent 16rem),
    radial-gradient(circle at 18% 88%, rgba(255, 160, 30, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 210, 84, 0.06), rgba(0, 0, 0, 0.26)),
    rgba(0, 0, 0, 0.72);
}

.brand-carousel--ace-ultra-premium .brand-carousel-frame {
  border-color: rgba(255, 218, 104, 0.46);
  background: #030201;
  box-shadow:
    0 0 0 1px rgba(255, 236, 166, 0.1) inset,
    0 0 32px rgba(255, 198, 50, 0.24),
    0 22px 50px rgba(0, 0, 0, 0.66);
}

.brand-carousel--sluggers-runtz {
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 197, 36, 0.2), transparent 15rem),
    radial-gradient(circle at 72% 2%, rgba(221, 73, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 50% 96%, rgba(0, 229, 255, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 72, 135, 0.04), rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.68);
}

.brand-carousel--sluggers-runtz .brand-carousel-frame {
  border-color: rgba(238, 116, 255, 0.42);
  background: #050306;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.1) inset,
    0 0 24px rgba(221, 73, 255, 0.24),
    0 0 24px rgba(255, 197, 36, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.66);
}

.brand-carousel > .brand-carousel-logo--swirl {
  width: min(58%, 220px);
  margin-bottom: 8px;
  filter:
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 18px rgba(191, 76, 255, 0.5));
}

.brand-carousel--swirl .brand-carousel-frame {
  border-color: rgba(192, 78, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(192, 78, 255, 0.08) inset,
    0 0 28px rgba(192, 78, 255, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.62);
}

.brand-carousel--rickm {
  background:
    radial-gradient(circle at 38% 0%, rgba(123, 255, 20, 0.2), transparent 15rem),
    radial-gradient(circle at 72% 8%, rgba(0, 240, 255, 0.14), transparent 13rem),
    rgba(0, 0, 0, 0.62);
}

.brand-carousel--rickm .brand-carousel-frame {
  border-color: rgba(123, 255, 20, 0.36);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.08) inset,
    0 0 28px rgba(123, 255, 20, 0.2),
    0 22px 50px rgba(0, 0, 0, 0.62);
}

.brand-carousel--california-honey {
  background:
    radial-gradient(circle at 50% -4%, rgba(255, 189, 34, 0.24), transparent 16rem),
    radial-gradient(circle at 18% 92%, rgba(255, 226, 122, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 196, 43, 0.05), rgba(0, 0, 0, 0.22)),
    rgba(0, 0, 0, 0.68);
}

.brand-carousel--california-honey .brand-carousel-frame {
  border-color: rgba(255, 190, 36, 0.42);
  background: #030201;
  box-shadow:
    0 0 0 1px rgba(255, 226, 122, 0.08) inset,
    0 0 30px rgba(255, 190, 36, 0.22),
    0 22px 50px rgba(0, 0, 0, 0.64);
}

.brand-carousel--khalifa-kush {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 162, 255, 0.22), transparent 15rem),
    radial-gradient(circle at 82% 6%, rgba(255, 46, 135, 0.18), transparent 14rem),
    radial-gradient(circle at 50% 100%, rgba(185, 255, 38, 0.12), transparent 12rem),
    rgba(0, 0, 0, 0.66);
}

.brand-carousel--khalifa-kush .brand-carousel-frame {
  border-color: rgba(0, 174, 255, 0.38);
  background: #020407;
  box-shadow:
    0 0 0 1px rgba(255, 46, 135, 0.08) inset,
    0 0 24px rgba(0, 174, 255, 0.2),
    0 0 26px rgba(255, 46, 135, 0.12),
    0 22px 50px rgba(0, 0, 0, 0.64);
}

.brand-carousel--hitz {
  background:
    radial-gradient(circle at 50% -4%, rgba(255, 190, 36, 0.2), transparent 16rem),
    radial-gradient(circle at 18% 14%, rgba(0, 112, 255, 0.18), transparent 13rem),
    radial-gradient(circle at 82% 92%, rgba(0, 180, 255, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 190, 36, 0.05), rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.7);
}

.brand-carousel--hitz .brand-carousel-frame {
  border-color: rgba(255, 196, 50, 0.44);
  background: #020307;
  box-shadow:
    0 0 0 1px rgba(0, 156, 255, 0.1) inset,
    0 0 24px rgba(255, 190, 36, 0.22),
    0 0 26px rgba(0, 125, 255, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.66);
}

.brand-carousel--cookies-lemonade {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 126, 255, 0.2), transparent 15rem),
    radial-gradient(circle at 82% 0%, rgba(255, 218, 28, 0.2), transparent 15rem),
    linear-gradient(180deg, rgba(255, 246, 214, 0.05), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.6);
}

.brand-carousel--cookies-lemonade .brand-carousel-frame {
  border-color: rgba(35, 147, 255, 0.4);
  background: #050403;
  box-shadow:
    0 0 0 1px rgba(255, 218, 28, 0.08) inset,
    0 0 24px rgba(35, 147, 255, 0.2),
    0 0 24px rgba(255, 218, 28, 0.16),
    0 22px 50px rgba(0, 0, 0, 0.62);
}

.brand-carousel--donuts {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 72, 135, 0.2), transparent 15rem),
    radial-gradient(circle at 84% 0%, rgba(0, 174, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 50% 100%, rgba(142, 215, 54, 0.12), transparent 12rem),
    rgba(0, 0, 0, 0.66);
}

.brand-carousel--donuts .brand-carousel-frame {
  border-color: rgba(255, 92, 152, 0.4);
  background: #050305;
  box-shadow:
    0 0 0 1px rgba(0, 174, 255, 0.08) inset,
    0 0 24px rgba(255, 72, 135, 0.22),
    0 0 24px rgba(0, 174, 255, 0.16),
    0 22px 50px rgba(0, 0, 0, 0.64);
}

.brand-carousel--bliss-candies {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 72, 145, 0.22), transparent 15rem),
    radial-gradient(circle at 84% 4%, rgba(0, 210, 255, 0.16), transparent 14rem),
    radial-gradient(circle at 50% 100%, rgba(255, 166, 42, 0.16), transparent 12rem),
    linear-gradient(180deg, rgba(255, 74, 150, 0.05), rgba(0, 0, 0, 0.22)),
    rgba(0, 0, 0, 0.68);
}

.brand-carousel--bliss-candies .brand-carousel-frame {
  border-color: rgba(255, 114, 168, 0.44);
  background: #050204;
  box-shadow:
    0 0 0 1px rgba(255, 230, 245, 0.1) inset,
    0 0 24px rgba(255, 72, 145, 0.24),
    0 0 24px rgba(0, 210, 255, 0.16),
    0 22px 50px rgba(0, 0, 0, 0.66);
}

.brand-carousel--clout-candies {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 42, 117, 0.22), transparent 15rem),
    radial-gradient(circle at 86% 2%, rgba(0, 213, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 50% 100%, rgba(255, 222, 38, 0.14), transparent 12rem),
    linear-gradient(180deg, rgba(255, 42, 117, 0.05), rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.68);
}

.brand-carousel--clout-candies .brand-carousel-frame {
  border-color: rgba(255, 222, 38, 0.42);
  background: #060304;
  box-shadow:
    0 0 0 1px rgba(0, 213, 255, 0.1) inset,
    0 0 24px rgba(255, 42, 117, 0.24),
    0 0 24px rgba(255, 222, 38, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.66);
}

.brand-carousel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(245, 200, 75, 0.26);
  border-radius: 8px;
  background: #030302;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.06) inset,
    0 0 28px rgba(245, 200, 75, 0.14),
    0 22px 50px rgba(0, 0, 0, 0.62);
}

.brand-carousel-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.28));
}

.brand-carousel-track {
  display: flex;
  height: 100%;
  transform: translateX(calc(var(--brand-active-index, 0) * -100%));
  transition: transform 520ms cubic-bezier(0.2, 0.84, 0.22, 1);
}

.brand-slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
}

.brand-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.brand-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, 0.28);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.54);
  box-shadow: 0 0 20px rgba(245, 200, 75, 0.2);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.brand-carousel-button--prev {
  left: 10px;
}

.brand-carousel-button--next {
  right: 10px;
}

.brand-carousel-navrow {
  display: grid;
  grid-template-columns: 62px 1fr 62px;
  align-items: center;
  gap: 8px;
  padding: 10px 0 0;
}

.brand-carousel-navrow .brand-carousel-previews {
  min-width: 0;
  padding: 0;
}

.brand-jump {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 75, 0.24);
  border-radius: 999px;
  color: #fff8da;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(145deg, var(--jump-a, #ffe27a), var(--jump-b, #b67813) 52%, var(--jump-c, #090706));
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.26),
    0 0 22px var(--jump-glow, rgba(245, 200, 75, 0.18)),
    0 10px 22px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  transform: translateY(-1px);
}

.brand-jump-spacer {
  display: block;
  width: 62px;
  height: 62px;
}

.brand-jump--image {
  overflow: visible;
  border: 0;
  outline: 0;
  background: transparent !important;
  box-shadow: none;
}

.brand-jump--image:focus {
  outline: 0;
}

.brand-jump--image:focus-visible {
  outline: 2px solid rgba(255, 226, 122, 0.76);
  outline-offset: 4px;
}

.brand-jump::before {
  position: absolute;
  inset: 3px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.brand-jump--image::before {
  display: none;
}

.brand-jump::after {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 1px solid rgba(255, 226, 122, 0.42);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.64);
  box-shadow: 0 0 12px rgba(245, 200, 75, 0.22);
  font-size: 0.82rem;
  line-height: 1;
  transform: translateY(-50%);
}

.brand-jump--previous::after {
  left: -1px;
  content: "\2039";
}

.brand-jump--next::after {
  right: -1px;
  content: "\203A";
}

.brand-jump.brand-jump--image::after {
  display: none;
  content: none;
}

.brand-jump-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 107%;
  height: 107%;
  max-width: none;
  border-radius: 999px;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(var(--logo-scale, 1));
}

.brand-jump span {
  position: relative;
  z-index: 3;
  max-width: 44px;
  padding: 2px 5px;
  border-radius: 999px;
  color: var(--jump-text, #fff8da);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.52);
  font-family: var(--display), var(--sans);
  font-size: 0.54rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.68),
    0 0 10px rgba(0, 0, 0, 0.5);
}

.brand-jump--muha,
.brand-jump--muha-meds {
  --jump-a: #ffd96a;
  --jump-b: #ff9f20;
  --jump-c: #231206;
  --jump-glow: rgba(255, 188, 40, 0.28);
  --jump-text: #fff6d6;
  --logo-scale: 1.18;
}

.brand-jump--swirl {
  --jump-a: #f2dbff;
  --jump-b: #bf55ff;
  --jump-c: #201035;
  --jump-glow: rgba(192, 78, 255, 0.3);
  --jump-text: #fff5ff;
  --logo-scale: 1.26;
}

.brand-jump--ace-ultra-premium {
  --jump-a: #fff0a6;
  --jump-b: #d99a19;
  --jump-c: #050403;
  --jump-glow: rgba(255, 198, 50, 0.32);
  --jump-text: #fff6d6;
  --logo-scale: 1.5;
}

.brand-jump--sluggers-runtz {
  --jump-a: #ffef85;
  --jump-b: #df4aff;
  --jump-c: #00dfff;
  --jump-glow: rgba(221, 73, 255, 0.34);
  --jump-text: #fff7ff;
  --logo-scale: 1.1;
}

.brand-jump--rickm,
.brand-jump--rick-and-morty {
  --jump-a: #dfff42;
  --jump-b: #55e000;
  --jump-c: #023b2f;
  --jump-glow: rgba(123, 255, 20, 0.3);
  --jump-text: #f7ffd8;
  --logo-scale: 1.28;
}

.brand-jump--california-honey {
  --jump-a: #fff0a6;
  --jump-b: #ffb71a;
  --jump-c: #17100a;
  --jump-glow: rgba(255, 190, 36, 0.32);
  --jump-text: #fff4c7;
  --logo-scale: 1.1;
}

.brand-jump--khalifa-kush {
  --jump-a: #7ed8ff;
  --jump-b: #1596ff;
  --jump-c: #ff3b91;
  --jump-glow: rgba(0, 174, 255, 0.3);
  --jump-text: #f3fbff;
  --logo-scale: 1.22;
}

.brand-jump--hitz-infinity {
  --jump-a: #fff0a0;
  --jump-b: #f0b322;
  --jump-c: #0848a8;
  --jump-glow: rgba(255, 190, 36, 0.28);
  --jump-text: #fff8de;
  --logo-scale: 1.2;
}

.brand-jump--cookies-and-lemonade {
  --jump-a: #78caff;
  --jump-b: #0879e8;
  --jump-c: #ffda1c;
  --jump-glow: rgba(35, 147, 255, 0.3);
  --jump-text: #fffce8;
  --logo-scale: 1.34;
}

.brand-jump--donuts {
  --jump-a: #ff99c2;
  --jump-b: #ff477f;
  --jump-c: #00aeff;
  --jump-glow: rgba(255, 72, 135, 0.32);
  --jump-text: #fff3f8;
  --logo-scale: 1.22;
}

.brand-jump--bliss-candies {
  --jump-a: #ff4f93;
  --jump-b: #00d2ff;
  --jump-c: #ffe27a;
  --jump-glow: rgba(255, 79, 147, 0.34);
  --jump-text: #fff3f8;
  --logo-scale: 1.18;
}

.brand-jump--clout-candies {
  --jump-a: #ffe427;
  --jump-b: #ff2a75;
  --jump-c: #00d5ff;
  --jump-glow: rgba(255, 42, 117, 0.34);
  --jump-text: #fff8d8;
  --logo-scale: 1.22;
}

.brand-jump--cookies-and-lemonade span {
  font-size: 0.5rem;
}

.brand-carousel-previews {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 10px 0 0;
}

.brand-preview {
  position: relative;
  overflow: hidden;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(245, 200, 75, 0.18);
  border-radius: 999px;
  background: #080704;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-preview.is-active {
  border-color: #ffe27a;
  box-shadow:
    0 0 0 3px rgba(245, 200, 75, 0.1),
    0 0 20px rgba(245, 200, 75, 0.32);
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
}

.brand-carousel-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding-top: 12px;
}

.poster-link {
  color: #ffe27a;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: rgba(245, 200, 75, 0.46);
  text-underline-offset: 4px;
  text-shadow: 0 0 14px rgba(245, 200, 75, 0.26);
}

.poster-link--swirl {
  color: #c3a9ff;
  text-decoration-color: rgba(195, 169, 255, 0.45);
  text-shadow: 0 0 14px rgba(192, 78, 255, 0.28);
}

.poster-link--ace-ultra-premium {
  color: #ffe27a;
  text-decoration-color: rgba(255, 226, 122, 0.54);
  text-shadow:
    0 0 12px rgba(255, 198, 50, 0.36),
    0 0 18px rgba(255, 236, 166, 0.16);
}

.poster-link--sluggers-runtz {
  color: #f1a4ff;
  text-decoration-color: rgba(241, 164, 255, 0.5);
  text-shadow:
    0 0 12px rgba(221, 73, 255, 0.34),
    0 0 18px rgba(0, 229, 255, 0.2);
}

.poster-link--rickm {
  color: #aaff38;
  text-decoration-color: rgba(170, 255, 56, 0.48);
  text-shadow:
    0 0 12px rgba(123, 255, 20, 0.3),
    0 0 18px rgba(0, 240, 255, 0.18);
}

.poster-link--california-honey {
  color: #ffd261;
  text-decoration-color: rgba(255, 210, 97, 0.52);
  text-shadow:
    0 0 12px rgba(255, 190, 36, 0.34),
    0 0 18px rgba(255, 226, 122, 0.18);
}

.poster-link--khalifa-kush {
  color: #7ed8ff;
  text-decoration-color: rgba(126, 216, 255, 0.5);
  text-shadow:
    0 0 12px rgba(0, 174, 255, 0.34),
    0 0 18px rgba(255, 46, 135, 0.18);
}

.poster-link--hitz {
  color: #ffd56f;
  text-decoration-color: rgba(255, 213, 111, 0.52);
  text-shadow:
    0 0 12px rgba(255, 190, 36, 0.34),
    0 0 18px rgba(0, 125, 255, 0.2);
}

.poster-link--cookies-lemonade {
  color: #7cc8ff;
  text-decoration-color: rgba(124, 200, 255, 0.52);
  text-shadow:
    0 0 12px rgba(35, 147, 255, 0.34),
    0 0 18px rgba(255, 218, 28, 0.2);
}

.poster-link--donuts {
  color: #ff86b5;
  text-decoration-color: rgba(255, 134, 181, 0.52);
  text-shadow:
    0 0 12px rgba(255, 72, 135, 0.34),
    0 0 18px rgba(0, 174, 255, 0.18);
}

.poster-link--bliss-candies {
  color: #ffd6e8;
  text-decoration-color: rgba(255, 114, 168, 0.58);
  text-shadow:
    0 0 12px rgba(255, 72, 145, 0.38),
    0 0 18px rgba(0, 210, 255, 0.18);
}

.poster-link--clout-candies {
  color: #ffe427;
  text-decoration-color: rgba(255, 228, 39, 0.52);
  text-shadow:
    0 0 12px rgba(255, 42, 117, 0.34),
    0 0 18px rgba(0, 213, 255, 0.2);
}

.order-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 260px);
  min-height: 44px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid rgba(255, 226, 122, 0.64);
  border-radius: 8px;
  color: #050503;
  background: linear-gradient(135deg, #ffe27a, #e6aa25 58%, #a76d0c);
  box-shadow:
    0 0 22px rgba(245, 200, 75, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.4);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  isolation: isolate;
}

.order-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, 0.64) 38%, rgba(255, 247, 214, 0.22) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-130%) skewX(-18deg);
  transition: opacity 160ms ease;
}

.order-button::after {
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle at var(--order-x, 50%) var(--order-y, 50%), rgba(255, 247, 214, 0.56), rgba(245, 200, 75, 0.18) 34%, transparent 64%);
  opacity: 0;
  transform: scale(0.76);
}

.order-button:hover,
.order-button:focus-visible {
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-1px);
}

.order-button:hover::before,
.order-button:focus-visible::before {
  opacity: 0.86;
  animation: order-sweep 900ms ease;
}

.order-button:active {
  transform: translateY(1px) scale(0.975);
}

.order-button.is-tap-active {
  filter: saturate(1.12) brightness(1.08);
  transform: translateY(1px) scale(0.975);
}

.order-button.is-order-pulse::before {
  opacity: 0.92;
  animation: order-sweep 760ms ease;
}

.order-button.is-order-pulse::after {
  animation: order-halo 620ms ease-out;
}

.order-button--swirl {
  border-color: rgba(230, 190, 255, 0.66);
  color: #08040c;
  background: linear-gradient(135deg, #f4e6ff, #bf55ff 54%, #6b18bf);
  box-shadow:
    0 0 22px rgba(192, 78, 255, 0.32),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.order-button--ace-ultra-premium {
  border-color: rgba(255, 226, 122, 0.72);
  color: #050403;
  background: linear-gradient(135deg, #fff2a6, #e6b22d 50%, #8c5a08);
  box-shadow:
    0 0 24px rgba(255, 198, 50, 0.34),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--sluggers-runtz {
  border-color: rgba(241, 164, 255, 0.72);
  color: #08020b;
  background: linear-gradient(135deg, #ffef85, #ff8b21 34%, #df4aff 66%, #00dfff);
  box-shadow:
    0 0 22px rgba(221, 73, 255, 0.32),
    0 0 18px rgba(0, 229, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--rickm {
  border-color: rgba(176, 255, 72, 0.68);
  color: #041003;
  background: linear-gradient(135deg, #e7ff55, #6fff12 48%, #00c8d8);
  box-shadow:
    0 0 22px rgba(123, 255, 20, 0.3),
    0 0 18px rgba(0, 240, 255, 0.16),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.order-button--california-honey {
  border-color: rgba(255, 216, 112, 0.72);
  color: #080604;
  background: linear-gradient(135deg, #fff2a6, #ffbf22 48%, #a86907);
  box-shadow:
    0 0 24px rgba(255, 190, 36, 0.34),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--khalifa-kush {
  border-color: rgba(111, 214, 255, 0.7);
  color: #02070b;
  background: linear-gradient(135deg, #7ed8ff, #1596ff 42%, #ff3b91 74%, #c9ff32);
  box-shadow:
    0 0 22px rgba(0, 174, 255, 0.32),
    0 0 18px rgba(255, 46, 135, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--hitz {
  border-color: rgba(255, 216, 112, 0.72);
  color: #050607;
  background: linear-gradient(135deg, #fff0a0, #f0b322 45%, #086dff);
  box-shadow:
    0 0 24px rgba(255, 190, 36, 0.32),
    0 0 18px rgba(0, 125, 255, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--cookies-lemonade {
  border-color: rgba(124, 200, 255, 0.72);
  color: #03101d;
  background: linear-gradient(135deg, #78caff, #0879e8 48%, #ffda1c);
  box-shadow:
    0 0 22px rgba(35, 147, 255, 0.3),
    0 0 18px rgba(255, 218, 28, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--donuts {
  border-color: rgba(255, 134, 181, 0.72);
  color: #100208;
  background: linear-gradient(135deg, #ff99c2, #ff477f 44%, #00aeff 74%, #8ed736);
  box-shadow:
    0 0 22px rgba(255, 72, 135, 0.32),
    0 0 18px rgba(0, 174, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--bliss-candies {
  border-color: rgba(255, 114, 168, 0.74);
  color: #120208;
  background: linear-gradient(135deg, #ff4f93, #ffe27a 48%, #00d2ff);
  box-shadow:
    0 0 22px rgba(255, 79, 147, 0.32),
    0 0 18px rgba(0, 210, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.order-button--clout-candies {
  border-color: rgba(255, 228, 39, 0.74);
  color: #120604;
  background: linear-gradient(135deg, #ffe427, #ff8b12 36%, #ff2a75 68%, #00d5ff);
  box-shadow:
    0 0 22px rgba(255, 42, 117, 0.32),
    0 0 18px rgba(255, 228, 39, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.product-feed {
  display: grid;
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(245, 200, 75, 0.115), rgba(245, 200, 75, 0.035) 44%, rgba(0, 240, 255, 0.035)),
    rgba(4, 4, 3, 0.88);
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.04) inset,
    0 0 28px rgba(245, 200, 75, 0.08),
    var(--shadow);
  backdrop-filter: blur(20px) saturate(1.28);
  animation: rise-in 680ms both;
}

.product-card:nth-child(2n) {
  --copper: #00f0ff;
  --citron: #f5c84b;
}

.product-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.5), transparent 18%, transparent 82%, rgba(255, 79, 216, 0.34)),
    linear-gradient(120deg, rgba(245, 200, 75, 0.2), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.22;
}

.product-meta,
.product-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta {
  padding: 2px 2px 10px;
}

.product-kicker,
.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(245, 200, 75, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-kicker {
  padding: 0 11px;
  background: linear-gradient(135deg, rgba(245, 200, 75, 0.18), rgba(0, 240, 255, 0.065));
}

.product-price {
  padding: 0 10px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.46);
  text-shadow: 0 0 12px rgba(245, 200, 75, 0.42);
}

.carousel-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 6px;
  background: #020202;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.08) inset,
    0 18px 40px rgba(0, 0, 0, 0.55);
  isolation: isolate;
}

.carousel-track {
  display: flex;
  height: 100%;
  transform: translateX(calc(var(--active-index, 0) * -100%));
  transition: transform 520ms cubic-bezier(0.2, 0.84, 0.22, 1);
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.product-card .slide img {
  object-fit: contain;
  background: #020202;
}

.slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.32));
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, 0.36);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.64);
  box-shadow:
    0 0 18px rgba(245, 200, 75, 0.16),
    0 10px 30px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-button:active {
  transform: translateY(-50%) scale(0.94);
}

.carousel-button--prev {
  left: 10px;
}

.carousel-button--next {
  right: 10px;
}

.carousel-button span {
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

.slide-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(245, 200, 75, 0.26);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.thumbnail-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: 72px;
  grid-auto-flow: column;
  gap: 8px;
  margin: 10px 0 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.thumbnail-strip::-webkit-scrollbar {
  display: none;
}

.thumbnail-button {
  position: relative;
  overflow: hidden;
  width: 72px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(245, 200, 75, 0.18);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.thumbnail-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-button.is-active {
  border-color: var(--citron);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.22),
    0 0 18px rgba(245, 200, 75, 0.24);
}

.thumbnail-button.is-active::after {
  position: absolute;
  inset: 4px;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.68);
  border-radius: 3px;
}

.product-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 16px 2px 14px;
}

.product-copy h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.62rem, 8vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #ffe27a;
  text-shadow: 0 0 18px rgba(245, 200, 75, 0.18);
}

.product-copy p {
  color: #c0a35b;
  font-size: 0.94rem;
  line-height: 1.58;
}

.primary-action,
.save-action {
  min-height: 44px;
  border: 1px solid rgba(245, 200, 75, 0.22);
  border-radius: 6px;
  cursor: pointer;
}

.primary-action {
  flex: 1;
  color: #050503;
  background: linear-gradient(135deg, #ffe27a, #f0b735 58%, #b67a12);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(245, 200, 75, 0.2);
}

.save-action {
  display: grid;
  width: 48px;
  place-items: center;
  background: rgba(245, 200, 75, 0.08);
}

.save-action svg {
  width: 20px;
  fill: none;
  stroke: #ffe27a;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(14px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 200, 75, 0.16), transparent 18rem),
    rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
}

.image-viewer[hidden] {
  display: none;
}

.image-viewer-image {
  display: block;
  width: min(100%, 520px);
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(245, 200, 75, 0.22);
  border-radius: 8px;
  object-fit: contain;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(245, 200, 75, 0.06) inset,
    0 0 34px rgba(245, 200, 75, 0.2),
    0 22px 70px rgba(0, 0, 0, 0.72);
}

.image-viewer-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 1001;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, 0.42);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.72);
  box-shadow:
    0 0 20px rgba(245, 200, 75, 0.2),
    0 10px 26px rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.image-viewer-nav {
  position: fixed;
  top: 50%;
  z-index: 1001;
  display: grid;
  width: 46px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(245, 200, 75, 0.34);
  border-radius: 999px;
  color: #ffe27a;
  background: rgba(0, 0, 0, 0.66);
  box-shadow:
    0 0 20px rgba(245, 200, 75, 0.18),
    0 10px 26px rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.image-viewer-nav--prev {
  left: max(10px, env(safe-area-inset-left));
}

.image-viewer-nav--next {
  right: max(10px, env(safe-area-inset-right));
}

.image-viewer-nav[hidden] {
  display: none;
}

body.image-viewer-open {
  overflow: hidden;
  touch-action: none;
}

.back-to-top {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 820;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 226, 122, 0.48);
  border-radius: 999px;
  color: #fff4bd;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.36), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(245, 200, 75, 0.32), transparent 58%),
    linear-gradient(145deg, rgba(255, 226, 122, 0.28), rgba(13, 10, 4, 0.7) 52%, rgba(0, 0, 0, 0.76));
  box-shadow:
    0 0 0 1px rgba(255, 226, 122, 0.14) inset,
    0 0 24px rgba(245, 200, 75, 0.34),
    0 0 48px rgba(245, 200, 75, 0.16),
    0 16px 34px rgba(0, 0, 0, 0.52);
  cursor: pointer;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  outline: 0;
  touch-action: manipulation;
  transform: translate3d(-50%, 16px, 0) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  -webkit-tap-highlight-color: transparent;
}

.category-brand[href]:focus-visible {
  outline: 0;
  border-color: rgba(255, 226, 122, 0.48);
  box-shadow:
    0 0 0 1px rgba(255, 226, 122, 0.14) inset,
    0 0 0 3px rgba(245, 200, 75, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(245, 200, 75, 0.12);
}

.category-brand .tap-ripple {
  z-index: 0;
}

.back-to-top::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  box-shadow: 0 0 16px rgba(245, 200, 75, 0.18) inset;
}

.back-to-top::after {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: conic-gradient(from 210deg, transparent 0 22%, rgba(255, 226, 122, 0.42) 34%, transparent 46% 100%);
  opacity: 0.58;
  filter: blur(8px);
}

.back-to-top svg {
  position: relative;
  z-index: 3;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
  filter: drop-shadow(0 0 8px rgba(245, 200, 75, 0.58));
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(255, 226, 122, 0.54);
  box-shadow:
    0 0 0 1px rgba(255, 226, 122, 0.18) inset,
    0 0 38px rgba(245, 200, 75, 0.44),
    0 0 64px rgba(245, 200, 75, 0.22),
    0 18px 38px rgba(0, 0, 0, 0.56);
  transform: translate3d(-50%, -2px, 0) scale(1.03);
}

.back-to-top:active {
  transform: translate3d(-50%, 0, 0) scale(0.97);
}

.back-to-top.is-returning {
  animation: return-pulse 520ms ease-out;
}

.back-to-top:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 1px rgba(255, 226, 122, 0.16) inset,
    0 0 0 4px rgba(255, 226, 122, 0.22),
    0 0 0 7px rgba(0, 0, 0, 0.46),
    0 0 36px rgba(245, 200, 75, 0.42),
    0 16px 34px rgba(0, 0, 0, 0.52);
}

.back-to-top .tap-ripple {
  z-index: 2;
  mix-blend-mode: screen;
}

body.image-viewer-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tap-bloom {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.18);
  }

  55% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}

@keyframes menu-panel-in {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes menu-item-in {
  from {
    opacity: 0;
    transform: translate3d(12px, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes arrival-glow {
  0% {
    box-shadow:
      0 0 0 1px rgba(255, 226, 122, 0.78),
      0 0 0 rgba(245, 200, 75, 0),
      var(--arrival-shadow, none);
    transform: translateY(-1px);
  }

  42% {
    box-shadow:
      0 0 0 1px rgba(255, 226, 122, 0.54),
      0 0 34px rgba(245, 200, 75, 0.34),
      0 0 72px rgba(0, 240, 255, 0.12),
      var(--arrival-shadow, none);
  }

  100% {
    box-shadow: var(--arrival-shadow, none);
    transform: translateY(0);
  }
}

@keyframes return-pulse {
  0% {
    box-shadow:
      0 0 0 1px rgba(255, 226, 122, 0.22) inset,
      0 0 28px rgba(245, 200, 75, 0.38),
      0 0 0 rgba(245, 200, 75, 0.3),
      0 16px 34px rgba(0, 0, 0, 0.52);
  }

  42% {
    box-shadow:
      0 0 0 1px rgba(255, 226, 122, 0.2) inset,
      0 0 36px rgba(245, 200, 75, 0.52),
      0 0 0 12px rgba(245, 200, 75, 0.08),
      0 18px 40px rgba(0, 0, 0, 0.58);
  }

  100% {
    box-shadow:
      0 0 0 1px rgba(255, 226, 122, 0.14) inset,
      0 0 24px rgba(245, 200, 75, 0.34),
      0 0 48px rgba(245, 200, 75, 0.16),
      0 16px 34px rgba(0, 0, 0, 0.52);
  }
}

@keyframes order-sweep {
  0% {
    transform: translateX(-130%) skewX(-18deg);
  }

  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes order-halo {
  0% {
    opacity: 0.58;
    transform: scale(0.72);
  }

  60% {
    opacity: 0.22;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (min-width: 768px) {
  .app-shell {
    width: min(100% - 48px, 1120px);
    padding-top: 22px;
  }

  .masthead {
    width: min(100%, 940px);
    margin: 0 auto;
    min-height: auto;
    aspect-ratio: 16 / 7;
    border-bottom: 0;
    border-radius: 8px;
  }

  .masthead::before,
  .masthead::after {
    display: none;
  }


  .product-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-bubbles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-bubble {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
  }

  .section-bubble--disposables,
  .section-bubble--edibles,
  .section-bubble--concentrates {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .section-visual {
    display: none;
  }

  .brand-carousel {
    margin-right: 0;
    margin-left: 0;
    border: 1px solid rgba(245, 200, 75, 0.12);
    border-radius: 8px;
  }

  .brand-carousel-frame {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 1024px) {
  .product-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
