@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/fredoka-400.ttf") format("truetype");
}

@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/fredoka-500.ttf") format("truetype");
}

@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/fredoka-600.ttf") format("truetype");
}

@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/fredoka-700.ttf") format("truetype");
}

@font-face {
  font-family: "Luckiest Guy";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/luckiest-guy-400.ttf") format("truetype");
}

@font-face {
  font-family: "Permanent Marker";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/permanent-marker-400.ttf") format("truetype");
}

:root {
  --ink: #eff7ff;
  --muted: #9aa8ff;
  --paper: #05040c;
  --panel: #090719;
  --panel-strong: #151033;
  --accent: #00e5ff;
  --accent-dark: #061d2e;
  --signal: #d900ff;
  --line: rgba(0, 229, 255, 0.36);
  --shadow: 0 0 34px rgba(0, 229, 255, 0.22), 0 0 54px rgba(217, 0, 255, 0.12);
  --app-width: min(100vw, 430px);
  --app-half-width: calc(var(--app-width) / 2);
  --rail-open: 50%;
  --rail-closed: 0px;
  --display-font: "Permanent Marker", "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  --ui-font: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  --mono-graffiti-shadow:
    0 1px 0 rgba(255, 255, 255, 0.54),
    1px 1px 0 #05040c,
    0 0 3px rgba(255, 255, 255, 0.18),
    0 0 5px rgba(0, 229, 255, 0.1);
  --compact-graffiti-shadow:
    0 1px 0 rgba(255, 255, 255, 0.44),
    0 0 3px rgba(255, 255, 255, 0.14),
    0 0 5px rgba(0, 229, 255, 0.08);
  color-scheme: dark;
  font-family: var(--ui-font);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: grid;
  justify-content: start;
  height: 100%;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 0, 255, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(0, 229, 255, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(217, 0, 255, 0.07) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--paper);
  color: var(--ink);
  font-weight: 600;
}

body.info-route-active .app-shell {
  display: none;
}

button,
input {
  font: inherit;
}

button,
[role="button"],
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-shell {
  position: relative;
  display: grid;
  grid-template-columns: var(--rail-open) minmax(0, 1fr);
  width: var(--app-width);
  height: 100dvh;
  min-height: 0;
  overflow-x: hidden;
  contain: layout style;
  transition: none;
}

.app-shell.rail-closed {
  grid-template-columns: var(--rail-closed) minmax(0, 1fr);
}

.catalog-rail {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 100dvh;
  overflow: visible;
  border-right: 1px solid var(--line);
  background: #05040c;
  color: var(--ink);
  box-shadow: inset -1px 0 0 rgba(217, 0, 255, 0.34), 12px 0 36px rgba(0, 0, 0, 0.45);
  isolation: isolate;
  transform: translateZ(0);
}

.rail-tab {
  position: absolute;
  top: 50%;
  right: -54px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 172px;
  border: 1.5px solid rgba(0, 229, 255, 0.82);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background:
    linear-gradient(180deg, rgba(217, 0, 255, 0.1), rgba(0, 229, 255, 0.12)),
    rgba(5, 4, 12, 0.36);
  color: var(--signal);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.2),
    0 0 14px rgba(0, 229, 255, 0.56),
    0 0 28px rgba(217, 0, 255, 0.34),
    inset 0 0 14px rgba(0, 229, 255, 0.18);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  outline: 0;
  pointer-events: auto;
  transition: right 150ms cubic-bezier(0.2, 0.8, 0.2, 1), width 150ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 150ms ease, border-radius 150ms ease, box-shadow 150ms ease, opacity 120ms ease, visibility 120ms ease;
  animation: tab-breathe 2.8s ease-in-out infinite;
}

.rail-tab:focus-visible {
  outline: 0;
  border-color: rgba(255, 42, 255, 0.96);
  box-shadow:
    0 0 0 1.5px rgba(255, 42, 255, 0.38),
    0 0 18px rgba(0, 229, 255, 0.68),
    0 0 34px rgba(217, 0, 255, 0.52),
    inset 0 0 18px rgba(217, 0, 255, 0.2);
}

.rail-tab::before,
.rail-tab::after {
  position: absolute;
  color: #00e5ff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.96),
    0 0 16px rgba(217, 0, 255, 0.64);
  animation: arrow-pulse 1.4s ease-in-out infinite;
}

.rail-tab::before {
  top: 10px;
  content: "›";
}

.rail-tab::after {
  bottom: 10px;
  content: "›";
}

.tab-title {
  display: block;
  width: 78px;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-90deg);
  white-space: nowrap;
  color: #fffdf8;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 9px rgba(0, 217, 255, 0.68),
    0 0 14px rgba(255, 42, 201, 0.48);
  animation: title-flicker 4.2s ease-in-out infinite;
}

@keyframes tab-breathe {
  0%,
  100% {
    border-color: rgba(0, 229, 255, 0.58);
    box-shadow:
      0 0 12px rgba(0, 229, 255, 0.42),
      0 0 22px rgba(217, 0, 255, 0.26),
      inset 0 0 12px rgba(0, 229, 255, 0.12);
  }

  50% {
    border-color: rgba(217, 0, 255, 0.92);
    box-shadow:
      0 0 18px rgba(0, 229, 255, 0.72),
      0 0 38px rgba(217, 0, 255, 0.52),
      inset 0 0 18px rgba(217, 0, 255, 0.22);
  }
}

@keyframes arrow-pulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.8;
  }

  50% {
    transform: translateX(2px);
    opacity: 1;
  }
}

@keyframes title-flicker {
  0%,
  100% {
    opacity: 0.86;
  }

  45%,
  55% {
    opacity: 1;
  }
}

.rail-brand {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 16px 8px 10px;
  min-height: 70px;
  text-align: center;
}

.brand-mark {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--signal);
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.rail-brand-copy,
.rail-brand small {
  display: block;
  white-space: nowrap;
}

.rail-brand-copy {
  min-width: 0;
}

.rail-brand-logo {
  display: block;
  width: min(148px, 100%);
  max-height: 46px;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 6px rgba(255, 25, 239, 0.45))
    drop-shadow(0 0 9px rgba(0, 217, 255, 0.28));
}

.rail-brand small {
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--ui-font);
  font-size: 10px;
}

.rail-brand,
.category-list,
.item-list {
  transition: visibility 0ms linear;
}

.category-list,
.item-list {
  display: grid;
  gap: 4px;
  padding: 0 8px;
}

.category-list {
  grid-template-columns: 1fr;
  gap: 3px;
  padding: 0 10px 9px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.24);
}

.catalog-rail .category-pill-rail {
  display: grid;
  place-items: center;
  align-items: center;
  justify-items: center;
  min-height: 25px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--pill-color) 14%, transparent), transparent 64%),
    rgba(5, 4, 16, 0.24);
  padding: 2px 8px 3px;
  box-shadow:
    inset 0 0 10px color-mix(in srgb, var(--pill-color) 8%, transparent),
    0 0 10px color-mix(in srgb, var(--pill-color) 12%, transparent);
  text-align: center;
}

.catalog-rail .category-pill-rail.active {
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--pill-color) 28%, transparent), transparent 72%),
    rgba(5, 4, 16, 0.44);
  box-shadow:
    inset 0 0 12px color-mix(in srgb, var(--pill-color) 14%, transparent),
    0 0 14px color-mix(in srgb, var(--pill-color) 26%, transparent);
}

.catalog-rail .category-icon {
  width: 23px;
  height: 23px;
}

.catalog-rail .category-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.catalog-rail .category-pill-purple .category-icon svg {
  width: 18px;
  height: 18px;
}

.catalog-rail .category-word-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 1em;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  justify-self: center;
  text-align: center;
}

.category-list:empty {
  display: none;
}

.item-list {
  height: calc(100dvh - 212px);
  padding-top: 10px;
  padding-bottom: 620px;
  overflow-y: auto;
  contain: layout paint style;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.item-list::-webkit-scrollbar {
  display: none;
}

.rail-group {
  --rail-section-color: var(--signal);
  --rail-section-glow: rgba(255, 42, 201, 0.68);
  --rail-section-shadow: rgba(0, 217, 255, 0.44);
  display: grid;
  justify-items: center;
  gap: 2px;
  padding-bottom: 8px;
  text-align: center;
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 340px;
}

.rail-group-pink {
  --rail-section-color: #ff42e8;
  --rail-section-glow: rgba(255, 42, 201, 0.72);
  --rail-section-shadow: rgba(0, 217, 255, 0.44);
}

.rail-group-blue {
  --rail-section-color: #00e5ff;
  --rail-section-glow: rgba(0, 229, 255, 0.74);
  --rail-section-shadow: rgba(255, 42, 201, 0.32);
}

.rail-group-green {
  --rail-section-color: #8bff3d;
  --rail-section-glow: rgba(139, 255, 61, 0.74);
  --rail-section-shadow: rgba(0, 229, 255, 0.34);
}

.rail-group-yellow {
  --rail-section-color: #ffe94d;
  --rail-section-glow: rgba(255, 233, 77, 0.74);
  --rail-section-shadow: rgba(255, 42, 201, 0.3);
}

.rail-group-purple {
  --rail-section-color: #b777ff;
  --rail-section-glow: rgba(183, 119, 255, 0.74);
  --rail-section-shadow: rgba(0, 229, 255, 0.36);
}

.rail-group h3 {
  margin: 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.32);
  background: #05040c;
  color: var(--signal);
  padding: 8px 6px 6px;
  font-family: var(--display-font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.rail-empty {
  margin: 2px 0 4px;
  color: var(--muted);
  font-family: var(--display-font);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-shadow: var(--compact-graffiti-shadow);
}

.rail-link {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 3px;
  width: 100%;
  min-height: 26px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  padding: 4px 6px;
  text-align: center;
  text-decoration: none;
}

.rail-link:hover,
.rail-link:focus-visible,
.rail-link.active {
  background: rgba(217, 0, 255, 0.2);
  color: #ffffff;
  outline: 0;
}

.rail-link .num {
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(0, 229, 255, 0.16);
  font-family: var(--display-font);
  font-size: 10px;
  font-weight: 800;
}

.rail-link .label {
  min-width: 0;
  max-width: calc(100% - 12px);
  overflow: visible;
  justify-self: center;
  display: inline-block;
  font-family: var(--display-font);
  letter-spacing: 0.01em;
  text-shadow: var(--compact-graffiti-shadow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.rail-label-text,
.rail-label-emoji {
  display: inline;
  vertical-align: baseline;
}

.rail-label-emoji {
  margin-left: 3px;
  white-space: nowrap;
}

.rail-price {
  display: block;
  justify-self: center;
  color: var(--accent);
  font-family: var(--display-font);
  letter-spacing: 0.01em;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
}

.app-shell.rail-closed .rail-brand,
.app-shell.rail-closed .category-list,
.app-shell.rail-closed .item-list {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
}

.app-shell.rail-closed .catalog-rail {
  border-right-color: transparent;
  background: transparent;
}

.app-shell.rail-closed .rail-tab {
  right: -24px;
  border-radius: 0 12px 12px 0;
  border-right: 1.5px solid rgba(0, 229, 255, 0.82);
  border-left: 0;
}

.app-shell:not(.rail-closed) .rail-tab {
  right: 0;
  border-radius: 12px 0 0 12px;
  border-right: 0;
  border-left: 1.5px solid rgba(0, 229, 255, 0.82);
  box-shadow:
    -1px 0 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(0, 229, 255, 0.18),
    0 0 16px rgba(0, 229, 255, 0.58),
    0 0 34px rgba(217, 0, 255, 0.44),
    inset 0 0 16px rgba(217, 0, 255, 0.16);
}

.app-shell:not(.rail-closed) .rail-tab::before,
.app-shell:not(.rail-closed) .rail-tab::after {
  content: "‹";
}

.app-shell.cart-open .rail-tab {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.app-shell.cart-open .rail-tab,
.app-shell.cart-open .rail-tab::before,
.app-shell.cart-open .rail-tab::after {
  animation-play-state: paused;
}

.app-shell:not(.rail-closed) .item-list {
  padding-right: 40px;
  padding-left: 6px;
}

.app-shell:not(.rail-closed) .rail-link {
  gap: 5px;
  min-height: 34px;
  padding: 6px 4px;
}

.app-shell:not(.rail-closed) .catalog-rail .category-word-rail,
.app-shell:not(.rail-closed) .rail-group h3,
.app-shell:not(.rail-closed) .rail-link .label,
.app-shell:not(.rail-closed) .rail-price,
.app-shell:not(.rail-closed) .tab-title {
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
}

.app-shell:not(.rail-closed) .catalog-rail .category-word-rail,
.app-shell:not(.rail-closed) .rail-group h3,
.app-shell:not(.rail-closed) .rail-link .label {
  color: #fffdf8;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.56),
    0 0 12px rgba(255, 42, 201, 0.34);
}

.app-shell:not(.rail-closed) .rail-link .label {
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    1.5px 1.5px 0 #ff2ac9,
    2.5px 2.5px 0 #03030a,
    3.5px 3.5px 0 #00d9ff,
    0 0 6px rgba(0, 217, 255, 0.46),
    0 0 8px rgba(255, 42, 201, 0.24);
}

.app-shell:not(.rail-closed) .catalog-rail .category-word-rail {
  font-size: 12px;
  letter-spacing: 0.035em;
}

.app-shell:not(.rail-closed) .rail-group h3 {
  color: var(--rail-section-color);
  font-size: 13px;
  letter-spacing: 0.055em;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 color-mix(in srgb, var(--rail-section-color) 82%, #ff2ac9 18%),
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 12px var(--rail-section-glow),
    0 0 18px var(--rail-section-shadow);
}

.app-shell:not(.rail-closed) .rail-link .label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  justify-items: center;
  column-gap: 3px;
  justify-self: stretch;
  width: auto;
  max-width: none;
  margin: 0 5px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.08;
}

.app-shell:not(.rail-closed) .rail-label-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.app-shell:not(.rail-closed) .rail-label-emoji {
  display: grid;
  place-items: center;
  width: 20px;
  min-width: 20px;
  margin-left: 0;
  font-size: 1.08em;
  line-height: 1;
  filter:
    drop-shadow(0 0 4px rgba(0, 229, 255, 0.54))
    drop-shadow(0 0 5px rgba(255, 42, 201, 0.24));
}

.app-shell:not(.rail-closed) .rail-link .label:not(:has(.rail-label-emoji)) {
  grid-template-columns: 1fr;
}

.app-shell:not(.rail-closed) .rail-price {
  color: #00e5ff;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #07040f,
    1.5px 1.5px 0 #005d79,
    0 0 7px rgba(0, 229, 255, 0.7),
    0 0 10px rgba(0, 229, 255, 0.32);
}

.app-shell:not(.rail-closed) .rail-link .label {
  font-size: 12px;
  line-height: 1.08;
}

.catalog-page {
  min-width: 0;
  height: 100dvh;
  padding: 0 14px 104px;
  overflow: hidden auto;
  contain: layout style;
  overflow-anchor: none;
  overscroll-behavior: contain;
  transition: none;
  scrollbar-width: none;
}

.catalog-page::-webkit-scrollbar {
  display: none;
}

.app-shell:not(.rail-closed) .catalog-page {
  width: 100%;
  padding: 6px 8px 104px;
}

.app-shell:not(.rail-closed) .catalog-header,
.app-shell:not(.rail-closed) .hero-summary,
.app-shell:not(.rail-closed) .catalog-stats {
  display: none;
}

.app-shell:not(.rail-closed) .top-dock .category-strip {
  display: none;
}

.app-shell:not(.rail-closed) .catalog-rail .category-pill {
  min-height: 46px;
  border-radius: 10px;
  padding: 4px 1px;
}

.app-shell:not(.rail-closed) .catalog-rail .category-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 8px 12px;
}

.app-shell:not(.rail-closed) .catalog-rail .category-pill-rail {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 10px;
  padding: 5px 4px;
  box-shadow:
    inset 0 0 12px color-mix(in srgb, var(--pill-color) 12%, transparent),
    0 0 12px color-mix(in srgb, var(--pill-color) 18%, transparent);
}

.app-shell:not(.rail-closed) .catalog-rail .category-pill-rail.active {
  box-shadow:
    inset 0 0 15px color-mix(in srgb, var(--pill-color) 18%, transparent),
    0 0 16px color-mix(in srgb, var(--pill-color) 32%, transparent);
}

.app-shell:not(.rail-closed) .catalog-rail .category-pill-rail .category-word-rail {
  height: 100%;
  max-width: 100%;
  padding-top: 1px;
  overflow-wrap: normal;
  text-wrap: nowrap;
  white-space: nowrap;
}

.app-shell.rail-switching,
.app-shell.rail-switching .catalog-page {
  scroll-behavior: auto;
}

.app-shell.rail-switching .rail-tab,
.app-shell.rail-switching .rail-tab::before,
.app-shell.rail-switching .rail-tab::after,
.app-shell.rail-switching .trust-ticker,
.app-shell.rail-switching .primary-action::before,
.app-shell.rail-switching .primary-action::after {
  animation-play-state: paused;
}

.app-shell.rail-switching .product-card,
.app-shell.rail-switching .category-pill,
.app-shell.rail-switching .rail-link,
.app-shell.rail-switching .variant-price,
.app-shell.rail-switching .primary-action,
.app-shell.rail-switching .order-panel,
.app-shell.rail-switching .trust-ticker,
.app-shell.rail-switching .thumb-button,
.app-shell.rail-switching .main-media {
  transition: none !important;
}

.app-shell.rail-switching .product-card,
.app-shell.rail-switching .trust-ticker {
  box-shadow: none;
}

.app-shell.rail-switching .catalog-rail {
  box-shadow: none;
}

.app-shell:not(.rail-closed) .product-feed,
.app-shell:not(.rail-closed) .product-group,
.app-shell:not(.rail-closed) .order-panel {
  gap: 12px;
}

.app-shell:not(.rail-closed) .trust-ticker {
  margin: 0 0 12px;
  height: 58px;
  min-height: 58px;
  grid-template-columns: 1fr auto;
  padding: 7px 8px 7px 10px;
}

.app-shell:not(.rail-closed) .trust-ticker-kicker {
  font-size: 8px;
}

.app-shell:not(.rail-closed) .trust-ticker strong {
  font-size: 10px;
}

.app-shell:not(.rail-closed) .trust-ticker-action {
  min-width: 36px;
  min-height: 28px;
  font-size: 8.5px;
}

.app-shell:not(.rail-closed) .product-card {
  min-width: 0;
  box-shadow: none;
}

.app-shell:not(.rail-closed) .main-media {
  min-height: 190px;
}

.app-shell:not(.rail-closed) .carousel {
  gap: 4px;
  padding: 2px;
}

.app-shell:not(.rail-closed) .thumb-bar {
  gap: 4px;
}

.app-shell:not(.rail-closed) .main-media,
.app-shell:not(.rail-closed) .thumb-button {
  border-radius: 4px;
}

.app-shell:not(.rail-closed) .product-body {
  padding: 8px;
}

.app-shell:not(.rail-closed) .product-meta {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.app-shell:not(.rail-closed) .product-body h2 {
  font-size: 20px;
}

.app-shell:not(.rail-closed) .product-body p {
  font-size: 11px;
}

.app-shell:not(.rail-closed) .price {
  justify-self: stretch;
  white-space: normal;
}

.app-shell:not(.rail-closed) .product-actions {
  grid-template-columns: 1fr;
}

.app-shell:not(.rail-closed) .primary-action {
  min-height: 36px;
  font-size: 13px;
}

.app-shell:not(.rail-closed) #item-2 .product-title-wrap,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-title-wrap {
  min-height: auto;
  padding-right: 0;
}

.app-shell:not(.rail-closed) #item-2 .product-body h2,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-body h2 {
  display: block;
  max-width: 100%;
  font-size: 19px;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.app-shell:not(.rail-closed) .product-card.title-size-long.stockup-card-style .product-body h2,
.app-shell:not(.rail-closed) #item-2 .product-body h2 {
  font-size: 16px;
}

.app-shell:not(.rail-closed) .product-card.title-size-xlong.stockup-card-style .product-body h2 {
  font-size: 15px;
  line-height: 1;
}

.app-shell:not(.rail-closed) #item-2 .product-body h2 > span:first-child,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-body h2 > span:first-child {
  display: inline;
  max-width: 100%;
}

.app-shell:not(.rail-closed) #item-2 .product-title-emoji,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-title-emoji {
  position: static;
  display: inline-block;
  margin-left: 3px;
  font-size: 16px;
  line-height: 1;
  vertical-align: -0.04em;
  transform: none;
}

.app-shell:not(.rail-closed) #item-2 .variant-pricing,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .variant-pricing {
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  width: 100%;
  min-width: 0;
}

