/* All assets and typography are local; no external requests. */
:root {
  color-scheme: dark;
  --bg: #0b0d0b;
  --surface: #121512;
  --raised: #191d18;
  --line: #272c25;
  --text: #f3f4ec;
  --muted: #959b90;
  --lime: #b4ff63;
  --lime-dim: #202b18;
  --danger: #ff9399;
  --radius: 16px;
  --font: 'Segoe UI',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,input,select {
  font: inherit;
}

button,a,input,select,summary {
  -webkit-tap-highlight-color: transparent;
}

button,a,summary {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

button {
  color: inherit;
}

button:disabled {
  cursor: wait;
  opacity: .55;
}

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

button,input,select {
  outline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

button {
  border: 0;
}

img,svg {
  display: block;
}

img {
  max-width: 100%;
}

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

[hidden] {
  display: none!important;
}

::selection {
  background: var(--lime);
  color: #10160b;
}

.container {
  width: min(1240px,calc(100% - 96px));
  margin-inline: auto;
}

.icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 17px;
  height: 17px;
}

.icon-xs {
  width: 14px;
  height: 14px;
}

.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;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--lime);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  min-height: 36px;
  padding: 7px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--lime);
  color: #253618;
  font-size: 11px;
  font-weight: 500;
}

.announcement-label {
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 750;
}

.announcement strong {
  font-weight: 800;
}

.announcement-divider {
  opacity: .35;
  margin: 0 10px;
}

.coupon-copy {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  background: none;
  padding: 0;
  color: #172010;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .6px;
}

.announcement-end {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.site-header {
  height: 93px;
  border-bottom: 1px solid #20241e;
  background: rgba(11,13,11,.96);
  position: relative;
  z-index: 10;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--lime);
}

.brand-dot {
  color: var(--lime);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 11px;
}

.desktop-nav a {
  padding: 35px 0;
  position: relative;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav .nav-active {
  color: var(--text);
}

.nav-active:after {
  content: '';
  height: 2px;
  width: 16px;
  background: var(--lime);
  position: absolute;
  bottom: 22px;
  left: 0;
}

.search-box {
  margin-left: auto;
  width: 300px;
  height: 41px;
  border: 1px solid var(--line);
  background: #141713;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
  color: #858c7f;
}

.search-box .icon {
  width: 17px;
  height: 17px;
}

.search-box input {
  width: 100%;
  min-width: 0;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 11px;
  padding: 10px 0;
  outline: none;
}

.search-box:focus-within {
  border-color: #6c9346;
  box-shadow: 0 0 0 3px #b4ff630b;
}

.search-box input::placeholder {
  color: #7c8376;
}

.search-box kbd {
  width: 18px;
  height: 20px;
  border: 1px solid #32372d;
  border-radius: 4px;
  text-align: center;
  font: 10px var(--font);
  line-height: 18px;
  color: #747c6d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.login-button {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 130px;
  background: none;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.login-button span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.login-button .icon {
  width: 18px;
  height: 18px;
}

.login-button:hover {
  color: var(--lime);
}

.header-divider {
  height: 22px;
  width: 1px;
  background: var(--line);
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  padding: 8px 0;
}

.cart-count {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--lime);
  color: #17250e;
  font-size: 10px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 502px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 22px;
  gap: 20px;
}

.hero-copy {
  padding-top: 35px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.8px;
  color: #c2cbb7;
}

.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px #b4ff6324;
}

.hero h1 {
  font-size: clamp(40px,4.5vw,62px);
  line-height: 1.08;
  font-weight: 770;
  letter-spacing: -3px;
  margin: 25px 0 20px;
  position: relative;
  white-space: nowrap;
}

.hero h1>span {
  color: var(--lime);
}

.title-spark {
  display: inline-block;
  width: 39px;
  height: 39px;
  margin-left: 15px;
  vertical-align: top;
  margin-top: 10px;
  color: var(--lime);
  transform: rotate(8deg);
}

.hero-copy>p {
  font-size: 14px;
  line-height: 1.8;
  color: #9da493;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 29px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 21px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 750;
  transition: background .18s,transform .18s;
}

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

.button-primary {
  background: var(--lime);
  color: #18230e;
  border: 1px solid var(--lime);
}

.button-primary:hover {
  background: #c6ff8c;
  border-color: #c6ff8c;
}

.button-primary:disabled:hover {
  transform: none;
}

.button-secondary {
  background: var(--raised);
  border: 1px solid var(--line);
  color: var(--text);
}

.button-secondary:hover {
  background: #252d20;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #7b8473;
}

.hero-note .icon {
  width: 17px;
  height: 17px;
  color: #aab29f;
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 44px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #777f6d;
}

.mini-line {
  height: 1px;
  width: 25px;
  background: #606b52;
}

.hero-edition {
  margin-left: 40px;
  letter-spacing: 1px;
  color: #4d5844;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 54% 51%,#4e682027 0%,#29391a13 42%,transparent 72%);
  border-radius: 24px;
  margin-right: -10px;
  min-height: 430px;
}

.hero-visual:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#78875308 1px,transparent 1px),linear-gradient(90deg,#78875308 1px,transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center,#000,transparent 73%);
}

.hero-cobra-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 25px 26px #0006);
}

/* SVG transforms keep the logo crisp and the motion anchored at its coil. */
.hero-cobra-art .cobra-motion {
  transform-box: fill-box;
  transform-origin: 50% 94%;
  animation: cobra-sway 7.8s ease-in-out infinite;
}