.app-shell:not(.rail-closed) #item-2 .variant-price,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .variant-price {
  min-width: 0;
  min-height: 42px;
}

.app-shell:not(.rail-closed) #item-2 .variant-price strong,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .variant-price strong {
  font-size: 16px;
}

.app-shell:not(.rail-closed) #item-2 .variant-price small,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .variant-price small {
  font-size: 10px;
}

.app-shell:not(.rail-closed) #item-2 .primary-action,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .primary-action {
  width: 100%;
  min-width: 0;
}

.app-shell:not(.rail-closed) #item-2 .primary-action::after,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .primary-action::after {
  font-size: 13px;
}

.top-dock {
  --active-tone: #ff19ef;
  position: sticky;
  top: 0;
  z-index: 7;
  display: grid;
  gap: 10px;
  margin: 0 -14px 26px;
  border: 1px solid rgba(0, 229, 255, 0.42);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background:
    radial-gradient(circle at 18% 100%, rgba(255, 0, 210, 0.34), transparent 42%),
    radial-gradient(circle at 84% 0%, rgba(0, 229, 255, 0.28), transparent 44%),
    linear-gradient(135deg, rgba(2, 2, 12, 0.92), rgba(9, 2, 30, 0.76)),
    rgba(4, 5, 18, 0.64);
  padding: 10px 10px 12px;
  overflow: visible;
  overflow-anchor: none;
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.42),
    0 0 34px rgba(217, 0, 255, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 20px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(14px);
  transform: translateZ(0);
  transition:
    gap 340ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 340ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 340ms ease-out;
  will-change: padding, gap, box-shadow;
}

.top-dock[data-active-tone="pink"] {
  --active-tone: #ff19ef;
}

.top-dock[data-active-tone="blue"] {
  --active-tone: #00d9ff;
}

.top-dock[data-active-tone="green"] {
  --active-tone: #6dff00;
}

.top-dock[data-active-tone="yellow"] {
  --active-tone: #ffe600;
}

.top-dock[data-active-tone="purple"] {
  --active-tone: #b555ff;
}

.app-shell:not(.rail-closed) .top-dock {
  margin: -6px -8px 12px;
  padding: 6px 6px 8px;
  border-radius: 0 0 14px 14px;
}

.catalog-header {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 -10px;
  margin-bottom: 12px;
  height: 96px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: top center;
  contain: layout;
  transition:
    height 360ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-bottom 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease-out,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height, margin-bottom, opacity, transform;
}

.catalog-header::before,
.catalog-header::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.catalog-header::before {
  inset: 18px 42px 12px;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 48% 52%, rgba(255, 0, 217, 0.26), transparent 54%),
    radial-gradient(ellipse at 53% 50%, rgba(0, 229, 255, 0.18), transparent 64%);
  filter:
    blur(3px)
    drop-shadow(0 0 10px rgba(255, 0, 217, 0.7))
    drop-shadow(0 0 16px rgba(0, 229, 255, 0.48));
  mix-blend-mode: screen;
  opacity: 0.58;
  animation: order-letter-breathe 4.8s ease-in-out infinite;
  transition:
    opacity 260ms ease-out,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-header::after {
  inset: auto -16px -1px;
  z-index: 2;
  height: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(5, 4, 18, 0),
      rgba(7, 2, 28, 0.42) 45%,
      rgba(5, 4, 18, 0.88) 100%
    );
  opacity: 0.72;
  transform: translateY(0);
  backdrop-filter: blur(2px);
  transition:
    opacity 320ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-art {
  position: relative;
  z-index: 1;
  display: block;
  width: min(94%, 360px);
  height: 82px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter:
    drop-shadow(0 0 5px rgba(255, 0, 217, 0.7))
    drop-shadow(0 0 10px rgba(0, 229, 255, 0.42));
  animation: center-logo-breathe 4.8s ease-in-out infinite;
  transition:
    opacity 300ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease-out;
  will-change: opacity, transform, filter;
}

.logo-home-button {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.logo-home-button:focus-visible {
  outline: 2px solid rgba(0, 217, 255, 0.84);
  outline-offset: 4px;
  border-radius: 14px;
}

.logo-home-button-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 96px;
  max-height: none;
  opacity: 1;
  transition:
    opacity 300ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.top-dock.logo-collapsed {
  gap: 9px;
  padding-top: 8px;
  box-shadow:
    0 0 14px rgba(0, 229, 255, 0.34),
    0 0 24px rgba(217, 0, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 18px rgba(0, 229, 255, 0.07);
}

.top-dock.logo-collapsed .catalog-header {
  height: 12px;
  margin-bottom: -2px;
  opacity: 0.68;
  pointer-events: none;
  transform: translateY(-6px);
}

.top-dock.logo-collapsed .catalog-header::before {
  opacity: 0;
  transform: scale(0.78);
}

.top-dock.logo-collapsed .catalog-header::after {
  opacity: 0.16;
  transform: translateY(-8px);
}

.top-dock.logo-collapsed .logo-home-button-main {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30px) scale(0.9);
}

.top-dock.logo-collapsed .header-art {
  opacity: 0;
  transform: translateY(-18px) scale(0.92);
  filter:
    blur(2px)
    drop-shadow(0 0 7px rgba(255, 0, 217, 0.38))
    drop-shadow(0 0 12px rgba(0, 229, 255, 0.22));
}

.top-dock.logo-restoring .catalog-header {
  transition:
    height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-bottom 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease-out,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-dock.logo-restoring .catalog-header::before,
.top-dock.logo-restoring .catalog-header::after {
  transition:
    opacity 320ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-dock.logo-restoring .logo-home-button-main,
.top-dock.logo-restoring .header-art {
  transition:
    opacity 380ms ease-out,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 560ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .top-dock,
  .catalog-header,
  .catalog-header::before,
  .header-art,
  .logo-home-button-main {
    transition: none;
  }
}

.logo-home-button-rail {
  width: 100%;
}

.logo-home-button-info {
  justify-self: center;
  width: 100%;
  max-width: 128px;
}

@keyframes center-logo-breathe {
  0%,
  100% {
    filter:
      drop-shadow(0 0 5px rgba(255, 0, 217, 0.64))
      drop-shadow(0 0 10px rgba(0, 229, 255, 0.36));
    transform: scale(1);
  }

  50% {
    filter:
      drop-shadow(0 0 9px rgba(255, 0, 217, 0.9))
      drop-shadow(0 0 16px rgba(0, 229, 255, 0.62));
    transform: scale(1.012);
  }
}

@keyframes center-logo-sheen {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translate(-96%, -50%) skewX(-18deg);
  }

  72% {
    opacity: 0.9;
  }

  84% {
    opacity: 0;
    transform: translate(-4%, -50%) skewX(-18deg);
  }
}

.place-order-hotspot {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: -6px;
  width: 35%;
  border-radius: 0 0 16px 16px;
  text-decoration: none;
}

.place-order-hotspot::before,
.place-order-hotspot::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.place-order-hotspot::before {
  box-shadow: none;
  animation: none;
}

.place-order-hotspot::after {
  display: none;
}

@keyframes order-art-breathe {
  0%,
  100% {
    opacity: 0.72;
    box-shadow:
      0 0 14px rgba(0, 229, 255, 0.42),
      0 0 24px rgba(217, 0, 255, 0.22);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 24px rgba(0, 229, 255, 0.72),
      0 0 38px rgba(255, 0, 217, 0.46);
  }
}

@keyframes order-art-color-breathe {
  0%,
  100% {
    opacity: 0.44;
  }

  50% {
    opacity: 0.82;
  }
}

@keyframes stock-art-shimmer {
  0%,
  52%,
  100% {
    opacity: 0;
    filter: brightness(1);
  }

  55% {
    opacity: 1;
    filter: brightness(3.1);
  }

  58% {
    opacity: 0.5;
    filter: brightness(1.55);
  }

  63%,
  79% {
    opacity: 0.82;
    filter: brightness(1.9);
  }

  88% {
    opacity: 0.34;
    filter: brightness(1.35);
  }

  94% {
    opacity: 0;
  }
}

@keyframes order-letter-breathe {
  0%,
  100% {
    opacity: 0.5;
    filter:
      drop-shadow(0 0 7px rgba(255, 0, 217, 0.58))
      drop-shadow(0 0 14px rgba(0, 229, 255, 0.52));
  }

  50% {
    opacity: 1;
    filter:
      drop-shadow(0 0 12px rgba(255, 0, 217, 0.92))
      drop-shadow(0 0 24px rgba(0, 229, 255, 0.88));
  }
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--signal);
  font-family: "Fredoka", "Segoe UI Emoji", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-badge {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
}

.brand-text {
  position: relative;
  display: inline-block;
  color: #08030d;
  font-family: "Luckiest Guy", "Fredoka", sans-serif;
  font-size: 40px;
  line-height: 0.84;
  transform: rotate(-1deg) skewX(-8deg);
  -webkit-text-stroke: 1.4px rgba(255, 238, 255, 0.92);
  filter:
    drop-shadow(2px 2px 0 #ff2dff)
    drop-shadow(4px 4px 0 #a600ff)
    drop-shadow(6px 7px 0 rgba(4, 0, 10, 0.98));
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.98),
    1px 1px 0 rgba(255, 45, 255, 0.94),
    0 0 10px rgba(255, 45, 255, 0.88),
    0 0 24px rgba(255, 0, 217, 0.76),
    0 0 38px rgba(255, 0, 217, 0.5);
}

.brand-text::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: #ff2dff;
  content: "Stock Up";
  transform: translate(3px, 4px);
  -webkit-text-stroke: 1px rgba(255, 45, 255, 0.72);
  filter: blur(0.3px);
}

.brand-text::after {
  position: absolute;
  left: 6px;
  top: 3px;
  width: 78%;
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08));
  content: "";
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: skewX(-14deg);
  pointer-events: none;
}