.hero-cobra-art .cobra-tongue {
  transform-box: fill-box;
  transform-origin: 50% 0%;
  transform: none;
  animation: cobra-tongue-flick 6.2s ease-in-out infinite;
}

.hero-cobra-art .cobra-aura {
  animation: cobra-aura-breathe 7.8s ease-in-out infinite;
}

.hero-visual.is-motion-paused .cobra-motion,
.hero-visual.is-motion-paused .cobra-tongue,
.hero-visual.is-motion-paused .cobra-aura {
  animation-play-state: paused;
}

@keyframes cobra-sway {
  0%, 100% { transform: translateY(0) rotate(-1.25deg); }
  50% { transform: translateY(-6px) rotate(1.25deg); }
}

@keyframes cobra-tongue-flick {
  0%, 48%, 64%, 100% { transform: scaleY(.68); }
  50% { transform: scaleY(.12); }
  53% { transform: scaleY(1.04); }
  56% { transform: scaleY(.18); }
  59% { transform: scaleY(1); }
  61% { transform: scaleY(.58); }
}

@keyframes cobra-aura-breathe {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; }
}

.hero-orbit {
  position: absolute;
  border: 1px solid #a8d86b15;
  border-radius: 50%;
  top: 12%;
  left: 17%;
  width: 68%;
  height: 78%;
  transform: rotate(-28deg);
}

.orbit-two {
  top: 17%;
  left: 22%;
  width: 58%;
  height: 68%;
  border-style: dashed;
  border-color: #a8d86b17;
}

.hero-coordinate {
  position: absolute;
  font-size: 7px;
  letter-spacing: 1.5px;
  font-family: monospace;
  color: #59634c;
  z-index: 2;
}

.coordinate-top {
  top: 26px;
  left: 42px;
}

.coordinate-bottom {
  bottom: 18px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 45px;
}

.coordinate-bottom span {
  color: var(--lime);
  font-size: 16px;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: linear-gradient(125deg,#262e22ee,#161c15ef);
  border: 1px solid #414d33;
  border-radius: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px #0003;
}

.badge-level {
  left: 7px;
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  transform: rotate(-4deg);
}

.floating-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 36px;
  border-radius: 7px;
  background: #b4ff6316;
  color: var(--lime);
}

.floating-badge div>span {
  display: block;
  font-size: 7px;
  color: #9aa58d;
  letter-spacing: 1px;
}

.floating-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 3px;
}

.badge-plus {
  font-size: 19px;
  color: #70835b;
  margin-left: 20px;
}

.badge-player {
  right: 0;
  top: 80px;
  font-size: 8px;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  transform: rotate(6deg);
}

.badge-player>span:last-child {
  color: var(--lime);
  font-weight: 800;
  margin-left: 10px;
}

.player-dot {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.benefits>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.benefits>div:first-child {
  justify-content: flex-start;
  padding-left: 35px;
}

.benefits>div:last-child {
  border: 0;
}

.benefits .icon {
  color: var(--lime);
  width: 24px;
  height: 24px;
}

.benefits span {
  font-size: 11px;
  font-weight: 650;
}

.benefits strong {
  display: block;
  color: #7f8876;
  font-weight: 400;
  font-size: 10px;
  margin-top: 2px;
}

.catalog {
  padding-top: 59px;
}

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

.section-kicker {
  display: block;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 1.7px;
  color: #939e86;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 26px;
  letter-spacing: -.9px;
  font-weight: 650;
  line-height: 1.3;
}

.section-heading h2 span {
  color: #838c7a;
}

.catalog-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  letter-spacing: 1.3px;
  color: #7d8871;
  white-space: nowrap;
  padding-bottom: 7px;
}

.catalog-indicator .status-dot {
  width: 4px;
  height: 4px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 29px 0 24px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.category-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: #131612;
  border: 1px solid #272d23;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 550;
  color: #a1a997;
  white-space: nowrap;
  transition: all .18s;
}

.category-tab .icon {
  width: 16px;
  height: 16px;
}

.category-tab:hover {
  border-color: #64794e;
  color: var(--text);
}

.category-tab.active {
  background: var(--lime);
  color: #1a2710;
  border-color: var(--lime);
  font-weight: 700;
}

.sort-control {
  display: flex;
  align-items: center;
  position: relative;
  color: #b0b8a6;
}

.sort-control select {
  appearance: none;
  border: 1px solid #2b3225;
  background: #11150f;
  border-radius: 7px;
  padding: 11px 34px 11px 14px;
  font-size: 10px;
  color: inherit;
  cursor: pointer;
  max-width: 150px;
}

.sort-control .icon {
  position: absolute;
  right: 12px;
  pointer-events: none;
  width: 12px;
  height: 12px;
}

.result-summary {
  font-size: 12px;
  color: var(--muted);
}

.result-summary:not(:empty) {
  margin-bottom: 20px;
}

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

.product-card {
  min-width: 0;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  transition: border-color .2s,transform .2s,box-shadow .2s;
}

.product-card:hover {
  border-color: #53653c;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px #0003;
}

.product-image-button {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  background: #1d2319;
  overflow: hidden;
  text-align: left;
}

.product-image-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
  transition: transform .4s;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0c100bcf;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff22;
  border-radius: 4px;
  padding: 5px 7px;
  color: #e5eedc;
  font-size: 7px;
  letter-spacing: .8px;
  font-weight: 750;
}

.product-body {
  padding: 17px 16px 16px;
}

.product-category {
  color: #7e8d70;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 1.4px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-category:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #6b7b5d;
  border-radius: 50%;
}

.product-name {
  background: none;
  padding: 0;
  display: block;
  text-align: left;
  max-width: 100%;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  color: #e0e6d8;
}

.product-name:hover {
  color: var(--lime);
}

.product-type {
  margin-top: 5px;
  font-size: 9px;
  color: #727d67;
}

.product-buy-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 8px;
  margin-top: 20px;
}

.old-price {
  display: block;
  color: #727c68;
  font-size: 9px;
  min-height: 14px;
  text-decoration: line-through;
}

.product-price {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.65px;
  line-height: 1.4;
}

.product-price small {
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 0;
  margin-right: 2px;
}

.add-button {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #1c2c0c;
  transition: background .2s,transform .2s;
}

.add-button:hover {
  background: #d4ffac;
  transform: scale(1.06);
}

.add-button .icon {
  width: 19px;
  height: 19px;
}

.product-price-note {
  display: block;
  color: #727e67;
  font-size: 8px;
  margin-top: 1px;
}

.catalog-footnote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #737e69;
  margin-top: 24px;
}

.catalog-footnote>span {
  margin-left: auto;
  font-size: 7px;
  letter-spacing: 1.3px;
  color: #56624a;
}

.catalog-footnote>.icon {
  width: 12px;
  height: 12px;
}

.loading-state,.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 12px;
}

.empty-state>.icon {
  margin: 0 auto 15px;
  width: 32px;
  height: 32px;
  color: var(--lime);
}

.empty-state h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.empty-state p {
  margin-bottom: 22px;
}

.empty-state .button {
  margin: auto;
}

.promo-banner {
  margin-top: 54px;
  min-height: 159px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: radial-gradient(ellipse at 0 50%,#7fbd3320,transparent 60%),#141b10;
  border: 1px solid #35432a;
  border-radius: 12px;
  padding: 25px 35px;
  position: relative;
  overflow: hidden;
}

.promo-banner:after {
  content: '';
  position: absolute;
  right: 250px;
  top: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid #a8df6420;
  border-radius: 50%;
  pointer-events: none;
}

.promo-art {
  position: relative;
  align-self: stretch;
  width: 117px;
  flex-shrink: 0;
  color: var(--lime);
}

.promo-art svg {
  height: 112px;
  width: 112px;
  transform: rotate(8deg);
  filter: drop-shadow(0 0 22px #b4ff6325);
}

.promo-art>span {
  position: absolute;
  top: 43px;
  left: 4px;
  transform: rotate(-14deg);
  background: #d0ff98;
  color: #274019;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  border: 1px solid #161f10;
  border-radius: 3px;
  padding: 4px 7px;
}

.promo-copy {
  position: relative;
  z-index: 1;
}

.promo-copy .section-kicker {
  font-size: 7px;
  color: #a3bc89;
  margin-bottom: 7px;
}

.promo-copy h2 {
  font-size: 23px;
  letter-spacing: -.7px;
  font-weight: 650;
  line-height: 1.3;
}

.promo-copy h2 span {
  color: var(--lime);
}

.promo-copy p {
  color: #8d9c7e;
  font-size: 10px;
  margin-top: 8px;
}

.promo-coupon {
  background: #10180bdd;
  border: 1px dashed #67864b;
  padding: 13px 19px;
  border-radius: 7px;
  white-space: nowrap;
  text-align: left;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.promo-coupon:hover {
  background: #1d2e12;
}

.promo-coupon>span {
  font-size: 7px;
  letter-spacing: 1.6px;
  color: #99ae85;
  display: block;
  margin-bottom: 6px;
}

.promo-coupon strong {
  display: flex;
  align-items: center;
  gap: 26px;
  letter-spacing: 1.3px;
  font-size: 15px;
  color: var(--lime);
  font-weight: 700;
}

.promo-coupon .icon {
  width: 15px;
  height: 15px;
}

.how-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 35px;
  padding-top: 65px;
  padding-bottom: 55px;
}

.how-intro h2 {
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -.75px;
  font-weight: 650;
}

.how-intro>p {
  font-size: 10px;
  color: #7d8970;
  margin-top: 12px;
}

.how-step {
  padding-top: 3px;
}

.step-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2b3225;
  padding-bottom: 17px;
  margin-bottom: 19px;
  color: #68765b;
  font-size: 12px;
  font-weight: 650;
  font-family: monospace;
}

.step-number .icon {
  color: var(--lime);
  width: 19px;
  height: 19px;
}

.how-step h3 {
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 9px;
}

.how-step p {
  font-size: 10px;
  line-height: 1.8;
  color: #849178;
  max-width: 220px;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 65px;
  padding-top: 40px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 650;
}

.faq-section>div>p {
  font-size: 11px;
  color: #8c9880;
  margin-top: 12px;
}

.faq-list details {
  border-bottom: 1px solid #2a3223;
}

.faq-list details:first-child {
  border-top: 1px solid #2a3223;
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 11px;
  cursor: pointer;
  color: #cbd4c1;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary .icon {
  width: 16px;
  height: 16px;
  color: #98ad85;
  transition: transform .2s;
}

.faq-list details[open] .icon {
  transform: rotate(45deg);
}

.faq-list details p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 28px 20px 0;
  max-width: 630px;
}