.summary {
  max-width: 360px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Fredoka", "Segoe UI Emoji", sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.place-order-link {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: end;
  min-width: 84px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", sans-serif;
  padding: 0;
  text-align: right;
  text-decoration: none;
}

.order-kicker,
.place-order-link strong {
  position: relative;
  z-index: 1;
}

.order-kicker {
  color: #99f8ff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.78);
}

.place-order-link strong {
  color: #071229;
  font-family: "Luckiest Guy", "Fredoka", sans-serif;
  font-size: 22px;
  line-height: 0.92;
  transform: skewX(-6deg);
  -webkit-text-stroke: 0.8px rgba(235, 255, 255, 0.9);
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.82),
    1px 1px 0 #00e5ff,
    2px 3px 0 rgba(8, 2, 24, 0.96),
    0 0 14px rgba(0, 229, 255, 0.82),
    0 0 22px rgba(217, 0, 255, 0.28);
}

@keyframes glass-sweep {
  0%,
  55%,
  100% {
    transform: translateX(-120%);
  }

  72% {
    transform: translateX(120%);
  }
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  transition: gap 180ms ease;
}

.category-pill {
  --pill-color: var(--signal);
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  width: 100%;
  min-height: 62px;
  border: 1px solid color-mix(in srgb, var(--pill-color) 58%, transparent);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--pill-color) 18%, transparent), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(5, 4, 16, 0.38);
  color: var(--ink);
  padding: 8px 2px 7px;
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 800;
  box-shadow:
    0 0 14px color-mix(in srgb, var(--pill-color) 22%, transparent),
    inset 0 0 18px rgba(0, 229, 255, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.category-pill-pink {
  --pill-color: #ff19ef;
}

.category-pill-blue {
  --pill-color: #00d9ff;
}

.category-pill-green {
  --pill-color: #6dff00;
}

.category-pill-yellow {
  --pill-color: #ffe600;
}

.category-pill-purple {
  --pill-color: #b555ff;
}

.category-pill-gold {
  --pill-color: #ff9f1c;
}

.catalog-rail .category-pill-rail {
  grid-template-rows: 1fr;
}

.category-pill.active {
  border-color: var(--pill-color);
  background:
    radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--pill-color) 30%, transparent), transparent 62%),
    rgba(5, 4, 16, 0.68);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--pill-color) 62%, transparent),
    0 0 28px color-mix(in srgb, var(--pill-color) 34%, transparent),
    inset 0 0 18px color-mix(in srgb, var(--pill-color) 12%, transparent);
}

.top-dock.categories-collapsed .category-strip {
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: -2px;
}

.top-dock.categories-collapsed[data-active-category="indoors"] .category-strip {
  grid-template-columns: 1fr 1.45fr repeat(3, minmax(0, 1fr));
}

.top-dock.categories-collapsed[data-active-category="lows"] .category-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr)) 1.45fr repeat(2, minmax(0, 1fr));
}

.top-dock.categories-collapsed[data-active-category="pens"] .category-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.45fr minmax(0, 1fr);
}

.top-dock.categories-collapsed[data-active-category="gummies"] .category-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.45fr;
}

.top-dock.categories-collapsed .category-pill {
  min-height: 34px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(5, 4, 16, 0.42);
  padding: 0;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.top-dock.categories-collapsed .category-pill.active {
  border-color: color-mix(in srgb, var(--pill-color) 72%, transparent);
  border-radius: 9px;
  background: color-mix(in srgb, var(--pill-color) 14%, rgba(5, 4, 16, 0.38));
  box-shadow: 0 0 12px color-mix(in srgb, var(--pill-color) 28%, transparent);
}

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

.catalog-stats article {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 7, 25, 0.78);
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.08);
  padding: 10px;
}

.catalog-stats strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.catalog-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: "Fredoka", "Segoe UI Emoji", sans-serif;
  font-size: 10px;
  line-height: 1.15;
  text-transform: uppercase;
}

.order-panel {
  --cart-neon: #d600ff;
  --cart-purple: #d600ff;
  --cart-blue-purple: #6d5cff;
  --cart-bg: rgba(4, 9, 33, 0.97);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 8;
  display: grid;
  gap: 0;
  order: 2;
  width: var(--app-width);
  max-height: calc(100dvh - 10px);
  margin: 0;
  border: 1px solid rgba(214, 0, 255, 0.84);
  border-radius: 12px 12px 0 0;
  background: var(--cart-bg);
  padding: 0;
  box-shadow: 0 0 28px rgba(214, 0, 255, 0.42), 0 0 52px rgba(34, 231, 255, 0.18);
  backdrop-filter: blur(10px);
}

.order-panel.is-open {
  max-height: min(68dvh, 520px);
}

.app-shell:not(.rail-closed) .order-panel {
  left: var(--app-half-width);
  width: var(--app-half-width);
}

.app-shell:not(.rail-closed) .order-panel.is-open {
  max-height: min(62dvh, 460px);
}

.order-panel.is-empty {
  display: none;
}

.info-page .order-panel {
  left: 0;
  bottom: 0;
  z-index: 12;
  width: var(--app-width);
}

.order-toolbar {
  order: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, 84px) minmax(82px, 96px);
  align-items: center;
  column-gap: clamp(6px, 2vw, 10px);
  width: 100%;
  min-height: 52px;
  border-top: 1px solid rgba(214, 0, 255, 0.48);
  background:
    radial-gradient(circle at 10% 50%, rgba(214, 0, 255, 0.16), transparent 34%),
    rgba(5, 10, 37, 0.96);
  color: var(--ink);
  padding: 10px clamp(10px, 4vw, 16px);
  text-align: left;
}

.order-toggle,
.checkout-button {
  border: 0;
  background: transparent;
}

.order-subtotal-preview {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  white-space: nowrap;
}

.order-subtotal-preview small,
.order-toggle-label {
  color: var(--cart-neon);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow:
    0 0 7px rgba(214, 0, 255, 0.66),
    0 0 12px rgba(214, 0, 255, 0.34);
}

.order-subtotal-preview strong {
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(17px, 5.4vw, 20px);
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.55),
    0 0 10px rgba(255, 255, 255, 0.18);
}

.checkout-button {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 100%;
  min-height: 32px;
  border: 1px solid rgba(34, 231, 255, 0.74);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(34, 231, 255, 0.22), rgba(214, 0, 255, 0.2)),
    rgba(5, 13, 39, 0.72);
  color: #ffffff;
  padding: 0 8px;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(10px, 3.1vw, 11.5px);
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.48),
    0 0 10px rgba(34, 231, 255, 0.22);
  box-shadow: 0 0 14px rgba(34, 231, 255, 0.28), inset 0 0 12px rgba(214, 0, 255, 0.12);
  white-space: nowrap;
  animation: checkout-breathe 2.8s ease-in-out infinite;
  transition: transform 120ms ease, border-color 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  will-change: transform, box-shadow;
}

.checkout-button:not(:disabled):active {
  border-color: rgba(255, 87, 239, 0.92);
  box-shadow:
    0 0 18px rgba(34, 231, 255, 0.44),
    0 0 20px rgba(214, 0, 255, 0.28),
    inset 0 0 14px rgba(214, 0, 255, 0.18);
  filter: brightness(1.18);
  transform: translateY(1px) scale(0.96);
}

.checkout-button:disabled {
  animation: none;
  opacity: 0.72;
}

.order-toggle-label {
  justify-self: center;
  display: inline-block;
  font-size: 8px;
  white-space: nowrap;
  transform-origin: center;
  transition: text-shadow 160ms ease, filter 160ms ease;
  will-change: transform, text-shadow, filter;
}

.order-toggle.is-cart-pulsing .order-toggle-label {
  animation: order-list-pop 620ms cubic-bezier(0.2, 1.35, 0.34, 1);
}

.order-toggle {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  justify-self: center;
  text-align: center;
  transform: translateX(-20%);
}

.app-shell:not(.rail-closed) .order-toolbar {
  position: relative;
  grid-template-columns: 48px minmax(42px, 1fr) 52px;
  grid-template-rows: auto;
  column-gap: 2px;
  min-height: 58px;
  padding: 8px 3px;
}

.app-shell:not(.rail-closed) .order-subtotal-preview {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-items: center;
  justify-self: start;
  gap: 1px;
  width: 48px;
  min-height: 30px;
}

.app-shell:not(.rail-closed) .order-subtotal-preview strong {
  font-size: 11px;
}

.app-shell:not(.rail-closed) .order-subtotal-preview small,
.app-shell:not(.rail-closed) .order-toggle-label {
  font-size: 7px;
  letter-spacing: 0;
}

.app-shell:not(.rail-closed) .checkout-button {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 52px;
  min-height: 30px;
  padding: 0 4px;
  font-size: 7px;
  letter-spacing: 0;
}

.app-shell:not(.rail-closed) .order-toggle {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  left: auto;
  top: auto;
  justify-self: center;
  width: 100%;
  padding: 0;
  text-align: center;
  transform: translateX(-20%);
}

.app-shell:not(.rail-closed) .order-toggle-label::after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-left: 0;
  transform: translateY(-50%);
}

.app-shell:not(.rail-closed) .order-toggle-label {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 3px;
  text-align: center;
}

.order-toggle-label::after {
  display: inline-block;
  margin-left: 6px;
  content: "▴";
  transform-origin: 50% 55%;
  transition: transform 180ms ease;
}

.order-panel.is-open .order-toggle-label::after {
  transform: rotate(180deg);
}

.app-shell:not(.rail-closed) .order-panel.is-open .order-toggle-label::after {
  transform: translateY(-50%) rotate(180deg);
}

@keyframes order-list-pop {
  0% {
    filter: brightness(1);
    text-shadow: 0 0 8px rgba(214, 0, 255, 0.58);
    transform: translateY(0) scale(1);
  }
  34% {
    filter: brightness(1.34);
    text-shadow:
      0 0 7px rgba(255, 255, 255, 0.7),
      0 0 16px rgba(214, 0, 255, 0.9),
      0 0 22px rgba(34, 231, 255, 0.4);
    transform: translateY(-4px) scale(1.12);
  }
  68% {
    filter: brightness(1.12);
    text-shadow:
      0 0 6px rgba(255, 87, 239, 0.64),
      0 0 14px rgba(214, 0, 255, 0.66);
    transform: translateY(1px) scale(0.98);
  }
  100% {
    filter: brightness(1);
    text-shadow: 0 0 8px rgba(214, 0, 255, 0.58);
    transform: translateY(0) scale(1);
  }
}

@keyframes checkout-breathe {
  0%,
  100% {
    border-color: rgba(34, 231, 255, 0.68);
    box-shadow: 0 0 12px rgba(34, 231, 255, 0.22), inset 0 0 12px rgba(214, 0, 255, 0.1);
    filter: brightness(1);
  }
  50% {
    border-color: rgba(34, 231, 255, 0.96);
    box-shadow:
      0 0 18px rgba(34, 231, 255, 0.42),
      0 0 20px rgba(214, 0, 255, 0.16),
      inset 0 0 14px rgba(214, 0, 255, 0.16);
    filter: brightness(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-button,
  .order-toggle.is-cart-pulsing .order-toggle-label,
  .trust-ticker::after,
  .trust-ticker-action,
  .trust-ticker-action::after {
    animation: none;
  }

  .checkout-button,
  .order-toggle-label,
  .order-toggle-label::after,
  .trust-ticker-action {
    transition: none;
  }
}

.order-details {
  order: 1;
  display: none;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(214, 0, 255, 0.32);
  background:
    radial-gradient(circle at 14% 0%, rgba(34, 231, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(2, 21, 55, 0.96), rgba(12, 3, 52, 0.96));
  padding: 10px 12px 9px;
}

.order-panel.is-open .order-details {
  display: grid;
}

.order-head,
.order-total,
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-head strong,
.order-total strong {
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
  -webkit-text-stroke: 0.55px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.5);
}

.order-head span,
.order-total span,
.order-items p,
.order-row span {
  color: #22e7ff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.25px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #005d79,
    0 0 8px rgba(34, 231, 255, 0.66);
}

.order-items {
  display: grid;
  gap: 6px;
  min-height: 0;
  max-height: clamp(130px, 31dvh, 270px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-color: rgba(34, 231, 255, 0.82) rgba(4, 6, 24, 0.7);
  scrollbar-width: thin;
}

.order-items p {
  margin: 0;
  text-align: center;
}

.app-shell:not(.rail-closed) .order-items {
  max-height: clamp(104px, 27dvh, 220px);
}

.tier-discount {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(143, 255, 66, 0.34);
  border-radius: 9px;
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 255, 66, 0.16), transparent 42%),
    rgba(4, 6, 24, 0.62);
  box-shadow: inset 0 0 14px rgba(143, 255, 66, 0.08), 0 0 14px rgba(143, 255, 66, 0.12);
}

.tier-discount[hidden] {
  display: none;
}

.tier-discount span,
.tier-discount strong {
  color: #8fff42;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
  -webkit-text-stroke: 0.2px #071209;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #071209,
    0 0 9px rgba(143, 255, 66, 0.5);
}

.tier-discount span {
  min-width: 0;
  font-size: 18px;
  white-space: nowrap;
}

.tier-discount strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  justify-self: end;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #071209,
    2px 2px 0 #6dff00,
    0 0 12px rgba(143, 255, 66, 0.52);
}