.site-footer {
  border-top: 1px solid #252d20;
  background: #0e120c;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 32px;
  padding-bottom: 30px;
}

.footer-main .brand {
  font-size: 23px;
}

.footer-main .brand-mark {
  width: 28px;
  height: 28px;
}

.footer-main p {
  font-size: 9px;
  color: #707f64;
  margin-top: 10px;
}

.footer-main nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-main nav button,.footer-main nav a {
  background: none;
  padding: 5px 0;
  color: #97a58a;
  font-size: 9px;
}

.footer-main nav button:hover,.footer-main nav a:hover {
  color: var(--lime);
}

.footer-status {
  font-family: monospace;
  font-size: 7px;
  letter-spacing: .7px;
  color: #829270;
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-status .status-dot {
  width: 4px;
  height: 4px;
}

.footer-bottom {
  border-top: 1px solid #222c1b;
  padding-block: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  color: #66765a;
  font-size: 8px;
}

.footer-bottom a {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-bottom a:hover {
  color: var(--lime);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid #33452a;
  border-radius: 8px;
  color: #c1cfb7;
  font-size: 11px;
  background: #172011;
  transition: border-color .2s, color .2s;
}

.footer-contact .icon { width: 18px; height: 18px; }
.whatsapp-contact { color: var(--lime); }
.footer-contact:hover { border-color: var(--lime); color: var(--lime); }

.footer-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid #222c1b;
  padding-block: 26px;
}

.footer-payments { min-width: 0; }
.footer-trust-label { color: #9aaa8d; font-size: 8px; font-weight: 600; letter-spacing: 1.2px; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 13px 0 10px; list-style: none; }
.payment-methods li { display: flex; align-items: center; gap: 7px; min-height: 38px; padding: 8px 10px; border: 1px solid #2b3822; border-radius: 7px; color: #bbcab0; background: #12190f; font-size: 10px; }
.payment-methods .icon { width: 19px; height: 19px; color: #9ac46f; }
.footer-payments p { max-width: 680px; color: #7f9173; font-size: 9px; line-height: 1.7; }
.footer-ssl { flex: 0 0 auto; }
.footer-ssl img { display: block; width: 184px; height: 64px; }

@media(max-width:640px) {
  .footer-trust { gap: 20px; padding-block: 22px; }
  .footer-socials { justify-content: center; }
  .payment-methods { gap: 7px; }
  .payment-methods li { font-size: 10px; }
}

.modal,.drawer {
  background: #141812;
  color: var(--text);
  border: 1px solid #35412b;
  padding: 35px;
  border-radius: 18px;
  max-height: calc(100dvh - 40px);
  width: min(470px,calc(100% - 32px));
  box-shadow: 0 30px 100px #0009;
  overscroll-behavior: contain;
}

.modal::backdrop,.drawer::backdrop {
  background: #030702b8;
  backdrop-filter: blur(7px);
}

.modal[open] {
  animation: modal-in .2s ease-out;
}

.modal h2 {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -.8px;
  margin: 12px 0;
}

.modal .section-kicker {
  margin-top: 10px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: #222a1d;
  border: 1px solid #36422c;
  border-radius: 8px;
  color: #b7c5a9;
  flex-shrink: 0;
}

.icon-button:hover {
  color: var(--lime);
  background: #2e3a25;
}

.modal-emblem {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: #b4ff6315;
  color: var(--lime);
  border: 1px solid #4a6137;
  border-radius: 11px;
  margin-bottom: 22px;
}

.muted {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.auth-tabs {
  display: flex;
  background: #0d110a;
  padding: 4px;
  border-radius: 8px;
  margin: 24px 0;
}

.auth-tabs button {
  flex: 1;
  background: none;
  border-radius: 5px;
  color: #93a184;
  padding: 9px;
  font-size: 12px;
}

.auth-tabs button.active {
  background: #2b3922;
  color: var(--lime);
}

.form-field {
  margin-bottom: 17px;
}

.form-field label {
  display: block;
  font-size: 11px;
  color: #c6d1bc;
  margin-bottom: 7px;
}

.form-field input {
  width: 100%;
  height: 45px;
  background: #0e130b;
  border: 1px solid #35422b;
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--text);
  font-size: 12px;
}

.form-field input:focus {
  border-color: #84b557;
}

.form-field input::placeholder {
  color: #607252;
}

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 47px;
}

.password-input .icon-button {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 33px;
  border: 0;
  background: none;
}

.form-field small {
  display: block;
  font-size: 10px;
  color: #8c9a7f;
  margin-top: 7px;
}

.form-error {
  font-size: 12px;
  color: var(--danger);
  line-height: 1.6;
}

.form-error:not(:empty) {
  margin: 12px 0;
}

.full-width {
  width: 100%;
  gap: 12px;
}

.auth-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  color: #829673;
  font-size: 9px;
}

.auth-modal .section-kicker {
  font-size: 8px;
}

.product-modal {
  padding: 0;
  width: min(720px,calc(100% - 32px));
}

.product-modal .modal-close {
  z-index: 2;
}

.detail-image {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
}

.detail-body {
  padding: 26px 30px 30px;
}

.detail-body h2 {
  margin-top: 10px;
}

.detail-description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}

.detail-list {
  padding: 0;
  list-style: none;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.detail-list li {
  display: flex;
  align-items: start;
  gap: 9px;
  color: #a5b499;
  font-size: 11px;
  line-height: 1.6;
}

.detail-list .icon {
  color: var(--lime);
  width: 14px;
  height: 14px;
  margin-top: 2px;
}

.detail-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  gap: 15px;
}

.detail-purchase .product-price {
  font-size: 29px;
}

.detail-purchase .old-price {
  font-size: 11px;
}

.detail-purchase .button {
  gap: 12px;
}

.drawer {
  max-width: 100vw;
  position: fixed;
  inset: 0 0 0 auto;
  margin: 0;
  width: min(450px,100%);
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 16px 0 0 16px;
  border-width: 0 0 0 1px;
  padding: 26px;
  overflow: auto;
}

.drawer[open] {
  display: flex;
  flex-direction: column;
  animation: drawer-in .23s ease-out;
}

.drawer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 23px;
}

.drawer-heading h2 {
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -.7px;
}

.drawer-heading h2 span {
  color: #6f855c;
  font-size: 17px;
}

.drawer-heading .section-kicker {
  font-size: 7px;
  margin-bottom: 6px;
}

.cart-items {
  flex: 1;
  padding-top: 10px;
  padding-bottom: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #293322;
}

.cart-item>img {
  width: 74px;
  height: 70px;
  object-fit: cover;
  border-radius: 7px;
}

.cart-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.cart-item-top .icon-button {
  width: 23px;
  height: 23px;
  background: none;
  border: 0;
  color: #7d916c;
}

.cart-item-top .icon {
  width: 14px;
  height: 14px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #39492c;
  border-radius: 5px;
  overflow: hidden;
}

.quantity-control button {
  width: 27px;
  height: 25px;
  display: grid;
  place-items: center;
  background: #1c2615;
  color: #a5bc91;
}

.quantity-control button:hover {
  background: #314725;
}

.quantity-control .icon {
  width: 12px;
  height: 12px;
}

.quantity-control>span {
  min-width: 24px;
  text-align: center;
  font-size: 10px;
}

.cart-item-price {
  font-size: 12px;
  font-weight: 650;
}

.cart-empty {
  text-align: center;
  padding: 70px 10px;
}

.cart-empty>.icon {
  margin: 0 auto 20px;
  width: 42px;
  height: 42px;
  color: #9db38a;
}

.cart-empty h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.5px;
}

.cart-empty p {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 25px;
}

.coupon-form {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid #35432b;
  border-radius: 7px;
  background: #0e140a;
}

.coupon-form>.icon {
  width: 17px;
  height: 17px;
  color: #7f976b;
}

.coupon-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 11px;
  padding: 6px 0;
  outline: none;
}

.coupon-form:focus-within {
  border-color: #7aaa51;
}

.coupon-form button {
  font-size: 10px;
  font-weight: 650;
  background: #26351c;
  color: var(--lime);
  border-radius: 4px;
  padding: 7px 9px;
}

.coupon-message {
  color: #a4c38b;
  font-size: 10px;
  line-height: 1.6;
}

.coupon-message:not(:empty) {
  margin-top: 8px;
}

.cart-summary {
  padding-top: 20px;
  border-top: 1px solid #39442e;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 17px;
  color: #9eaf91;
  font-size: 12px;
}

.discount-row {
  color: var(--lime);
  font-size: 11px;
}

.total-row {
  color: var(--text);
  font-size: 18px;
  padding: 17px 0 22px;
  margin-top: 17px;
  border-top: 1px solid #303c26;
}

.total-row strong {
  font-weight: 650;
}

.checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 13px;
  font-size: 9px;
  color: #839773;
}

.checkout-note .icon {
  width: 13px;
  height: 13px;
}

.checkout-notice {
  padding: 15px;
  border: 1px solid #425330;
  background: #202b16;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.7;
  margin: 20px 0;
  color: #b5c7a4;
}

.checkout-notice strong {
  color: #e0edce;
  font-weight: 600;
}

.checkout-notice p {
  margin-top: 4px;
}

.review-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  color: #b4c4a6;
}

.review-item span:last-child {
  white-space: nowrap;
}

.checkout-success {
  text-align: center;
  padding-top: 20px;
}

.checkout-success>.modal-emblem {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
}

.checkout-success>p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.order-reference {
  display: block;
  color: var(--lime);
  font-size: 11px;
  margin: 20px 0;
  font-family: monospace;
}

.account-modal {
  width: min(570px,calc(100% - 32px));
}

.account-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 28px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.account-section-heading h3 {
  font-size: 13px;
  font-weight: 600;
}

.small-label {
  font-size: 7px;
  letter-spacing: 1px;
  color: #9fb68b;
  background: #293c1d;
  border: 1px solid #465f32;
  padding: 4px 6px;
  border-radius: 4px;
}

.account-orders {
  margin: 0 0 25px;
  max-height: 400px;
  overflow: auto;
}

.account-orders>.muted {
  padding: 28px 0;
}

.order-card {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}

.order-card-top strong {
  font-family: monospace;
  font-weight: 500;
  color: #bfd0ad;
}

.order-card-top span {
  font-size: 10px;
  color: #81996e;
}

.order-card p {
  font-size: 11px;
  color: #a4b595;
  margin-top: 9px;
}

.order-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  font-size: 12px;
}

.order-card-bottom span {
  font-size: 9px;
  color: #9ab480;
}

.info-content {
  color: #a2b295;
  font-size: 12px;
  line-height: 1.9;
}

.info-content p {
  margin-top: 15px;
}