.payment-choice {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(34, 231, 255, 0.3);
  border-radius: 8px;
  background: rgba(4, 6, 24, 0.48);
}

.payment-choice > span {
  color: #22e7ff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0.25px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #005d79,
    0 0 8px rgba(34, 231, 255, 0.66);
}

.payment-options {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: thin;
}

.payment-option {
  flex: 0 0 auto;
  min-height: 26px;
  border: 1px solid rgba(214, 0, 255, 0.5);
  border-radius: 999px;
  background: rgba(4, 6, 24, 0.76);
  color: #ffffff;
  padding: 0 9px;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.44);
}

.payment-option.is-selected {
  border-color: rgba(34, 231, 255, 0.86);
  background: linear-gradient(135deg, rgba(34, 231, 255, 0.22), rgba(214, 0, 255, 0.2));
  box-shadow: 0 0 12px rgba(34, 231, 255, 0.26);
}

.checkout-status {
  min-height: 14px;
  margin: 0;
  color: #9aa8ff;
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
}

.order-row {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(58, 0, 91, 0.92), rgba(20, 8, 60, 0.92));
  border: 1px solid rgba(214, 0, 255, 0.26);
  padding: 8px;
  box-shadow: inset 0 0 18px rgba(214, 0, 255, 0.08);
}

.order-item-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.order-row strong {
  overflow: hidden;
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.4px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.44);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-row-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
}

.quantity-count {
  min-width: 14px;
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff;
}

.order-row button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 231, 255, 0.62);
  border-radius: 50%;
  background: rgba(4, 6, 24, 0.78);
  color: #22e7ff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-weight: 800;
  line-height: 1;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #07040f,
    0 0 8px rgba(34, 231, 255, 0.48);
}

.quantity-button {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  font-size: 15px;
}

.trash-button {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--cart-neon);
  border-color: rgba(214, 0, 255, 0.72);
  font-size: 14px;
}

.order-subtotal {
  order: 3;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(57, 255, 20, 0.28);
  padding: 10px 12px 12px;
}

.order-panel.is-open .order-subtotal {
  display: none;
}

.order-subtotal span {
  color: var(--cart-neon);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow:
    0 0 7px rgba(214, 0, 255, 0.66),
    0 0 12px rgba(214, 0, 255, 0.34);
}

.order-subtotal strong {
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.55),
    0 0 10px rgba(255, 255, 255, 0.18);
}

.product-feed {
  display: grid;
  gap: 18px;
  overflow-anchor: none;
  padding-bottom: 520px;
}

.product-group {
  display: grid;
  gap: 18px;
  scroll-margin-top: 184px;
}

.product-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px solid color-mix(in srgb, var(--active-tone, var(--signal)) 42%, rgba(0, 229, 255, 0.4));
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(217, 0, 255, 0.14), transparent 62%),
    rgba(5, 4, 16, 0.68);
  color: #ffffff;
  text-align: center;
  box-shadow: inset 0 0 22px rgba(0, 229, 255, 0.08);
}

.product-empty strong,
.product-empty span {
  display: block;
  font-family: var(--display-font);
  text-shadow: var(--compact-graffiti-shadow);
}

.product-empty strong {
  color: var(--active-tone, var(--signal));
  font-size: 22px;
  letter-spacing: 0.06em;
}

.product-empty span {
  color: var(--muted);
  font-size: 15px;
}

.product-group-header {
  display: none;
  align-items: end;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding: 2px 0 10px;
  overflow: visible;
}

.product-group-header p {
  position: relative;
  margin: 0;
  font-family: "Fredoka", "Segoe UI Emoji", sans-serif;
  line-height: 1;
  overflow: visible;
}

.app-shell.rail-closed .product-group-header p {
  margin-left: 34px;
}

.product-group-header span {
  color: var(--muted);
  font-family: "Fredoka", "Segoe UI Emoji", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.category-word {
  --category-color: var(--signal);
  display: inline-block;
  color: #ffffff;
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.54),
    1px 1px 0 #05040c,
    0 0 4px color-mix(in srgb, var(--category-color) 48%, #ffffff 52%),
    0 0 7px color-mix(in srgb, var(--category-color) 36%, transparent);
}

.category-word-bubble {
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 color-mix(in srgb, var(--category-color) 78%, #ff2ac9 22%),
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 7px color-mix(in srgb, var(--category-color) 58%, transparent),
    0 0 11px color-mix(in srgb, var(--category-color) 28%, transparent);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 180ms ease, transform 180ms ease, font-size 180ms ease;
}

.category-word-section {
  font-size: 20px;
}

.category-word-exotics {
  --category-color: #ff19ef;
}

.category-word-indoors {
  --category-color: #00d9ff;
}

.category-word-lows {
  --category-color: #6dff00;
}

.category-word-pens {
  --category-color: #ffe600;
}

.category-word-gummies {
  --category-color: #b555ff;
  color: #ffffff;
}

.category-word-specials {
  --category-color: #ff9f1c;
}

.catalog-rail .category-word-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
}

.app-shell:not(.rail-closed) .category-word-bubble {
  font-size: 7px;
}

.top-dock.categories-collapsed .category-word-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  height: 100%;
  padding: 2px 3px 0;
  font-size: 7.5px;
  line-height: 1;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: none;
  text-align: center;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 color-mix(in srgb, var(--category-color) 78%, #ff2ac9 22%),
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 7px color-mix(in srgb, var(--category-color) 52%, transparent);
}

.top-dock.categories-collapsed .category-pill.active .category-word-bubble {
  font-size: 12px;
  letter-spacing: 0.02em;
  transform: translateX(0);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--pill-color) 92%, #ffffff 8%);
  border-radius: 50%;
  color: var(--pill-color);
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--pill-color) 70%, transparent));
  transition: opacity 160ms ease, transform 160ms ease, width 160ms ease, height 160ms ease;
}

.category-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.category-pill-purple .category-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.category-pill small {
  color: color-mix(in srgb, var(--pill-color) 78%, #ffffff 22%);
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 8px color-mix(in srgb, var(--pill-color) 58%, transparent);
  transition: opacity 160ms ease, transform 160ms ease;
}

.top-dock.categories-collapsed .category-icon {
  width: 0;
  height: 0;
  opacity: 0;
  transform: scale(0.8);
  overflow: hidden;
}

.active-section-bar {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 4px 4px 0;
  transition: opacity 180ms ease, max-height 180ms ease, transform 180ms ease;
}

.top-dock.categories-collapsed .active-section-bar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-22px);
  overflow: hidden;
}

.active-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.active-section-row strong {
  color: var(--active-tone);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 color-mix(in srgb, var(--active-tone) 82%, #ff2ac9 18%),
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 10px color-mix(in srgb, var(--active-tone) 72%, transparent),
    0 0 16px color-mix(in srgb, var(--active-tone) 38%, transparent);
}

.active-section-row span {
  color: var(--active-tone);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 color-mix(in srgb, var(--active-tone) 74%, #ff2ac9 26%),
    3px 3px 0 #03030a,
    0 0 7px color-mix(in srgb, var(--active-tone) 72%, transparent),
    0 0 13px color-mix(in srgb, var(--active-tone) 42%, transparent);
}

.active-progress-track {
  position: relative;
  height: 2px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.14);
}

.active-progress-track span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--active-tone), color-mix(in srgb, var(--active-tone) 55%, #ffffff 45%));
  box-shadow:
    0 0 4px color-mix(in srgb, var(--active-tone) 70%, transparent),
    0 0 8px color-mix(in srgb, var(--active-tone) 28%, transparent);
  transition: width 120ms linear;
}

.category-collapse-toggle {
  position: absolute;
  left: 50%;
  bottom: -14px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 26px;
  border: 1px solid color-mix(in srgb, var(--active-tone) 76%, #22e7ff 24%);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.16), transparent 45%),
    rgba(5, 4, 16, 0.9);
  color: var(--active-tone);
  box-shadow:
    0 0 10px color-mix(in srgb, var(--active-tone) 62%, transparent),
    0 8px 18px rgba(0, 0, 0, 0.28);
  font-family: var(--display-font);
  font-size: 15px;
  line-height: 1;
  transform: translateX(-50%);
}

.category-collapse-toggle span[aria-hidden="true"] {
  transform: translateY(-1px);
}

.trust-ticker {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: center;
  height: 60px;
  min-height: 60px;
  margin: -8px 0 16px;
  border: 1px solid rgba(255, 25, 239, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 25, 239, 0.16), rgba(0, 217, 255, 0.12)),
    rgba(5, 4, 16, 0.84);
  padding: 8px 10px 8px 12px;
  color: #ffffff;
  box-shadow:
    0 0 14px rgba(255, 25, 239, 0.22),
    0 0 18px rgba(0, 217, 255, 0.16),
    inset 0 0 14px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  overflow: hidden;
}

.trust-ticker::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #ff19ef, #00d9ff, #6dff00);
  box-shadow: 0 0 9px rgba(0, 217, 255, 0.72);
}

.trust-ticker::after {
  content: none;
}

.trust-ticker:focus-visible {
  outline: 2px solid #00d9ff;
  outline-offset: 2px;
}

.trust-ticker[data-ticker-tone="yellow"] {
  --ticker-kicker-color: #ffe94d;
  --ticker-kicker-pop: rgba(255, 233, 77, 0.94);
  --ticker-kicker-glow: rgba(255, 233, 77, 0.58);
}

.trust-ticker[data-ticker-tone="cyan"] {
  --ticker-kicker-color: #00e5ff;
  --ticker-kicker-pop: rgba(0, 229, 255, 0.94);
  --ticker-kicker-glow: rgba(0, 229, 255, 0.58);
}

.trust-ticker[data-ticker-tone="blue"] {
  --ticker-kicker-color: #8fb6ff;
  --ticker-kicker-pop: rgba(143, 182, 255, 0.94);
  --ticker-kicker-glow: rgba(143, 182, 255, 0.58);
}

.trust-ticker[data-ticker-tone="green"] {
  --ticker-kicker-color: #a9ff5c;
  --ticker-kicker-pop: rgba(139, 255, 61, 0.94);
  --ticker-kicker-glow: rgba(139, 255, 61, 0.58);
}

.trust-ticker[data-ticker-tone="pink"] {
  --ticker-kicker-color: #ff8bf4;
  --ticker-kicker-pop: rgba(255, 25, 239, 0.94);
  --ticker-kicker-glow: rgba(255, 25, 239, 0.58);
}

.trust-ticker[data-ticker-tone="orange"] {
  --ticker-kicker-color: #ffb347;
  --ticker-kicker-pop: rgba(255, 179, 71, 0.94);
  --ticker-kicker-glow: rgba(255, 179, 71, 0.58);
}

.trust-ticker-kicker,
.trust-ticker strong {
  min-width: 0;
  grid-column: 1;
}

.trust-ticker-kicker {
  color: var(--ticker-kicker-color, #ff8bf4);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(0, 217, 255, 0.74),
    -1px -1px 0 var(--ticker-kicker-pop, rgba(255, 25, 239, 0.9)),
    0 0 8px var(--ticker-kicker-glow, rgba(255, 25, 239, 0.52));
}

.trust-ticker strong {
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 13px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.48),
    0 0 8px rgba(255, 255, 255, 0.16);
}

.trust-ticker-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 31px;
  border: 1px solid rgba(0, 217, 255, 0.44);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(0, 217, 255, 0.12), rgba(255, 25, 239, 0.1)),
    rgba(5, 4, 16, 0.72);
  color: #00d9ff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.78),
    0 0 9px rgba(0, 217, 255, 0.86);
  box-shadow:
    0 0 10px rgba(0, 217, 255, 0.28),
    inset 0 0 10px rgba(0, 217, 255, 0.1);
  overflow: hidden;
  animation: trustOpenFloat 2.8s ease-in-out infinite;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.trust-ticker-action::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.24), transparent 64%);
  opacity: 0.78;
  filter: blur(4px);
}

.trust-ticker-action::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -58%;
  width: 46%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: rotate(16deg);
  animation: trustOpenGlint 2.8s ease-in-out infinite;
}

.trust-ticker:hover .trust-ticker-action,
.trust-ticker:focus-visible .trust-ticker-action {
  border-color: rgba(255, 25, 239, 0.78);
  box-shadow:
    0 0 12px rgba(255, 25, 239, 0.34),
    0 0 18px rgba(0, 217, 255, 0.28),
    inset 0 0 12px rgba(255, 25, 239, 0.14);
  transform: translateY(-1px) scale(1.04);
}

.info-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: var(--app-width);
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 25, 239, 0.24), transparent 32%),
    radial-gradient(circle at 84% 8%, rgba(0, 217, 255, 0.2), transparent 35%),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(217, 0, 255, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--paper);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  transition: grid-template-columns 220ms ease;
}

.info-page[hidden] {
  display: none;
}

.info-page:not(.info-rail-open) {
  grid-template-columns: minmax(0, 1fr);
}

.info-page.info-rail-open .info-rail-toggle {
  right: 0;
  border-radius: 12px 0 0 12px;
}

.info-page.info-rail-open .info-rail-toggle::before,
.info-page.info-rail-open .info-rail-toggle::after {
  content: "‹";
}

.info-page:not(.info-rail-open) .info-rail-toggle {
  right: -24px;
  border-radius: 0 12px 12px 0;
}

.info-page:not(.info-rail-open) .info-rail-brand,
.info-page:not(.info-rail-open) .info-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
}

.info-rail {
  position: relative;
  min-width: 0;
  height: 100dvh;
  border-right: 1px solid rgba(0, 229, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(16, 5, 36, 0.96), rgba(5, 4, 16, 0.96)),
    var(--panel);
  box-shadow:
    inset -1px 0 0 rgba(255, 25, 239, 0.32),
    14px 0 32px rgba(0, 0, 0, 0.36);
  overflow: visible;
}

.info-rail-toggle {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 24px;
  height: 172px;
  border: 1px solid rgba(0, 229, 255, 0.7);
  border-left: 0;
  background:
    linear-gradient(180deg, rgba(217, 0, 255, 0.1), rgba(0, 229, 255, 0.12)),
    rgba(5, 4, 12, 0.46);
  color: var(--signal);
  box-shadow:
    0 0 14px rgba(0, 229, 255, 0.56),
    0 0 28px rgba(217, 0, 255, 0.34),
    inset 0 0 14px rgba(0, 229, 255, 0.18);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: right 230ms ease, border-radius 230ms ease, box-shadow 230ms ease;
  animation: tab-breathe 2.8s ease-in-out infinite;
}

.info-rail-toggle::before,
.info-rail-toggle::after {
  position: absolute;
  color: #00e5ff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.96),
    0 0 16px rgba(217, 0, 255, 0.64);
  animation: arrow-pulse 1.4s ease-in-out infinite;
}

.info-rail-toggle::before {
  top: 10px;
  content: "›";
}

.info-rail-toggle::after {
  bottom: 10px;
  content: "›";
}

.info-rail-toggle span[aria-hidden="true"] {
  display: block;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  width: 104px;
  color: #ff2dff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(0, 217, 255, 0.7),
    0 0 9px rgba(217, 0, 255, 0.86),
    0 0 18px rgba(0, 229, 255, 0.48);
  transform: rotate(-90deg);
  white-space: nowrap;
  animation: title-flicker 4.2s ease-in-out infinite;
}

.info-rail-brand {
  display: grid;
  place-items: center;
  padding: 14px 8px 8px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.info-rail-brand img {
  width: min(104px, 88%);
  height: auto;
  filter: drop-shadow(0 0 9px rgba(0, 217, 255, 0.38));
}

.info-nav {
  display: grid;
  gap: 9px;
  padding: 8px 10px 16px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.info-nav-button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 25, 239, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 25, 239, 0.1), rgba(0, 217, 255, 0.08)),
    rgba(7, 5, 22, 0.84);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.4px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.78),
    3px 3px 0 rgba(0, 217, 255, 0.72),
    0 0 8px rgba(255, 255, 255, 0.38);
}

.info-nav-button.active {
  border-color: rgba(0, 217, 255, 0.68);
  color: #00d9ff;
  box-shadow:
    0 0 12px rgba(0, 217, 255, 0.26),
    inset 0 0 14px rgba(255, 25, 239, 0.13);
}

.info-content {
  min-width: 0;
  height: 100dvh;
  overflow: hidden auto;
  padding: max(12px, env(safe-area-inset-top)) 12px 118px;
  scrollbar-width: none;
}

.info-content::-webkit-scrollbar {
  display: none;
}

.info-header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 58px minmax(98px, 1fr) 58px;
  align-items: center;
  gap: 5px;
  margin: -12px -12px 16px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.28);
  background: rgba(5, 4, 16, 0.88);
  padding: 8px 8px 7px;
  backdrop-filter: blur(12px);
}

.info-top-nav {
  position: sticky;
  top: 70px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.82fr 0.82fr;
  gap: 6px;
  align-items: stretch;
  width: min(100%, 326px);
  margin: -8px auto 16px;
  padding: 4px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 25, 239, 0.1), rgba(0, 217, 255, 0.08)),
    rgba(5, 4, 16, 0.78);
  box-shadow:
    0 0 12px rgba(0, 217, 255, 0.12),
    inset 0 0 16px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.info-top-nav:has(.info-top-button:nth-child(2).active) {
  grid-template-columns: 0.82fr 1.2fr 0.82fr 0.82fr;
}

.info-top-nav:has(.info-top-button:nth-child(3).active) {
  grid-template-columns: 0.82fr 0.82fr 1.2fr 0.82fr;
}

.info-top-nav:has(.info-top-button:nth-child(4).active) {
  grid-template-columns: 0.82fr 0.82fr 0.82fr 1.2fr;
}

.info-top-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  align-items: center;
  justify-items: center;
  min-width: 0;
  min-height: 43px;
  border: 1px solid rgba(255, 25, 239, 0.22);
  border-radius: 8px;
  background: rgba(10, 6, 28, 0.74);
  color: #d8dcff;
  padding: 4px 3px;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.info-top-button span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 25, 239, 0.14);
  color: #ff8bf4;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 0.3px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 7px rgba(255, 25, 239, 0.58);
}

.info-top-button strong {
  min-width: 0;
  width: 100%;
  color: inherit;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 7.4px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  text-overflow: clip;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.74),
    3px 3px 0 rgba(0, 217, 255, 0.64),
    0 0 7px rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.info-top-button.active {
  border-color: rgba(0, 217, 255, 0.7);
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 25, 239, 0.28), transparent 48%),
    rgba(0, 217, 255, 0.12);
  color: #ffffff;
  box-shadow:
    0 0 12px rgba(0, 217, 255, 0.24),
    inset 0 0 14px rgba(255, 25, 239, 0.12);
  transform: translateY(-1px);
}

.info-top-button.active span {
  background: rgba(0, 217, 255, 0.18);
  color: #00d9ff;
  box-shadow: 0 0 9px rgba(0, 217, 255, 0.34);
}

.info-top-button.active strong {
  color: #00d9ff;
  font-size: 9.2px;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.72),
    3px 3px 0 rgba(0, 217, 255, 0.72),
    0 0 8px rgba(0, 217, 255, 0.58);
}

.info-page.info-rail-open .info-top-button {
  min-height: 32px;
}

.info-page.info-rail-open .info-top-button strong {
  display: none;
}

.info-header-logo {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 128px;
  height: 54px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 25, 239, 0.52))
    drop-shadow(0 0 13px rgba(0, 217, 255, 0.28));
}

.info-back,
.info-alerts {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 58px;
  min-height: 30px;
  border: 1px solid rgba(0, 217, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.08);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 4px 7px 5px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 7px rgba(255, 255, 255, 0.28);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.info-back {
  justify-self: start;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(90deg, rgba(0, 217, 255, 0.16), rgba(255, 25, 239, 0.08)),
    rgba(0, 217, 255, 0.06);
  box-shadow:
    0 0 10px rgba(0, 217, 255, 0.2),
    inset 0 0 12px rgba(0, 217, 255, 0.06);
  animation: info-back-breathe 2.8s ease-in-out infinite;
}

.info-back::before {
  content: "‹";
  position: absolute;
  left: 8px;
  top: 50%;
  color: #00e5ff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.82),
    0 0 12px rgba(255, 25, 239, 0.36);
  transform: translate(-5px, -52%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.info-back::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 12%, rgba(0, 229, 255, 0.22) 42%, rgba(255, 255, 255, 0.3) 50%, transparent 68%);
  opacity: 0;
  transform: translateX(70%);
  pointer-events: none;
}

.info-back:hover,
.info-back:focus-visible {
  border-color: rgba(0, 229, 255, 0.82);
  color: #ffffff;
  filter: brightness(1.08);
  box-shadow:
    0 0 15px rgba(0, 229, 255, 0.42),
    0 0 16px rgba(255, 25, 239, 0.18),
    inset 0 0 14px rgba(0, 217, 255, 0.12);
  transform: translateY(-1px);
}

.info-back:hover::before,
.info-back:focus-visible::before {
  opacity: 1;
  transform: translate(-1px, -52%);
}

.info-back:hover::after,
.info-back:focus-visible::after {
  animation: info-back-glint 1.15s ease-out;
}

.info-back:active {
  border-color: rgba(255, 25, 239, 0.82);
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.44),
    0 0 18px rgba(255, 25, 239, 0.26),
    inset 0 0 18px rgba(255, 25, 239, 0.16);
  transform: translateX(-2px) scale(0.96);
}

.info-alerts {
  justify-self: end;
  display: inline-grid;
  grid-template-columns: auto minmax(0, auto);
  gap: 4px;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 25, 239, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 25, 239, 0.2), rgba(0, 217, 255, 0.16)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(255, 25, 239, 0.12);
  color: #ffffff;
  box-shadow:
    0 0 10px rgba(255, 25, 239, 0.28),
    0 0 16px rgba(0, 217, 255, 0.16),
    inset 0 0 12px rgba(0, 217, 255, 0.08);
  animation: info-alerts-breathe 2.4s ease-in-out infinite;
}

.info-alerts span:last-child {
  min-width: 0;
}

.info-alerts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e5ff;
  box-shadow:
    0 0 6px rgba(0, 229, 255, 0.98),
    0 0 12px rgba(255, 25, 239, 0.7);
}

.info-alerts::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 16%, rgba(255, 255, 255, 0.34) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-78%);
  pointer-events: none;
}

.info-alerts:hover,
.info-alerts:focus-visible,
.info-alerts.is-enabled {
  border-color: rgba(0, 229, 255, 0.86);
  color: #ffffff;
  filter: brightness(1.08);
  box-shadow:
    0 0 16px rgba(0, 229, 255, 0.5),
    0 0 22px rgba(255, 25, 239, 0.32),
    inset 0 0 16px rgba(255, 25, 239, 0.14);
  transform: translateY(-1px);
}

.info-alerts:hover::before,
.info-alerts:focus-visible::before {
  animation: info-alerts-glint 1.1s ease-out;
}

.info-alerts:active {
  transform: scale(0.96);
}

.info-alerts.is-unavailable {
  opacity: 0.78;
}

@keyframes info-back-breathe {
  0%,
  100% {
    border-color: rgba(0, 217, 255, 0.42);
    box-shadow:
      0 0 10px rgba(0, 217, 255, 0.2),
      inset 0 0 12px rgba(0, 217, 255, 0.06);
  }

  50% {
    border-color: rgba(0, 229, 255, 0.68);
    box-shadow:
      0 0 15px rgba(0, 229, 255, 0.34),
      0 0 12px rgba(255, 25, 239, 0.16),
      inset 0 0 13px rgba(0, 217, 255, 0.1);
  }
}

@keyframes info-alerts-breathe {
  0%,
  100% {
    border-color: rgba(255, 25, 239, 0.48);
    box-shadow:
      0 0 10px rgba(255, 25, 239, 0.28),
      0 0 16px rgba(0, 217, 255, 0.16),
      inset 0 0 12px rgba(0, 217, 255, 0.08);
  }

  50% {
    border-color: rgba(0, 229, 255, 0.78);
    box-shadow:
      0 0 16px rgba(0, 229, 255, 0.44),
      0 0 24px rgba(255, 25, 239, 0.34),
      inset 0 0 14px rgba(255, 25, 239, 0.14);
  }
}

@keyframes info-alerts-glint {
  0% {
    opacity: 0;
    transform: translateX(-78%);
  }

  24% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(78%);
  }
}

@keyframes info-back-glint {
  0% {
    opacity: 0;
    transform: translateX(70%);
  }

  24% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translateX(-72%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-back,
  .info-alerts,
  .info-back:hover::after,
  .info-back:focus-visible::after,
  .info-alerts:hover::before,
  .info-alerts:focus-visible::before {
    animation: none;
  }
}

.info-panel {
  display: grid;
  gap: 14px;
}

.info-panel[hidden] {
  display: none;
}

.info-kicker {
  margin: 0;
  color: #00d9ff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.72),
    0 0 8px rgba(0, 217, 255, 0.56);
}

.info-panel h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  -webkit-text-stroke: 0.65px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.82),
    3px 3px 0 rgba(0, 217, 255, 0.76),
    0 0 9px rgba(255, 255, 255, 0.22),
    0 0 14px rgba(255, 25, 239, 0.2);
}

.info-stack,
.review-list,
.faq-list,
.specials-list {
  display: grid;
  gap: 10px;
}

.info-card,
.review-card,
.faq-list details {
  border: 1px solid rgba(0, 229, 255, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 25, 239, 0.11), transparent 44%),
    rgba(8, 6, 24, 0.86);
  padding: 11px;
  box-shadow: inset 0 0 18px rgba(0, 217, 255, 0.05);
}

.info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: start;
}

.install-card {
  border-color: rgba(255, 25, 239, 0.44);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 25, 239, 0.18), transparent 42%),
    radial-gradient(circle at 100% 10%, rgba(0, 217, 255, 0.16), transparent 44%),
    rgba(8, 6, 24, 0.94);
  box-shadow:
    0 0 18px rgba(255, 25, 239, 0.12),
    inset 0 0 18px rgba(0, 217, 255, 0.08);
}

.install-step-card {
  border-color: rgba(0, 217, 255, 0.34);
}

.specials-card {
  border-color: rgba(255, 25, 239, 0.36);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 217, 255, 0.15), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(255, 25, 239, 0.16), transparent 44%),
    rgba(8, 6, 24, 0.9);
}

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

.credit-billboard {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 217, 255, 0.64);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 25, 239, 0.32), transparent 34%),
    radial-gradient(circle at 90% 4%, rgba(156, 255, 79, 0.24), transparent 30%),
    radial-gradient(circle at 18% 98%, rgba(0, 217, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(12, 4, 32, 0.98), rgba(2, 5, 18, 0.98));
  padding: 14px 12px 12px;
  box-shadow:
    0 0 24px rgba(0, 217, 255, 0.2),
    0 0 30px rgba(255, 25, 239, 0.16),
    inset 0 0 22px rgba(255, 255, 255, 0.05);
}

.credit-billboard::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 25, 239, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.72;
}

.credit-billboard-top {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.credit-billboard-kicker {
  color: #9cff4f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 10px rgba(156, 255, 79, 0.58);
}

.credit-billboard-top strong {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(28px, 7.4vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  -webkit-text-stroke: 0.75px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 42, 201, 0.78),
    3px 3px 0 rgba(0, 217, 255, 0.72),
    0 0 12px rgba(0, 217, 255, 0.56),
    0 0 16px rgba(255, 42, 201, 0.38);
}

.credit-offer-grid {
  display: grid;
  gap: 8px;
}

.credit-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(255, 25, 239, 0.4);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12), transparent 40%),
    rgba(4, 5, 16, 0.74);
  padding: 9px;
  box-shadow: inset 0 0 16px rgba(0, 217, 255, 0.06);
}

.credit-offer-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 217, 255, 0.64);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 25, 239, 0.62), rgba(0, 217, 255, 0.44));
  color: #fffdf8;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 10px rgba(255, 255, 255, 0.44);
  box-shadow:
    0 0 14px rgba(0, 217, 255, 0.26),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.credit-offer-icon img {
  display: block;
  width: 40px;
  height: 40px;
  image-rendering: auto;
  object-fit: contain;
  filter:
    drop-shadow(1px 1px 0 #07040f)
    drop-shadow(0 0 8px rgba(0, 217, 255, 0.62))
    drop-shadow(0 0 10px rgba(255, 25, 239, 0.5));
}

.credit-offer-icon-logo {
  border-color: transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.credit-offer h2 {
  margin: 0 0 4px;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 42, 201, 0.72),
    0 0 10px rgba(0, 217, 255, 0.36);
}

.credit-offer p,
.credit-steps p,
.credit-fine-print {
  margin: 0;
  color: #e5e8ff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}

.credit-offer p strong {
  color: #9cff4f;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 10px rgba(156, 255, 79, 0.5);
}

.credit-steps {
  display: grid;
  gap: 6px;
}

.credit-steps div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.credit-steps span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(255, 25, 239, 0.28);
  color: #ff8bf4;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 10px rgba(255, 25, 239, 0.18),
    inset 0 0 8px rgba(255, 255, 255, 0.06);
}

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

.credit-action {
  min-height: 44px;
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(90deg, rgba(255, 25, 239, 0.46), rgba(0, 217, 255, 0.32)),
    rgba(5, 4, 16, 0.96);
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.25px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 42, 201, 0.58),
    0 0 8px rgba(0, 217, 255, 0.32);
  box-shadow:
    0 0 16px rgba(0, 217, 255, 0.24),
    inset 0 0 14px rgba(255, 255, 255, 0.06);
}