.info-content a:not(.button) {
  color: var(--lime);
  text-decoration: underline;
}

.toast-region {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
  width: max-content;
  max-width: calc(100% - 32px);
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #5a7941;
  background: #223518;
  color: #e9f8dc;
  border-radius: 9px;
  padding: 13px 18px;
  box-shadow: 0 8px 40px #0009;
  font-size: 12px;
  animation: modal-in .2s ease-out;
}

.toast>.icon {
  color: var(--lime);
  width: 18px;
  height: 18px;
}

.toast.toast-error {
  background: #391e1f;
  border-color: #744044;
}

.toast.toast-error>.icon {
  color: #ff9b9b;
}

.noscript-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #334b21;
  color: white;
  text-align: center;
  z-index: 200;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawer-in {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media(min-width:1500px) {
  .hero {
    min-height: 540px;
  }
  .hero-copy {
    padding-top: 54px;
  }
  .hero-visual {
    min-height: 460px;
  }
}

@media(max-width:1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 25px;
  }
  .desktop-nav {
    gap: 20px;
    margin-left: 0;
  }
  .search-box {
    width: 235px;
  }
  .header-actions {
    gap: 15px;
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }
  .hero {
    min-height: 470px;
    padding-top: 30px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-copy {
    padding-top: 35px;
  }
  .hero-visual {
    min-height: 400px;
  }
  .title-spark {
    width: 29px;
    height: 29px;
    margin-left: 10px;
  }
  .hero-note {
    font-size: 9px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-bottom {
    margin-top: 37px;
  }
  .badge-player {
    right: 0;
    top: 64px;
  }
  .badge-level {
    left: 0;
    bottom: 62px;
    padding: 9px;
  }
  .badge-plus {
    margin-left: 4px;
  }
  .hero-coordinate {
    font-size: 6px;
  }
  .coordinate-top {
    left: 22px;
  }
  .product-grid {
    gap: 16px;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .catalog-indicator {
    font-size: 6px;
  }
  .category-tab {
    padding: 10px 12px;
  }
  .promo-banner {
    padding: 22px;
    gap: 14px;
  }
  .promo-art {
    width: 85px;
  }
  .promo-art svg {
    width: 85px;
    height: 100px;
  }
  .promo-copy h2 {
    font-size: 20px;
  }
  .promo-coupon {
    padding: 11px 14px;
  }
  .how-section {
    gap: 25px;
  }
  .footer-main nav {
    gap: 17px;
  }
  .footer-status {
    font-size: 6px;
  }
}

@media(max-width:920px) {
  .announcement-label,.announcement-end {
    display: none;
  }
  .announcement {
    justify-content: center;
  }
  .desktop-nav {
    display: none;
  }
  .search-box {
    width: auto;
    flex: 1;
    max-width: 350px;
  }
  .header-inner {
    gap: 30px;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .hero-copy>p {
    font-size: 12px;
  }
  .hero-note {
    display: none;
  }
  .hero {
    min-height: 428px;
    gap: 0;
    padding-top: 20px;
  }
  .hero-visual {
    min-height: 380px;
    margin-right: -18px;
  }
  .hero-bottom {
    font-size: 6px;
    gap: 8px;
  }
  .hero-edition {
    margin-left: 15px;
  }
  .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .floating-badge strong {
    font-size: 12px;
  }
  .floating-badge div>span {
    font-size: 6px;
  }
  .badge-level {
    bottom: 70px;
    left: 12px;
  }
  .badge-player {
    font-size: 6px;
    top: 75px;
    padding: 8px;
    gap: 5px;
  }
  .floating-icon {
    width: 27px;
    height: 30px;
  }
  .badge-plus {
    display: none;
  }
  .coordinate-top {
    left: 28px;
    top: 20px;
  }
  .coordinate-bottom {
    right: 12px;
    gap: 15px;
    bottom: 35px;
  }
  .benefits {
    padding-block: 20px;
  }
  .benefits>div {
    gap: 10px;
  }
  .benefits>div:first-child {
    padding-left: 5px;
  }
  .benefits span {
    font-size: 10px;
  }
  .benefits strong {
    font-size: 8px;
  }
  .benefits .icon {
    width: 20px;
    height: 20px;
  }
  .catalog {
    padding-top: 44px;
  }
  .catalog-indicator {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .catalog-toolbar {
    gap: 12px;
  }
  .category-tabs {
    gap: 6px;
  }
  .category-tab {
    padding: 10px;
    font-size: 9px;
    gap: 6px;
  }
  .category-tab .icon {
    width: 14px;
    height: 14px;
  }
  .sort-control select {
    font-size: 9px;
    padding-left: 10px;
    max-width: 115px;
  }
  .promo-copy h2 {
    font-size: 18px;
  }
  .promo-copy p {
    font-size: 9px;
  }
  .promo-coupon strong {
    font-size: 12px;
    gap: 13px;
  }
  .promo-art {
    width: 65px;
  }
  .promo-art svg {
    width: 75px;
  }
  .promo-banner {
    min-height: 140px;
  }
  .how-section {
    grid-template-columns: repeat(3,1fr);
    padding-top: 45px;
    gap: 25px;
  }
  .how-intro {
    grid-column: 1/-1;
  }
  .how-intro h2 br {
    display: none;
  }
  .how-intro h2 {
    font-size: 25px;
  }
  .how-intro>p {
    display: none;
  }
  .how-intro .section-kicker {
    font-size: 7px;
  }
  .faq-section {
    gap: 30px;
    grid-template-columns: 1fr 1.6fr;
  }
  .faq-section h2 {
    font-size: 23px;
  }
  .footer-status {
    display: none;
  }
  .footer-bottom {
    font-size: 7px;
  }
}

@media(max-width:640px) {
  html {
    scroll-padding-top: 20px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .announcement {
    min-height: 31px;
    padding: 6px 10px;
    font-size: 9px;
    gap: 5px;
  }
  .announcement-divider {
    margin: 0 5px;
  }
  .coupon-copy {
    font-size: 9px;
  }
  .announcement .icon {
    width: 10px;
    height: 10px;
  }
  .site-header {
    height: auto;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 17px 20px;
    padding-top: 21px;
    padding-bottom: 16px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
  .header-actions {
    margin-left: auto;
    gap: 17px;
  }
  .login-button {
    font-size: 11px;
    max-width: 110px;
  }
  .login-button .icon {
    width: 17px;
    height: 17px;
  }
  .cart-button>.icon {
    width: 20px;
    height: 20px;
  }
  .search-box {
    flex: 0 0 100%;
    order: 3;
    max-width: none;
    height: 39px;
    margin: 0;
  }
  .search-box input {
    font-size: 11px;
  }
  .search-box kbd {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 25px;
    padding-bottom: 0;
    min-height: 0;
    overflow: hidden;
  }
  .hero-copy {
    padding-top: 9px;
  }
  .eyebrow {
    font-size: 7px;
    letter-spacing: 1.5px;
  }
  .hero h1 {
    font-size: clamp(38px,9.5vw,57px);
    letter-spacing: -2px;
    margin: 22px 0 17px;
    line-height: 1.08;
  }
  .title-spark {
    width: 32px;
    height: 32px;
    margin-top: 8px;
  }
  .hero-copy>p {
    font-size: 12px;
    line-height: 1.8;
  }
  .hero-actions {
    margin-top: 23px;
    gap: 18px;
  }
  .hero-actions .button {
    min-height: 44px;
    padding: 12px 17px;
    font-size: 11px;
  }
  .hero-note {
    display: flex;
    font-size: 8px;
    gap: 5px;
  }
  .hero-note .icon {
    width: 14px;
    height: 14px;
  }
  .hero-bottom {
    display: none;
  }
  .hero-visual {
    height: 330px;
    min-height: 0;
    margin: 0 -8px 0 0;
    max-width: 470px;
    width: 100%;
    justify-self: center;
  }
  .hero-cobra-art {
    height: 110%;
    top: -2%;
  }
  .hero-orbit {
    top: 8%;
    left: 20%;
    width: 61%;
    height: 83%;
  }
  .orbit-two {
    top: 15%;
    left: 25%;
    width: 52%;
    height: 69%;
  }
  .coordinate-top {
    top: 24px;
    left: 16px;
    font-size: 6px;
  }
  .coordinate-bottom {
    bottom: 17px;
    right: 15px;
  }
  .badge-player {
    right: 3px;
    top: 55px;
    font-size: 7px;
  }
  .badge-level {
    left: 3px;
    bottom: 36px;
    padding: 10px;
    gap: 9px;
  }
  .floating-badge strong {
    font-size: 13px;
  }
  .floating-badge div>span {
    font-size: 6px;
  }
  .badge-plus {
    display: block;
    margin-left: 15px;
  }
  .hero-visual:before {
    background-size: 32px 32px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
    padding: 19px 0;
    gap: 15px;
  }
  .benefits>div {
    justify-content: flex-start;
    gap: 9px;
  }
  .benefits>div:first-child {
    padding: 0;
  }
  .benefits>div:nth-child(2) {
    border: 0;
    justify-content: center;
  }
  .benefits>div:last-child {
    display: none;
  }
  .benefits .icon {
    width: 21px;
    height: 21px;
  }
  .benefits span {
    font-size: 9px;
  }
  .benefits strong {
    font-size: 7px;
    margin-top: 4px;
  }
  .catalog {
    padding-top: 35px;
  }
  .section-kicker {
    font-size: 7px;
    margin-bottom: 9px;
    letter-spacing: 1.5px;
  }
  .section-heading h2 {
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: -.7px;
  }
  .section-heading h2 span {
    display: block;
  }
  .catalog-toolbar {
    flex-wrap: wrap;
    gap: 15px;
    margin: 23px 0 19px;
  }
  .category-tabs {
    width: 100%;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 7px;
    scrollbar-width: thin;
    scrollbar-color: #3c4f2b transparent;
  }
  .category-tab {
    padding: 10px 12px;
    gap: 7px;
    font-size: 10px;
  }
  .category-tab .icon {
    width: 15px;
    height: 15px;
  }
  .sort-control {
    margin-left: auto;
  }
  .sort-control select {
    padding: 7px 30px 7px 10px;
    max-width: 150px;
    font-size: 9px;
  }
  .result-summary:not(:empty) {
    margin-bottom: 15px;
    font-size: 11px;
  }
  .product-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 13px 11px;
  }
  .product-card {
    border-radius: 9px;
  }
  .product-image-button img {
    aspect-ratio: 1.6;
    object-fit: cover;
  }
  .product-badge {
    font-size: 5px;
    letter-spacing: .6px;
    top: 8px;
    left: 7px;
    padding: 4px 5px;
  }
  .product-body {
    padding: 13px 11px 12px;
  }
  .product-category {
    font-size: 6px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .product-name {
    font-size: 11px;
    min-height: 32px;
    line-height: 1.5;
  }
  .product-type {
    font-size: 8px;
    margin-top: 3px;
  }
  .product-buy-row {
    margin-top: 12px;
    gap: 4px;
  }
  .product-price {
    font-size: 19px;
    letter-spacing: -.8px;
  }
  .product-price small {
    font-size: 9px;
  }
  .old-price {
    font-size: 8px;
    min-height: 12px;
  }
  .product-price-note {
    font-size: 7px;
  }
  .add-button {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .add-button .icon {
    width: 17px;
    height: 17px;
  }
  .catalog-footnote {
    font-size: 8px;
    line-height: 1.6;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .catalog-footnote>span {
    margin: 4px 0 0;
    width: 100%;
    text-align: center;
    font-size: 6px;
  }
  .promo-banner {
    margin-top: 33px;
    flex-wrap: wrap;
    padding: 22px;
    gap: 16px;
    border-radius: 10px;
  }
  .promo-art {
    display: none;
  }
  .promo-copy {
    flex: 1 1 100%;
  }
  .promo-copy h2 {
    font-size: 22px;
    max-width: 280px;
    line-height: 1.25;
    letter-spacing: -.6px;
  }
  .promo-copy .section-kicker {
    font-size: 6px;
  }
  .promo-copy p {
    font-size: 10px;
    line-height: 1.6;
    max-width: 240px;
  }
  .promo-coupon {
    margin-left: 0;
    padding: 10px 14px;
  }
  .promo-coupon strong {
    font-size: 13px;
    gap: 30px;
  }
  .promo-coupon>span {
    font-size: 6px;
  }
  .promo-banner:after {
    right: -140px;
    top: 0;
    width: 290px;
    height: 290px;
  }
  .how-section {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 37px;
    gap: 24px;
  }
  .how-intro h2 {
    font-size: 23px;
  }
  .how-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
    align-items: start;
    padding-top: 0;
  }
  .step-number {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 11px;
  }
  .step-number .icon {
    width: 19px;
    height: 19px;
  }
  .how-step h3 {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .how-step p {
    font-size: 10px;
    max-width: 260px;
    line-height: 1.7;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-top: 32px;
    padding-bottom: 37px;
  }
  .faq-section h2 {
    font-size: 23px;
  }
  .faq-section>div>p {
    font-size: 10px;
    margin-top: 8px;
  }
  .faq-list summary {
    font-size: 11px;
    padding: 17px 0;
  }
  .faq-list details p {
    font-size: 10px;
    padding-right: 12px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    padding-top: 27px;
    padding-bottom: 24px;
  }
  .footer-main .brand {
    font-size: 24px;
  }
  .footer-main p {
    font-size: 9px;
  }
  .footer-main nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .footer-main nav button,.footer-main nav a {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 11px;
    flex-wrap: wrap;
    padding-block: 18px;
  }
  .footer-bottom>span:nth-child(2) {
    order: 3;
    flex-basis: 100%;
    font-size: 7px;
  }
  .modal {
    padding: 27px 23px;
    border-radius: 14px;
    max-height: calc(100dvh - 28px);
  }
  .modal h2 {
    font-size: 24px;
    padding-right: 13px;
  }
  .auth-modal .modal-emblem {
    margin-bottom: 17px;
  }
  .auth-tabs {
    margin: 20px 0;
  }
  .auth-footer {
    font-size: 8px;
    gap: 4px;
  }
  .modal-close {
    right: 12px;
    top: 12px;
  }
  .product-modal {
    padding: 0;
  }
  .detail-image {
    max-height: 240px;
    aspect-ratio: 1.6;
    object-fit: cover;
  }
  .detail-body {
    padding: 23px;
  }
  .detail-body h2 {
    font-size: 22px;
  }
  .detail-purchase {
    gap: 10px;
  }
  .detail-purchase .button {
    font-size: 10px;
    padding: 11px 13px;
    gap: 8px;
  }
  .detail-purchase .button .icon {
    width: 17px;
    height: 17px;
  }
  .detail-purchase .product-price {
    font-size: 25px;
  }
  .drawer {
    padding: 24px 20px;
    border-radius: 0;
    border: 0;
  }
  .drawer-heading {
    padding-bottom: 20px;
  }
  .drawer-heading h2 {
    font-size: 24px;
  }
  .toast-region {
    bottom: 15px;
  }
  .toast {
    font-size: 11px;
    padding: 12px 14px;
  }
  .account-section-heading .small-label {
    font-size: 6px;
  }
  .order-card-top {
    font-size: 10px;
  }
  .order-card-top span {
    font-size: 9px;
  }
  .order-reference {
    font-size: 10px;
    overflow-wrap: anywhere;
  }
  .checkout-success h2 {
    padding-right: 0;
  }
  .button:hover {
    transform: none;
  }
  .product-card:hover {
    transform: none;
  }
  .loading-state,.empty-state {
    padding: 50px 14px;
  }
  .empty-state h3 {
    font-size: 16px;
  }
  .empty-state p {
    font-size: 12px;
  }
}

/* Keep the longer wordmark on the original header row on narrow phones. */
@media(max-width:360px) {
  .site-header .brand {
    font-size: 18px;
    gap: 6px;
  }

  .site-header .brand-mark {
    width: 24px;
    height: 24px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none!important;
    transition: none!important;
  }
}