.credit-action-secondary {
  border-color: rgba(255, 25, 239, 0.78);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(90deg, rgba(5, 4, 16, 0.96), rgba(255, 25, 239, 0.48));
}

.credit-fine-print {
  color: #9af5ff;
  font-size: 9.5px;
  text-align: center;
  text-transform: uppercase;
}

.deal-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(0, 217, 255, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 13% 0%, rgba(255, 25, 239, 0.16), transparent 42%),
    radial-gradient(circle at 100% 8%, rgba(0, 217, 255, 0.14), transparent 46%),
    rgba(5, 4, 16, 0.92);
  padding: 10px;
  box-shadow:
    0 0 16px rgba(0, 217, 255, 0.08),
    inset 0 0 18px rgba(255, 25, 239, 0.05);
}

.deal-card-featured {
  border-color: rgba(255, 25, 239, 0.48);
  box-shadow:
    0 0 18px rgba(255, 25, 239, 0.14),
    0 0 22px rgba(0, 217, 255, 0.08),
    inset 0 0 20px rgba(0, 217, 255, 0.06);
}

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

.deal-media-grid img,
.deal-media-grid video {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.18;
  border: 1px solid rgba(0, 217, 255, 0.44);
  border-radius: 6px;
  background: rgba(2, 3, 12, 0.82);
  object-fit: cover;
  box-shadow: inset 0 0 12px rgba(0, 217, 255, 0.08);
}

.deal-media-grid .deal-media-main {
  grid-column: 1 / -1;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.deal-copy {
  display: grid;
  gap: 7px;
}

.deal-badge {
  justify-self: start;
  border: 1px solid rgba(156, 255, 79, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 48%),
    rgba(8, 14, 7, 0.78);
  color: #9cff4f;
  padding: 4px 8px;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(156, 255, 79, 0.46),
    1px 1px 0 #07040f;
}

.deal-copy h2 {
  margin: 0;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    2px 2px 0 #07040f,
    3px 3px 0 #ff2ac9,
    6px 5px 0 #03030a,
    8px 7px 0 #00d9ff,
    0 0 12px rgba(0, 217, 255, 0.78),
    0 0 16px rgba(255, 42, 201, 0.42);
}

.deal-copy p {
  margin: 0;
  color: #d9defe;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.28;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.16);
}

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

.deal-price-grid span {
  display: grid;
  place-items: center;
  min-height: 50px;
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.055), transparent 68%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(4, 5, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 1px 0 rgba(0, 122, 190, 0.82),
    0 0 9px rgba(0, 217, 255, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 217, 255, 0.1);
  text-align: center;
}

.deal-price-grid strong,
.deal-price-grid small {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

.deal-price-grid strong {
  font-size: 17px;
}

.deal-price-grid small {
  margin-top: 2px;
  color: #ff73ef;
  font-size: 9px;
}

.deal-price-grid .variant-price {
  min-height: 52px;
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.055), transparent 68%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(4, 5, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 1px 0 rgba(0, 122, 190, 0.82),
    0 0 9px rgba(0, 217, 255, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 217, 255, 0.1);
}

.deal-price-grid .variant-price.is-selected {
  border: 2px solid rgba(211, 132, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(211, 132, 255, 0.13), transparent 68%),
    linear-gradient(180deg, rgba(13, 8, 24, 0.98), rgba(5, 4, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 0 0 1px rgba(211, 132, 255, 0.34),
    0 0 13px rgba(211, 132, 255, 0.42),
    0 0 22px rgba(211, 132, 255, 0.18),
    0 5px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(211, 132, 255, 0.16);
}

.deal-price-grid .variant-price.is-selected small {
  color: #9cff4f;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 8px rgba(156, 255, 79, 0.42);
}

.deal-price-grid .variant-price strong {
  font-size: 17px;
}

.deal-price-grid .variant-price small {
  color: #fffdf8;
  font-size: 10px;
}

.deal-actions {
  display: grid;
  margin-top: 2px;
}

.deal-add-action {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 2.5px solid rgba(214, 0, 255, 0.96);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 0, 255, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(7, 8, 22, 0.98), rgba(5, 4, 17, 0.98)),
    rgba(2, 3, 12, 0.98);
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(214, 0, 255, 0.38),
    0 0 18px rgba(214, 0, 255, 0.42),
    0 0 30px rgba(109, 92, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(214, 0, 255, 0.14);
}

.deal-add-action::before {
  content: "";
  position: absolute;
  inset: 4px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 0, 255, 0.22), rgba(0, 217, 255, 0.12));
  filter: blur(9px);
  opacity: 0.9;
  pointer-events: none;
}

.deal-add-action::after {
  content: "ADD TO LIST";
  position: absolute;
  inset: 0 18px;
  display: grid;
  place-items: center;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

.deal-add-action.is-adding {
  animation: item-add-pop 620ms cubic-bezier(0.18, 0.92, 0.28, 1.18);
  border-color: rgba(214, 0, 255, 1);
  box-shadow:
    0 0 0 2px rgba(214, 0, 255, 0.46),
    0 0 24px rgba(214, 0, 255, 0.56),
    0 0 42px rgba(0, 217, 255, 0.22),
    0 16px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(214, 0, 255, 0.18);
}

.deal-add-action.is-added::after {
  content: "ADDED";
  letter-spacing: 0.08em;
}

.info-card > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 25, 239, 0.16);
  color: #ff8bf4;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke: 0.25px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 8px rgba(255, 25, 239, 0.54);
}

.install-card > span,
.install-step-card > span {
  width: 34px;
  height: 34px;
  color: #00d9ff;
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.18);
}

.info-card strong,
.review-card strong,
.faq-list summary {
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.08;
  -webkit-text-stroke: 0.25px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 7px rgba(255, 255, 255, 0.22);
}

.info-card p,
.review-card p,
.faq-list p {
  margin: 0;
  color: #cfd7ff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.32;
}

.install-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.install-button {
  min-height: 39px;
  border: 1px solid rgba(0, 217, 255, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 48%),
    linear-gradient(90deg, rgba(0, 217, 255, 0.22), rgba(255, 25, 239, 0.18)),
    rgba(5, 4, 16, 0.92);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.66),
    0 0 8px rgba(0, 217, 255, 0.4);
}

.install-button-secondary {
  border-color: rgba(255, 25, 239, 0.5);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(90deg, rgba(255, 25, 239, 0.24), rgba(0, 217, 255, 0.12)),
    rgba(5, 4, 16, 0.92);
}

.install-note {
  grid-column: 1 / -1;
  margin-top: 0;
  color: #ff8bf4;
  font-size: 11px;
  font-weight: 900;
}

.review-card {
  display: grid;
  gap: 7px;
}

.review-rating-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
}

.review-stars {
  color: #ffe600;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    0 0 10px rgba(255, 230, 0, 0.52);
}

.review-date {
  flex: 0 0 auto;
  color: #9af5ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(1px);
  text-shadow:
    1px 1px 0 #07040f,
    0 0 8px rgba(0, 217, 255, 0.42),
    0 0 12px rgba(255, 25, 239, 0.18);
}

.review-product-tag {
  justify-self: start;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid rgba(0, 217, 255, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.14), transparent 46%),
    rgba(0, 217, 255, 0.09);
  color: #9af5ff;
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.12);
}

.review-top-button {
  justify-self: stretch;
  min-height: 48px;
  border: 1px solid rgba(0, 217, 255, 0.68);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(255, 25, 239, 0.3), rgba(0, 217, 255, 0.22)),
    rgba(5, 4, 16, 0.94);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.72),
    3px 3px 0 rgba(0, 217, 255, 0.54),
    0 0 7px rgba(255, 255, 255, 0.4),
    0 0 14px rgba(255, 25, 239, 0.42);
  box-shadow:
    0 0 18px rgba(0, 217, 255, 0.24),
    0 0 24px rgba(255, 25, 239, 0.18),
    inset 0 0 16px rgba(255, 255, 255, 0.05);
}

.review-photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  gap: 6px;
}

.review-photo-strip img,
.review-photo-strip video,
.review-photo-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 217, 255, 0.36);
  border-radius: 8px;
  object-fit: cover;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 25, 239, 0.18), transparent 38%),
    rgba(3, 2, 12, 0.9);
  box-shadow:
    0 0 12px rgba(0, 217, 255, 0.12),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
}

.review-card-user {
  border-color: rgba(255, 25, 239, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 217, 255, 0.12), transparent 44%),
    rgba(8, 6, 24, 0.9);
}

.review-card span {
  color: #ff8bf4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card time {
  color: #9af5ff;
}

.review-card .review-product-tag {
  color: #9af5ff;
  font-size: 9.5px;
  letter-spacing: 0;
}

.review-post-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 14px max(12px, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(7, 4, 20, 0), rgba(7, 4, 20, 0.78) 22%, rgba(7, 4, 20, 0.94)),
    linear-gradient(90deg, rgba(255, 25, 239, 0.22), rgba(0, 217, 255, 0.18));
  border-top: 1px solid rgba(255, 25, 239, 0.38);
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.review-post-bar[hidden] {
  display: none;
}

.review-post-button {
  width: min(220px, calc(100% - 28px));
  min-height: 45px;
  border: 1px solid rgba(0, 217, 255, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(90deg, rgba(255, 25, 239, 0.24), rgba(0, 217, 255, 0.18)),
    rgba(5, 4, 16, 0.9);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.82),
    3px 3px 0 rgba(0, 217, 255, 0.58),
    0 0 7px rgba(255, 255, 255, 0.42),
    0 0 14px rgba(0, 217, 255, 0.36);
  box-shadow:
    0 0 16px rgba(0, 217, 255, 0.24),
    0 0 24px rgba(255, 25, 239, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.42);
  pointer-events: auto;
}

.review-sheet {
  width: min(100vw - 24px, 366px);
  max-width: 366px;
  margin: auto auto 12px;
  border: 1px solid rgba(0, 217, 255, 0.42);
  border-radius: 14px 14px 10px 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 25, 239, 0.2), transparent 42%),
    rgba(6, 4, 18, 0.96);
  color: #ffffff;
  padding: 0;
  box-shadow:
    0 0 22px rgba(0, 217, 255, 0.28),
    0 -10px 38px rgba(255, 25, 239, 0.18);
}

.review-sheet::backdrop {
  background: rgba(2, 1, 8, 0.68);
  backdrop-filter: blur(8px);
}

.review-form {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.review-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-form-header span {
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.88),
    3px 3px 0 rgba(0, 217, 255, 0.64),
    0 0 10px rgba(0, 217, 255, 0.42);
}

.review-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 25, 239, 0.46);
  border-radius: 50%;
  background: rgba(255, 25, 239, 0.1);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.review-form label {
  display: grid;
  gap: 6px;
}

.review-form label > span {
  color: #ff8bf4;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.62),
    1px 1px 0 #07040f,
    2px 2px 0 rgba(0, 217, 255, 0.58),
    3px 3px 0 rgba(255, 25, 239, 0.34),
    0 0 9px rgba(255, 25, 239, 0.36);
}

.review-form input:not([type="file"]),
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  background: rgba(3, 2, 12, 0.82);
  color: #ffffff;
  font-family: var(--ui-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  padding: 10px;
  outline: none;
}

.review-form textarea {
  resize: vertical;
}

.review-form input:not([type="file"]):focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: rgba(0, 217, 255, 0.74);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.review-picker {
  position: relative;
  z-index: 1;
}

.review-picker:has(.review-picker-menu:not([hidden])) {
  z-index: 8;
}

.review-picker-button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(0, 217, 255, 0.54);
  border-radius: 12px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 25, 239, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(5, 4, 16, 0.92), rgba(3, 10, 28, 0.9));
  color: #ffffff;
  padding: 0 42px 0 18px;
  text-align: left;
  box-shadow:
    inset 0 0 16px rgba(0, 217, 255, 0.06),
    0 0 14px rgba(0, 217, 255, 0.12);
}

.review-picker-button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  content: "";
  transform: translateY(-68%) rotate(45deg);
  filter: drop-shadow(0 0 6px rgba(0, 217, 255, 0.62));
}

.review-picker-button[aria-expanded="true"] {
  border-color: rgba(0, 217, 255, 0.92);
  box-shadow:
    inset 0 0 18px rgba(0, 217, 255, 0.09),
    0 0 18px rgba(0, 217, 255, 0.28),
    0 0 26px rgba(255, 25, 239, 0.16);
}

.review-picker-button span {
  min-width: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  white-space: normal;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.86),
    3px 3px 0 rgba(0, 217, 255, 0.62),
    0 0 8px rgba(255, 255, 255, 0.26),
    0 0 12px rgba(0, 217, 255, 0.34);
}

.review-picker-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 5px;
  max-height: min(270px, 44dvh);
  overflow-y: auto;
  border: 1px solid rgba(0, 217, 255, 0.72);
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 25, 239, 0.22), transparent 40%),
    linear-gradient(155deg, rgba(6, 4, 20, 0.98), rgba(3, 10, 30, 0.98));
  padding: 8px;
  box-shadow:
    0 0 22px rgba(0, 217, 255, 0.28),
    0 18px 36px rgba(0, 0, 0, 0.52),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
  scrollbar-color: rgba(0, 217, 255, 0.82) rgba(4, 6, 24, 0.7);
  scrollbar-width: thin;
}

.review-picker-menu[hidden] {
  display: none;
}

.review-picker-menu button {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  padding: 8px 10px;
  text-align: left;
}

.review-picker-menu button[aria-selected="true"] {
  border-color: rgba(255, 25, 239, 0.74);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 25, 239, 0.18), transparent 42%),
    rgba(0, 217, 255, 0.08);
  box-shadow: 0 0 14px rgba(255, 25, 239, 0.2), inset 0 0 14px rgba(0, 217, 255, 0.06);
}

.review-picker-menu button,
.review-picker-menu strong {
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.04;
  color: #ffffff;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.7),
    3px 3px 0 rgba(0, 217, 255, 0.48),
    0 0 8px rgba(255, 255, 255, 0.2);
}

.review-picker-menu small {
  color: #ff8bf4;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 25, 239, 0.32);
}

.review-photo-field input[type="file"] {
  width: 100%;
  border: 1px dashed rgba(0, 217, 255, 0.4);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 25, 239, 0.12), rgba(0, 217, 255, 0.1)),
    rgba(3, 2, 12, 0.82);
  color: #cfd7ff;
  font-family: var(--ui-font);
  font-size: 12px;
  font-weight: 800;
  padding: 9px;
}

.review-photo-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.review-photo-preview[hidden] {
  display: none;
}

.review-error {
  min-height: 16px;
  margin: -2px 0 0;
  color: #ff8bf4;
  font-size: 12px;
  font-weight: 900;
}

.review-submit {
  min-height: 42px;
  border: 1px solid rgba(255, 25, 239, 0.56);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 25, 239, 0.28), rgba(0, 217, 255, 0.18)),
    rgba(6, 4, 18, 0.94);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 rgba(255, 25, 239, 0.82),
    3px 3px 0 rgba(0, 217, 255, 0.58),
    0 0 12px rgba(0, 217, 255, 0.32);
}

.faq-list details {
  color: #ffffff;
}

.faq-list summary {
  cursor: pointer;
}

.faq-list p {
  margin-top: 8px;
}

.backup-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.backup-link-list span {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid rgba(255, 25, 239, 0.36);
  border-radius: 999px;
  background: rgba(255, 25, 239, 0.08);
  color: #ffffff;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 #07040f,
    0 0 8px rgba(255, 25, 239, 0.34);
}

@keyframes trustOpenFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    border-color: rgba(0, 217, 255, 0.44);
    box-shadow:
      0 0 10px rgba(0, 217, 255, 0.28),
      inset 0 0 10px rgba(0, 217, 255, 0.1);
  }

  48% {
    transform: translateY(-1px) scale(1.045);
    border-color: rgba(0, 217, 255, 0.78);
    box-shadow:
      0 0 13px rgba(0, 217, 255, 0.46),
      0 0 20px rgba(255, 25, 239, 0.2),
      inset 0 0 12px rgba(0, 217, 255, 0.16);
  }
}

@keyframes trustOpenGlint {
  0%, 36% {
    transform: translateX(0) rotate(16deg);
    opacity: 0;
  }

  46% {
    opacity: 0.78;
  }

  64%, 100% {
    transform: translateX(250%) rotate(16deg);
    opacity: 0;
  }
}

.product-card {
  scroll-margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 7, 25, 0.9);
  box-shadow: var(--shadow);
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
  overflow: hidden;
}

.carousel {
  position: relative;
  display: grid;
  background: var(--panel);
  gap: 8px;
  padding: 8px;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.media-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
}

.main-media {
  min-height: 280px;
  border: 1px solid rgba(239, 247, 255, 0.82);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(5, 4, 12, 0.72);
}

.main-media img,
.main-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

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

.thumb-button {
  aspect-ratio: 1;
  border: 1px solid rgba(0, 229, 255, 0.62);
  border-radius: 6px;
  background: rgba(5, 4, 12, 0.78);
  padding: 0;
  overflow: hidden;
}

.thumb-button img,
.thumb-button video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(0, 229, 255, 0.72);
  border-radius: 999px;
  background: rgba(5, 4, 12, 0.82);
  color: var(--accent);
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.main-media,
.thumb-button {
  position: relative;
}

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

.product-meta {
  display: grid;
  gap: 10px;
  align-items: flex-start;
}

.product-body h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.03;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.84),
    1px 2px 0 #05040c,
    0 0 5px rgba(255, 255, 255, 0.24);
  text-transform: none;
}

.product-subtitle {
  margin: -4px 0 0;
  color: #ff8ff7;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.05;
  text-transform: uppercase;
  -webkit-text-stroke: 0.35px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 rgba(0, 217, 255, 0.88),
    0 0 9px rgba(255, 42, 201, 0.48);
}

#item-1 .product-body h2 {
  align-items: center;
  font-family: "Luckiest Guy", var(--display-font);
  font-size: 27px;
  line-height: 0.98;
  letter-spacing: 0.015em;
  transform: skewX(-8deg) rotate(-0.25deg);
  transform-origin: left center;
}

#item-1 .product-body h2 > span:first-child,
#item-1 .primary-action {
  color: #ffffff;
  font-family: "Luckiest Guy", var(--display-font);
  font-weight: 900;
  -webkit-text-stroke: 0.85px rgba(3, 3, 10, 0.96);
  paint-order: stroke fill;
  text-shadow:
    1px 1px 0 #03030a,
    2px 2px 0 #03030a,
    3px 3px 0 rgba(3, 3, 10, 0.98),
    -1px -1px 0 rgba(255, 25, 197, 0.96),
    1px -1px 0 rgba(255, 25, 197, 0.8),
    2px 3px 0 rgba(0, 187, 229, 0.95),
    3px 4px 0 rgba(0, 142, 190, 0.9);
}

#item-1 .product-body h2 > span:first-child {
  display: inline-block;
  max-width: 100%;
}

#item-1 .product-title-emoji {
  position: static;
  display: inline-block;
  margin-left: 7px;
  margin-top: 2px;
  font-size: 22px;
  line-height: 1;
  vertical-align: -0.05em;
  filter: drop-shadow(2px 3px 0 rgba(0, 187, 229, 0.82));
  transform: translateY(1px) skewX(8deg);
}

#item-2 .product-body h2 {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.94;
  max-width: calc(100% - 28px);
  text-transform: uppercase;
  transform: none;
  transform-origin: left center;
  margin-left: 0;
}

#item-2 .product-body h2 > span:first-child {
  display: inline-block;
  -webkit-text-stroke: 1px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    2px 2px 0 #07040f,
    3px 3px 0 #ff2ac9,
    6px 5px 0 #03030a,
    8px 7px 0 #00d9ff,
    0 0 12px rgba(0, 217, 255, 0.85),
    0 0 18px rgba(255, 42, 201, 0.58);
}

#item-2 .product-title-wrap {
  min-height: auto;
  padding-right: 30px;
}

#item-2 .product-title-emoji {
  position: absolute;
  right: auto;
  left: min(184px, calc(100% - 32px));
  top: 21px;
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.68));
  transform: none;
}

#item-2 .variant-price strong,
#item-2 .variant-price small,
#item-2 .primary-action {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

#item-2 .variant-price {
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.055), transparent 68%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(4, 5, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 1px 0 rgba(0, 122, 190, 0.82),
    0 0 9px rgba(0, 217, 255, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 217, 255, 0.1);
}

#item-2 .variant-price.is-selected {
  border: 2px solid rgba(211, 132, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(211, 132, 255, 0.13), transparent 68%),
    linear-gradient(180deg, rgba(13, 8, 24, 0.98), rgba(5, 4, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 0 0 1px rgba(211, 132, 255, 0.34),
    0 0 13px rgba(211, 132, 255, 0.42),
    0 0 22px rgba(211, 132, 255, 0.18),
    0 5px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(211, 132, 255, 0.16);
  transform: translateY(-1px);
}

#item-2 .variant-price.is-selected small {
  color: #9cff4f;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 8px rgba(156, 255, 79, 0.42);
}

#item-2 .variant-price strong {
  font-size: 17px;
  line-height: 0.95;
}

#item-2 .variant-price small {
  color: #fffdf8;
  font-size: 10px;
  line-height: 1.04;
  margin-top: 2px;
}

#item-2 .primary-action {
  position: relative;
  display: grid;
  place-items: center;
  border: 2.5px solid rgba(214, 0, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 0, 255, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(7, 8, 22, 0.98), rgba(5, 4, 17, 0.98)),
    rgba(2, 3, 12, 0.98);
  color: transparent;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.045em;
  overflow: hidden;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(214, 0, 255, 0.38),
    0 0 18px rgba(214, 0, 255, 0.42),
    0 0 30px rgba(109, 92, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(214, 0, 255, 0.14);
}

#item-2 .primary-action::before {
  content: "";
  position: absolute;
  inset: 4px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 0, 255, 0.22), rgba(0, 217, 255, 0.12));
  filter: blur(9px);
  opacity: 0.9;
  pointer-events: none;
}

#item-2 .primary-action::after {
  content: "ADD TO LIST";
  position: absolute;
  inset: 0 18px;
  display: grid;
  place-items: center;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

#item-2 .primary-action.is-adding {
  animation: item-add-pop 620ms cubic-bezier(0.18, 0.92, 0.28, 1.18);
  border-color: rgba(214, 0, 255, 1);
  box-shadow:
    0 0 0 2px rgba(214, 0, 255, 0.46),
    0 0 24px rgba(214, 0, 255, 0.56),
    0 0 42px rgba(0, 217, 255, 0.22),
    0 16px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(214, 0, 255, 0.18);
}

#item-2 .primary-action.is-added::after {
  content: "ADDED";
  letter-spacing: 0.08em;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 10px rgba(156, 255, 79, 0.42),
    0 0 16px rgba(214, 0, 255, 0.4);
}

#item-2 .primary-action.is-adding::before {
  inset: -6px auto -6px -44%;
  width: 42%;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.82),
      rgba(0, 217, 255, 0.48),
      transparent
    );
  filter: blur(1px);
  opacity: 0;
  animation: item-add-sweep 560ms ease-out;
}

.product-card.stockup-card-style .product-body h2 {
  display: block;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.94;
  max-width: 100%;
  text-transform: uppercase;
  transform: none;
  transform-origin: left center;
  margin-left: 0;
}

.product-card.stockup-card-style .product-body h2 > span:first-child {
  display: inline;
  -webkit-text-stroke: 1px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    2px 2px 0 #07040f,
    3px 3px 0 #ff2ac9,
    6px 5px 0 #03030a,
    8px 7px 0 #00d9ff,
    0 0 12px rgba(0, 217, 255, 0.85),
    0 0 18px rgba(255, 42, 201, 0.58);
}

.product-card.stockup-card-style .product-title-wrap {
  min-height: auto;
  padding-right: 0;
}

.product-card.stockup-card-style .product-title-emoji {
  position: static;
  display: inline-block;
  margin-left: 7px;
  font-size: 20px;
  line-height: 1;
  vertical-align: 0.03em;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.68));
  transform: none;
}

#zushi-supreme .product-title-wrap {
  min-height: auto;
}

#zushi-supreme .product-meta {
  gap: 7px;
}

#zushi-supreme .product-subtitle {
  margin-top: -1px;
}

.product-card.stockup-card-style .variant-price strong,
.product-card.stockup-card-style .variant-price small,
.product-card.stockup-card-style .primary-action {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

.product-card.stockup-card-style .variant-price {
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.055), transparent 68%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(4, 5, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 1px 0 rgba(0, 122, 190, 0.82),
    0 0 9px rgba(0, 217, 255, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 217, 255, 0.1);
}

.product-card.stockup-card-style .variant-price.is-selected {
  border: 2px solid rgba(211, 132, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(211, 132, 255, 0.13), transparent 68%),
    linear-gradient(180deg, rgba(13, 8, 24, 0.98), rgba(5, 4, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 0 0 1px rgba(211, 132, 255, 0.34),
    0 0 13px rgba(211, 132, 255, 0.42),
    0 0 22px rgba(211, 132, 255, 0.18),
    0 5px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(211, 132, 255, 0.16);
  transform: translateY(-1px);
}

.product-card.stockup-card-style .variant-price.is-selected small {
  color: #9cff4f;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 8px rgba(156, 255, 79, 0.42);
}

.product-card.stockup-card-style .variant-price strong {
  font-size: 17px;
  line-height: 0.95;
}

.product-card.stockup-card-style .variant-price small {
  color: #fffdf8;
  font-size: 10px;
  line-height: 1.04;
  margin-top: 2px;
}

.product-card.stockup-card-style .primary-action {
  position: relative;
  display: grid;
  place-items: center;
  border: 2.5px solid rgba(214, 0, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 0, 255, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(7, 8, 22, 0.98), rgba(5, 4, 17, 0.98)),
    rgba(2, 3, 12, 0.98);
  color: transparent;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.045em;
  overflow: hidden;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(214, 0, 255, 0.38),
    0 0 18px rgba(214, 0, 255, 0.42),
    0 0 30px rgba(109, 92, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(214, 0, 255, 0.14);
}

.product-card.stockup-card-style .primary-action::before {
  content: "";
  position: absolute;
  inset: 4px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 0, 255, 0.22), rgba(0, 217, 255, 0.12));
  filter: blur(9px);
  opacity: 0.9;
  pointer-events: none;
}

.product-card.stockup-card-style .primary-action::after {
  content: "ADD TO LIST";
  position: absolute;
  inset: 0 18px;
  display: grid;
  place-items: center;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

.product-card.stockup-card-style .primary-action.is-adding {
  animation: item-add-pop 620ms cubic-bezier(0.18, 0.92, 0.28, 1.18);
  border-color: rgba(214, 0, 255, 1);
  box-shadow:
    0 0 0 2px rgba(214, 0, 255, 0.46),
    0 0 24px rgba(214, 0, 255, 0.56),
    0 0 42px rgba(0, 217, 255, 0.22),
    0 16px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(214, 0, 255, 0.18);
}

.product-card.stockup-card-style .primary-action.is-added::after {
  content: "ADDED";
  letter-spacing: 0.08em;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 10px rgba(156, 255, 79, 0.42),
    0 0 16px rgba(214, 0, 255, 0.4);
}

.product-card.stockup-card-style .primary-action.is-adding::before {
  inset: -6px auto -6px -44%;
  width: 42%;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.82),
      rgba(0, 217, 255, 0.48),
      transparent
    );
  filter: blur(1px);
  opacity: 0;
  animation: item-add-sweep 560ms ease-out;
}

.app-shell:not(.rail-closed) #item-2 .product-title-wrap,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-title-wrap {
  min-height: auto;
  padding-right: 0;
}

.app-shell:not(.rail-closed) #item-2 .product-body h2,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-body h2 {
  display: block;
  max-width: 100%;
  font-size: 19px;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.app-shell:not(.rail-closed) .product-card.title-size-long.stockup-card-style .product-body h2,
.app-shell:not(.rail-closed) #item-2 .product-body h2 {
  font-size: 16px;
}

.app-shell:not(.rail-closed) .product-card.title-size-xlong.stockup-card-style .product-body h2 {
  font-size: 15px;
  line-height: 1;
}

.app-shell:not(.rail-closed) #item-2 .product-body h2 > span:first-child,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-body h2 > span:first-child {
  display: inline;
  max-width: 100%;
}

.app-shell:not(.rail-closed) #item-2 .product-title-emoji,
.app-shell:not(.rail-closed) .product-card.stockup-card-style .product-title-emoji {
  position: static;
  display: inline-block;
  margin-left: 3px;
  font-size: 16px;
  line-height: 1;
  vertical-align: -0.04em;
  transform: none;
}

#item-1 .variant-price {
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.055), transparent 68%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(4, 5, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 1px 0 rgba(0, 122, 190, 0.82),
    0 0 9px rgba(0, 217, 255, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 217, 255, 0.1);
}

#item-1 .variant-price.is-selected {
  border: 2px solid rgba(211, 132, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(211, 132, 255, 0.13), transparent 68%),
    linear-gradient(180deg, rgba(13, 8, 24, 0.98), rgba(5, 4, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 0 0 1px rgba(211, 132, 255, 0.34),
    0 0 13px rgba(211, 132, 255, 0.42),
    0 0 22px rgba(211, 132, 255, 0.18),
    0 5px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(211, 132, 255, 0.16);
  transform: translateY(-1px);
}

#item-1 .variant-price.is-selected small {
  color: #9cff4f;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 8px rgba(156, 255, 79, 0.42);
}

#item-1 .variant-price strong,
#item-1 .variant-price small {
  color: #ffffff;
  font-family: var(--ui-font);
  font-weight: 900;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-shadow:
    0 1px 0 rgba(3, 3, 10, 0.98),
    0 0 7px rgba(0, 217, 255, 0.22);
}

#item-1 .variant-price strong {
  font-size: 17px;
  line-height: 1;
}

#item-1 .variant-price small {
  color: #ff6df2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 7px rgba(255, 25, 197, 0.48);
}

#item-1 .primary-action {
  position: relative;
  display: grid;
  place-items: center;
  border: 2.5px solid rgba(214, 0, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 0, 255, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(7, 8, 22, 0.98), rgba(5, 4, 17, 0.98)),
    rgba(2, 3, 12, 0.98);
  color: transparent;
  font-size: 0;
  letter-spacing: 0.09em;
  overflow: hidden;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(214, 0, 255, 0.38),
    0 0 18px rgba(214, 0, 255, 0.42),
    0 0 30px rgba(109, 92, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(214, 0, 255, 0.14);
}

#item-1 .primary-action::before {
  content: "";
  position: absolute;
  inset: 4px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 0, 255, 0.22), rgba(0, 217, 255, 0.12));
  filter: blur(9px);
  opacity: 0.9;
  pointer-events: none;
}

#item-1 .primary-action::after {
  content: "ADD TO LIST";
  position: absolute;
  inset: 0 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "Luckiest Guy", var(--display-font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: skewX(-5deg) scaleX(1.03);
  text-shadow:
    1px 1px 0 rgba(3, 3, 10, 0.98),
    2px 2px 0 rgba(3, 3, 10, 0.86),
    -1px 0 0 rgba(255, 25, 197, 0.84),
    1px 0 0 rgba(0, 217, 255, 0.62),
    0 0 7px rgba(255, 255, 255, 0.26),
    0 0 12px rgba(255, 25, 197, 0.32);
}

#item-1 .primary-action.is-adding {
  animation: item-add-pop 620ms cubic-bezier(0.18, 0.92, 0.28, 1.18);
  border-color: rgba(214, 0, 255, 1);
  box-shadow:
    0 0 0 2px rgba(214, 0, 255, 0.46),
    0 0 24px rgba(214, 0, 255, 0.56),
    0 0 42px rgba(0, 217, 255, 0.22),
    0 16px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(214, 0, 255, 0.18);
}

#item-1 .primary-action.is-added::after {
  content: "ADDED";
  color: #ffffff;
  letter-spacing: 0.08em;
  text-shadow:
    1px 1px 0 rgba(3, 3, 10, 0.98),
    2px 2px 0 rgba(3, 3, 10, 0.86),
    -1px 0 0 rgba(214, 0, 255, 0.9),
    1px 0 0 rgba(0, 217, 255, 0.7),
    0 0 10px rgba(156, 255, 79, 0.42),
    0 0 16px rgba(214, 0, 255, 0.4);
}

#item-1 .primary-action.is-adding::before {
  inset: -6px auto -6px -44%;
  width: 42%;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.82),
      rgba(0, 217, 255, 0.48),
      transparent
    );
  filter: blur(1px);
  opacity: 0;
  animation: item-add-sweep 560ms ease-out;
}

@keyframes item-add-pop {
  0% {
    transform: translateY(-2px) scale(1);
  }

  18% {
    transform: translateY(1px) scale(0.985);
  }

  48% {
    transform: translateY(-5px) scale(1.025);
  }

  100% {
    transform: translateY(-2px) scale(1);
  }
}

@keyframes item-add-sweep {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }

  18% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-18deg);
  }
}

.product-title-wrap {
  position: relative;
  min-height: auto;
}

.title-float-emoji {
  padding-right: 34px;
}

.title-float-emoji h2 {
  display: block;
}

.title-float-emoji .product-title-emoji {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
  transform: translateY(-50%);
}

.title-inline-emoji {
  min-height: auto;
}

.title-inline-emoji .product-title-emoji {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
  transform: translateY(1px);
}

#item-1 .product-title-wrap {
  min-height: auto;
  padding-right: 0;
}

#item-1 .product-body h2 {
  display: block;
  max-width: min(100%, 218px);
}

#item-1 .product-body h2 > span:first-child {
  display: inline;
  max-width: none;
}

#item-1 .product-title-emoji {
  position: static;
  display: inline-block;
  margin-left: 7px;
  font-size: 22px;
  line-height: 1;
  vertical-align: -0.05em;
  transform: translateY(1px) skewX(8deg);
}

.price {
  border-radius: 8px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 7px 9px;
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: var(--compact-graffiti-shadow);
}

.variant-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.variant-price {
  display: grid;
  gap: 2px;
  width: 100%;
  min-height: 46px;
  align-content: center;
  justify-items: center;
  text-align: center;
  box-shadow: inset 0 0 14px rgba(0, 229, 255, 0.08);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.variant-price.is-selected {
  border-color: var(--signal);
  box-shadow: inset 0 0 14px rgba(0, 229, 255, 0.08), 0 0 16px rgba(217, 0, 255, 0.45);
  transform: translateY(-1px);
}

.variant-price strong,
.variant-price small {
  display: block;
  font-family: var(--display-font);
  line-height: 1;
}

.variant-price small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.52);
}

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

.primary-action {
  min-height: 42px;
  border-radius: 8px;
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: var(--compact-graffiti-shadow);
}

.primary-action {
  border: 0;
  background: var(--signal);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(217, 0, 255, 0.34);
}

.media-preview {
  width: min(92vw, 420px);
  max-height: 88dvh;
  border: 1px solid rgba(0, 229, 255, 0.55);
  border-radius: 16px;
  background: rgba(5, 4, 12, 0.94);
  color: var(--ink);
  padding: 12px;
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.32), 0 0 70px rgba(217, 0, 255, 0.24);
}

.media-preview::backdrop {
  background: rgba(2, 1, 8, 0.76);
  backdrop-filter: blur(8px);
}

.preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 229, 255, 0.55);
  border-radius: 50%;
  background: rgba(5, 4, 12, 0.76);
  color: var(--accent);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.preview-frame {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 14%, rgba(0, 229, 255, 0.25), transparent 34%), var(--panel);
}

.preview-frame img,
.preview-frame video {
  width: 100%;
  max-height: 68dvh;
  object-fit: contain;
  display: block;
}

.preview-nav {
  position: absolute;
  top: 50%;
  right: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.preview-nav button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 229, 255, 0.62);
  border-radius: 50%;
  background: rgba(5, 4, 12, 0.74);
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  pointer-events: auto;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.24);
}

.preview-caption {
  display: grid;
  gap: 4px;
  padding: 12px 4px 2px;
  text-align: center;
}

.preview-caption strong {
  color: #ffffff;
  font-size: 20px;
}

.preview-caption span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

#item-1.product-card.stockup-card-style .product-title-wrap {
  min-height: auto;
  padding-right: 0;
}

#item-1.product-card.stockup-card-style .product-body h2 {
  display: block;
  max-width: calc(100% - 28px);
  margin-left: 0;
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-transform: uppercase;
  transform: none;
}

#item-1.product-card.stockup-card-style .product-body h2 > span:first-child {
  display: inline;
  max-width: 100%;
  -webkit-text-stroke: 1px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    2px 2px 0 #07040f,
    3px 3px 0 #ff2ac9,
    6px 5px 0 #03030a,
    8px 7px 0 #00d9ff,
    0 0 12px rgba(0, 217, 255, 0.85);
}

#item-1.product-card.stockup-card-style .product-title-emoji {
  position: static;
  display: inline-block;
  margin: 0 0 0 6px;
  font-size: 20px;
  line-height: 1;
  vertical-align: 0.12em;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.68));
  transform: none;
}

#item-1.product-card.stockup-card-style .variant-price strong,
#item-1.product-card.stockup-card-style .variant-price small,
#item-1.product-card.stockup-card-style .primary-action {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

#item-1.product-card.stockup-card-style .variant-price small {
  color: #fffdf8;
  font-size: 10px;
  line-height: 1.04;
  margin-top: 2px;
}

#item-1.product-card.stockup-card-style .variant-price.is-selected small {
  color: #9cff4f;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 8px rgba(156, 255, 79, 0.42);
}

#item-1.product-card.stockup-card-style .primary-action {
  min-height: 48px;
  font-size: 15px;
  border-radius: 8px;
}

@media (max-width: 340px) {
  #item-1.product-card.stockup-card-style .product-body h2 {
    font-size: 21px;
  }
}

.app-shell:not(.rail-closed) #item-1.product-card.stockup-card-style .product-title-wrap {
  min-height: auto;
  padding-right: 0;
}

.app-shell:not(.rail-closed) #item-1.product-card.stockup-card-style .product-body h2 {
  display: block;
  max-width: 100%;
  font-size: 19px;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.app-shell:not(.rail-closed) #item-1.product-card.stockup-card-style .product-body h2 > span:first-child {
  display: inline;
  max-width: 100%;
}

.app-shell:not(.rail-closed) #item-1.product-card.stockup-card-style .product-title-emoji {
  position: static;
  display: inline-block;
  margin-left: 4px;
  font-size: 16px;
  line-height: 1;
  vertical-align: -0.04em;
  transform: none;
}

.product-card.stockup-card-style .primary-action,
#item-1.product-card.stockup-card-style .primary-action {
  color: transparent;
  text-shadow: none;
}

.product-card.stockup-card-style .primary-action::after,
#item-1.product-card.stockup-card-style .primary-action::after {
  color: #fffdf8;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

#item-1.product-card.stockup-card-style .product-body h2 {
  max-width: calc(100% - 28px);
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#item-1.product-card.stockup-card-style .product-body h2 > span:first-child {
  display: inline-block;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-weight: 700;
  -webkit-text-stroke: 1px #07040f;
  text-shadow:
    0 0 2px #ffffff,
    2px 2px 0 #07040f,
    3px 3px 0 #ff2ac9,
    6px 5px 0 #03030a,
    8px 7px 0 #00d9ff,
    0 0 12px rgba(0, 217, 255, 0.85),
    0 0 18px rgba(255, 42, 201, 0.58);
}

.app-shell:not(.rail-closed) #item-1.product-card.stockup-card-style .product-body h2 {
  font-size: 19px;
}

.deal-card .deal-price-grid .variant-price strong,
.deal-card .deal-price-grid .variant-price small,
.deal-card .deal-add-action {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

.deal-card .deal-price-grid .variant-price {
  min-height: 52px;
  border: 1.5px solid rgba(0, 217, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.055), transparent 68%),
    linear-gradient(180deg, rgba(6, 8, 22, 0.98), rgba(4, 5, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 1px 0 rgba(0, 122, 190, 0.82),
    0 0 9px rgba(0, 217, 255, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 217, 255, 0.1);
}

.deal-card .deal-price-grid .variant-price.is-selected {
  border: 2px solid rgba(211, 132, 255, 0.96);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(211, 132, 255, 0.13), transparent 68%),
    linear-gradient(180deg, rgba(13, 8, 24, 0.98), rgba(5, 4, 16, 0.98)),
    rgba(2, 3, 12, 0.98);
  box-shadow:
    0 0 0 1px rgba(211, 132, 255, 0.34),
    0 0 13px rgba(211, 132, 255, 0.42),
    0 0 22px rgba(211, 132, 255, 0.18),
    0 5px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(211, 132, 255, 0.16);
}

.deal-card .deal-price-grid .variant-price strong {
  font-size: 17px;
  line-height: 0.95;
}

.deal-card .deal-price-grid .variant-price small {
  color: #fffdf8;
  font-size: 10px;
  line-height: 1.04;
  margin-top: 2px;
}

.deal-card .deal-price-grid .variant-price.is-selected small {
  color: #9cff4f;
  text-shadow:
    0 1px 0 rgba(2, 3, 12, 0.98),
    0 0 8px rgba(156, 255, 79, 0.42);
}

.deal-card .deal-add-action {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 2.5px solid rgba(214, 0, 255, 0.96);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 0, 255, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(7, 8, 22, 0.98), rgba(5, 4, 17, 0.98)),
    rgba(2, 3, 12, 0.98);
  color: transparent;
  font-size: 15px;
  overflow: hidden;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1.5px rgba(214, 0, 255, 0.38),
    0 0 18px rgba(214, 0, 255, 0.42),
    0 0 30px rgba(109, 92, 255, 0.24),
    0 14px 22px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(214, 0, 255, 0.14);
}

.deal-card .deal-add-action::after {
  color: #fffdf8;
  font-family: "Fredoka", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.45px #07040f;
  paint-order: stroke fill;
  text-shadow:
    0 0 2px #ffffff,
    1px 1px 0 #07040f,
    2px 2px 0 #ff2ac9,
    3px 3px 0 #03030a,
    4px 4px 0 #00d9ff,
    0 0 8px rgba(0, 217, 255, 0.64),
    0 0 12px rgba(255, 42, 201, 0.44);
}

/* Keep tap/click feedback in-theme instead of browser default rectangles. */
button,
[role="button"],
summary,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button,
[role="button"],
summary {
  outline: 0 !important;
}

button:focus,
button:focus-visible,
[role="button"]:focus,
[role="button"]:focus-visible,
summary:focus,
summary:focus-visible {
  outline: 0 !important;
  outline-offset: 0 !important;
}

button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
  filter: brightness(1.08);
}

