/* 1. Variables */
:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --panel: rgba(20, 20, 20, .72);
  --line: rgba(113, 113, 113, .25);
  --text: #f5f7fb;
  --muted: rgba(255, 255, 255, .55);
  --accent: #4bc84b;
  --accent-2: #6fbe63;
  --danger: #e45858;
  --warning: #e8c547;
  --radius: 6px;
  --header-h: 74px;
  --container: 1180px;
  --shadow-green: 0 0 24px rgba(75, 200, 75, .12);
  --glow-soft: 0 0 28px rgba(75, 200, 75, .16);
  --glow-strong: 0 0 42px rgba(75, 200, 75, .28), 0 0 110px rgba(75, 200, 75, .12);
  --panel-shadow: 0 24px 80px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .04);
  --aaa-panel: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018) 44%, rgba(75, 200, 75, .035));
  --aaa-line: rgba(255, 255, 255, .095);
  --aaa-line-green: rgba(75, 200, 75, .34);
  --aaa-shadow: 0 34px 120px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .055);
  --aaa-shadow-hover: 0 34px 120px rgba(0, 0, 0, .5), 0 0 52px rgba(75, 200, 75, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
  --color-primary: var(--accent);
  --color-secondary: var(--accent-2);
  --color-text: var(--text);
  --color-bg: var(--bg);
  --color-brighter-bg: var(--bg-2);
  color-scheme: dark;
}

/* 2. Reset/base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 4%, rgba(75, 200, 75, .18), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(75, 200, 75, .11), transparent 30rem),
    radial-gradient(circle at 50% 112%, rgba(75, 200, 75, .09), transparent 42rem),
    linear-gradient(180deg, #030403 0%, var(--bg) 38%, #050605 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, .12) 0 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 3px 3px;
  opacity: .58;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), transparent 42%, rgba(0, 0, 0, .55)),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, 100% 4px;
  mix-blend-mode: screen;
  opacity: .5;
}

@keyframes ambientPulse {
  0%, 100% {
    opacity: .56;
    transform: scale(1);
  }

  50% {
    opacity: .84;
    transform: scale(1.04);
  }
}

@keyframes borderSweep {
  0% {
    transform: translateX(-120%);
  }

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

@keyframes neonCount {
  0% {
    opacity: 0;
    transform: translateY(-10px);
    text-shadow: none;
  }

  55% {
    opacity: 1;
    text-shadow: 0 0 34px rgba(75, 200, 75, .42);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 24px rgba(75, 200, 75, .22);
  }
}

@keyframes softBlink {
  0%, 100% {
    opacity: .72;
    box-shadow: 0 0 18px rgba(75, 200, 75, .08);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 32px rgba(75, 200, 75, .22);
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  color: #061006;
  background: var(--accent);
}

[hidden] {
  display: none !important;
}

/* 3. Layout/container */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 40px, 760px);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-tight {
  padding-top: 28px;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .026), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 0%, rgba(75, 200, 75, .08), transparent 28rem);
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.section-heading,
.page-heading {
  margin-bottom: 34px;
}

.section-heading {
  position: relative;
  padding-bottom: 18px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .72;
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .82s cubic-bezier(.2, .8, .2, 1), opacity .82s ease;
}

.section-heading.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-title {
  margin: 0;
  max-width: 900px;
  color: var(--text);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.section-kicker {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(75, 200, 75, .36);
}

.page-hero {
  padding-bottom: 24px;
}

.page-category .site-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 200, 75, .08), transparent 30rem),
    radial-gradient(circle at 86% 40%, rgba(157, 255, 46, .035), transparent 28rem),
    linear-gradient(180deg, #030603 0%, #050805 44%, #020302 100%);
}

.page-category .site-main::before,
.page-category .site-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-category .site-main::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .021) 1px, transparent 1px),
    radial-gradient(circle, rgba(75, 200, 75, .16) 0 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px, 5px 5px;
  opacity: .34;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .95), rgba(0, 0, 0, .55) 46%, transparent 94%);
}

.page-category .site-main::after {
  inset: 72px -16% auto;
  height: 520px;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(75, 200, 75, .09), transparent 48%),
    linear-gradient(90deg, transparent, rgba(75, 200, 75, .035), transparent);
  filter: blur(18px);
  opacity: .62;
}

.page-category .site-main > .section {
  position: relative;
  z-index: 1;
}

.category-landing {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, calc(100svh - var(--header-h)), 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background:
    radial-gradient(circle at 68% 24%, rgba(75, 200, 75, .13), transparent 24rem),
    linear-gradient(135deg, rgba(5, 8, 5, .54), rgba(16, 21, 16, .2) 48%, rgba(5, 6, 5, .68)),
    var(--hero-image),
    linear-gradient(135deg, #050805, #101510 48%, #050605);
  background-position: center;
  background-size: auto, auto, cover, auto;
}

.category-landing__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 3, .94) 0%, rgba(3, 5, 3, .72) 38%, rgba(3, 5, 3, .18) 70%, rgba(3, 5, 3, .52) 100%),
    linear-gradient(0deg, rgba(3, 5, 3, 1) 0%, rgba(3, 5, 3, .72) 15%, rgba(3, 5, 3, .18) 48%, rgba(3, 5, 3, .42) 100%);
}

.category-landing::before,
.category-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.category-landing::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .14;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), transparent 72%);
}

.category-landing::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 200, 75, .44), transparent);
}

.category-landing__inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  padding: clamp(82px, 13svh, 140px) 0 clamp(58px, 9svh, 92px);
}

.category-landing__copy {
  max-width: 780px;
}

.category-landing h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(82px, 17vw, 190px);
  font-weight: 950;
  line-height: .76;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 58px rgba(0, 0, 0, .58);
}

.category-landing__subtitle {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.category-landing__description {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .66);
}

.category-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.category-landing__actions .btn {
  min-height: 52px;
  padding-inline: 24px;
}

.category-landing__meta {
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: rgba(3, 5, 3, .38);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.category-landing__meta span {
  display: block;
  color: var(--accent);
  font-size: 48px;
  font-weight: 950;
  line-height: .9;
}

.category-landing__meta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-hero-section {
  padding: 92px 0 46px;
}

.page-heading {
  padding: 30px;
}

.category-heading {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: stretch;
  gap: 42px;
  min-height: 360px;
  padding: 42px;
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .012) 45%, rgba(75, 200, 75, .045)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .055), transparent 18rem),
    radial-gradient(circle at 85% 20%, rgba(75, 200, 75, .11), transparent 20rem),
    linear-gradient(180deg, rgba(17, 19, 17, .96), rgba(8, 10, 8, .94));
  box-shadow:
    0 36px 130px rgba(0, 0, 0, .54),
    0 0 0 1px rgba(75, 200, 75, .04),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.category-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(75, 200, 75, .34);
  background:
    linear-gradient(110deg, rgba(75, 200, 75, .18) 0 1px, transparent 1px 16%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .035), transparent);
  opacity: .72;
}

.category-heading::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, rgba(255, 255, 255, .035), transparent 58%);
  transform: rotate(45deg);
  opacity: .72;
}

.category-heading__main,
.category-heading__aside {
  position: relative;
  z-index: 1;
}

.category-heading__main {
  align-self: end;
  max-width: 780px;
}

.category-heading__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.category-heading__badges span,
.product-card__meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-heading .section-title {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(255, 255, 255, .08);
}

.category-heading__subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0;
}

.category-heading__aside {
  overflow: hidden;
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(2, 3, 2, .42);
  text-align: center;
}

.category-heading__aside::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, .09);
  transform: rotate(45deg);
  opacity: .62;
}

.category-heading__aside > span {
  display: block;
  color: var(--accent);
  font-size: 62px;
  font-weight: 950;
  line-height: .9;
  text-shadow: 0 0 32px rgba(75, 200, 75, .36);
}

.category-heading__aside p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-emblem {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(75, 200, 75, .38);
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 200, 75, .2), transparent 72%),
    rgba(75, 200, 75, .045);
  clip-path: polygon(50% 0, 100% 33%, 82% 100%, 18% 100%, 0 33%);
  box-shadow: inset 0 0 26px rgba(75, 200, 75, .08);
}

.category-emblem span {
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.category-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 30px;
}

.category-perks span {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(90deg, rgba(75, 200, 75, .08), rgba(255, 255, 255, .025)),
    rgba(0, 0, 0, .18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-perks span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(75, 200, 75, .5);
}

.category-showcase {
  padding-top: 38px;
  padding-bottom: 14px;
}

.category-showcase__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .065);
}

.category-showcase__head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.category-showcase__head p:not(.eyebrow) {
  max-width: 600px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
}

.page-heading__copy {
  max-width: 860px;
  margin-top: 16px;
  color: var(--muted);
}

.empty-state {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.text-content {
  color: inherit;
}

.reveal {
  --reveal-y: 34px;
  --reveal-scale: .975;
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(var(--reveal-y)) scale(var(--reveal-scale));
  transition:
    opacity .82s cubic-bezier(.2, .8, .2, 1),
    filter .82s cubic-bezier(.2, .8, .2, 1),
    transform .82s cubic-bezier(.2, .8, .2, 1),
    box-shadow .32s ease,
    border-color .32s ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.popup .reveal,
.site-popup .reveal,
.store-product-popup-content .reveal,
.basket-popup-content .reveal,
.login-popup-content .reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.section-heading.reveal {
  --reveal-y: 24px;
  --reveal-scale: .99;
}

.experience-card.reveal,
.category-card.reveal,
.product-card.reveal {
  --reveal-y: 46px;
  --reveal-scale: .955;
}

.final-cta.reveal {
  --reveal-y: 56px;
  --reveal-scale: .965;
}

.final-cta.reveal.is-visible {
  animation: ctaArrive 1.15s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes ctaArrive {
  0% {
    box-shadow: 0 0 0 rgba(75, 200, 75, 0), var(--panel-shadow);
  }

  45% {
    box-shadow: 0 0 70px rgba(75, 200, 75, .34), 0 0 180px rgba(75, 200, 75, .12), var(--panel-shadow);
  }

  100% {
    box-shadow: var(--glow-soft), var(--panel-shadow);
  }
}

/* 4. Header/nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  background:
    linear-gradient(180deg, rgba(10, 11, 10, .9), rgba(4, 5, 4, .76)),
    rgba(7, 7, 7, .72);
  backdrop-filter: blur(20px) saturate(1.15);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(75, 200, 75, .52), transparent);
  opacity: .7;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, .9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28), 0 0 36px rgba(75, 200, 75, .08);
}

.nav-wrap {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  padding: 7px 0;
}

.brand-logo,
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(75, 200, 75, .32));
}

.brand-logo {
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 200, 75, .45);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(75, 200, 75, .08);
  font-weight: 900;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  overflow: hidden;
  max-width: 220px;
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  overflow: hidden;
  max-width: 220px;
  color: var(--muted);
  font-size: 12px;
  opacity: .82;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-navigation {
  justify-self: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 7px;
  background: rgba(255, 255, 255, .018);
}

.nav-links,
.navigation-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.navigation-list a {
  display: block;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav-links a:hover,
.navigation-list a:hover,
.nav-links a.link-active,
.navigation-list a.link-active {
  border-color: rgba(75, 200, 75, .35);
  color: var(--text);
  background: rgba(75, 200, 75, .08);
  text-shadow: 0 0 16px rgba(75, 200, 75, .45);
  box-shadow: inset 0 0 18px rgba(75, 200, 75, .05);
  transform: translateY(-1px);
}

.auth-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.basket-button {
  gap: 9px;
}

.basket-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 99px;
  color: #071007;
  background: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
}

.nav-toggle,
.nav-close {
  display: none;
}

/* 5. Buttons */
.btn,
.btn-primary,
.btn-secondary,
.btn-tertiary {
  --btn-bg: transparent;
  --btn-color: var(--text);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  color: var(--btn-color);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, 0)),
    var(--btn-bg);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, filter .18s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 200, 75, .55);
  box-shadow: var(--glow-soft);
  filter: saturate(1.08);
}

.btn:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.btn[disabled],
.btn-primary[disabled],
.btn-secondary[disabled] {
  opacity: .48;
  pointer-events: none;
}

.btn-primary {
  --btn-bg: var(--accent);
  --btn-color: #071007;
  border-color: rgba(75, 200, 75, .8);
  box-shadow: 0 0 22px rgba(75, 200, 75, .18), inset 0 1px 0 rgba(255, 255, 255, .34), inset 0 -14px 26px rgba(0, 0, 0, .08);
}

.btn-primary:hover {
  box-shadow: var(--glow-strong);
}

.btn-outline,
.btn-secondary {
  --btn-bg: rgba(255, 255, 255, .03);
  --btn-color: var(--text);
}

.btn-tertiary {
  --btn-bg: rgba(255, 255, 255, .04);
  --btn-color: var(--text);
  min-width: 38px;
  padding-inline: 10px;
}

.link-text {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 6. Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(610px, calc(100svh - 112px), 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background:
    radial-gradient(circle at 68% 26%, rgba(75, 200, 75, .09), transparent 24rem),
    linear-gradient(135deg, #050805, #101510 48%, #050605);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-position: center calc(50% + var(--hero-shift, 0px));
  background-size: cover;
  filter: saturate(.82) contrast(1.08) brightness(.78);
  transform: scale(1.045);
  transition: background-position .12s linear;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 3, .96) 0%, rgba(3, 5, 3, .72) 40%, rgba(3, 5, 3, .18) 78%, rgba(3, 5, 3, .5) 100%),
    linear-gradient(0deg, rgba(3, 5, 3, 1) 0%, rgba(3, 5, 3, .72) 16%, rgba(3, 5, 3, calc(.16 + var(--hero-dim, 0))) 58%, rgba(3, 5, 3, .42) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__inner {
  position: relative;
  min-height: inherit;
  display: grid;
  align-items: end;
  padding: clamp(82px, 12svh, 132px) 0 clamp(58px, 9svh, 88px);
}

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

.hero-copy .eyebrow {
  text-shadow: 0 0 18px rgba(75, 200, 75, .62);
}

.hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(58px, 8.8vw, 112px);
  font-weight: 950;
  line-height: .86;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 58px rgba(0, 0, 0, .68);
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-status li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 0 0 2px;
  border: 0;
  color: rgba(255, 255, 255, .68);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-status li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(75, 200, 75, .65);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-ribbon {
  position: relative;
  z-index: 3;
  margin: -28px 0 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(90deg, rgba(75, 200, 75, .12), rgba(255, 255, 255, .025) 40%, rgba(255, 255, 255, .015)),
    rgba(6, 8, 6, .76);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  padding: 42px;
  border-color: rgba(75, 200, 75, .22);
  background:
    linear-gradient(135deg, rgba(75, 200, 75, .18), rgba(75, 200, 75, 0) 42%),
    radial-gradient(circle at 82% 22%, rgba(75, 200, 75, .22), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .014)),
    rgba(11, 12, 11, .9);
  box-shadow: var(--aaa-shadow), 0 0 80px rgba(75, 200, 75, .1);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .45), transparent 70%);
}

.final-cta__content,
.final-cta__action {
  position: relative;
  z-index: 1;
}

.final-cta__text {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
}

.final-cta__action {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.final-cta__status {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(75, 200, 75, .32);
  border-radius: 4px;
  color: var(--accent);
  background: rgba(75, 200, 75, .075);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  animation: softBlink 2.4s ease-in-out infinite;
}

/* 7. Panels/cards */
.panel {
  position: relative;
  border: 1px solid var(--aaa-line);
  border-radius: var(--radius);
  background:
    var(--aaa-panel),
    var(--panel);
  backdrop-filter: blur(16px) saturate(1.12);
  box-shadow: var(--aaa-shadow);
}

.panel::selection {
  background: var(--accent);
}

.panel:not(.hero-card)::after {
  opacity: .78;
}

.nui-corners::before,
.nui-corners::after,
.hero-card::before,
.hero-card::after,
.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: .9;
}

.nui-corners::before,
.hero-card::before,
.product-card::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.nui-corners::after,
.hero-card::after,
.product-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.corners-off .nui-corners::before,
.corners-off .nui-corners::after,
.corners-off .hero-card::before,
.corners-off .hero-card::after,
.corners-off .product-card::before,
.corners-off .product-card::after,
.corners-off .package-summary::before,
.corners-off .package-summary::after,
.corners-off .final-cta::after {
  display: none;
}

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

.experience-card {
  min-height: 270px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    radial-gradient(circle at 24px 24px, rgba(75, 200, 75, .09), transparent 9rem),
    linear-gradient(145deg, rgba(75, 200, 75, .025), transparent 40%),
    var(--panel);
  box-shadow: var(--aaa-shadow), inset 0 0 32px rgba(75, 200, 75, .018);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: .72;
}

.experience-card::after {
  box-shadow: 8px 8px 18px rgba(75, 200, 75, .08);
}

.experience-card__index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, .075);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.experience-card.is-visible .experience-card__index {
  animation: none;
}

.experience-card:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--aaa-line-green);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .46), 0 0 30px rgba(75, 200, 75, .1), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.experience-card h3,
.category-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
  text-shadow: 0 0 22px rgba(255, 255, 255, .08);
}

.experience-card p,
.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
}

/* 8. Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 22px;
}

.category-card {
  min-height: 310px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 30px;
  background:
    radial-gradient(circle at 28px 28px, rgba(75, 200, 75, .075), transparent 10rem),
    linear-gradient(135deg, rgba(75, 200, 75, .022), rgba(75, 200, 75, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .043), rgba(255, 255, 255, .012)),
    var(--panel);
  box-shadow: var(--aaa-shadow), inset 0 0 34px rgba(75, 200, 75, .014);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 182px;
  height: 182px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(135deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0));
  opacity: .9;
  transform: rotate(45deg);
  transition: border-color .18s ease, opacity .18s ease, transform .18s ease;
}

.category-card::after {
  box-shadow: 8px 8px 18px rgba(75, 200, 75, .08);
}

.category-card:hover::before {
  border-color: rgba(75, 200, 75, .18);
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -2px);
}

.category-card:hover {
  background:
    radial-gradient(circle at 28px 28px, rgba(75, 200, 75, .095), transparent 10rem),
    linear-gradient(135deg, rgba(75, 200, 75, .038), rgba(75, 200, 75, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .014)),
    var(--panel);
}

.category-card__content {
  position: relative;
  z-index: 1;
}

.category-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.category-card__top .eyebrow {
  margin: 0;
}

.category-card__top span {
  color: rgba(255, 255, 255, .075);
  font-size: 30px;
  font-weight: 900;
  text-shadow: none;
}

.category-card.is-visible .category-card__top span {
  animation: none;
}

.category-card .btn,
.final-cta .btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.category-card .btn {
  width: 100%;
  min-height: 46px;
}

.category-card .btn::after,
.final-cta .btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .22) 50%, transparent 100%);
  transform: translateX(-120%);
}

.category-card:hover .btn::after,
.final-cta:hover .btn::after {
  animation: borderSweep 1.1s ease;
}

.category-card__description {
  margin-top: 12px;
  color: var(--muted);
}

/* Premium storefront treatment for the home page */
.page-index .site-main {
  background:
    radial-gradient(circle at 50% 18%, rgba(75, 200, 75, .08), transparent 34rem),
    radial-gradient(circle at 86% 52%, rgba(157, 255, 46, .035), transparent 28rem),
    linear-gradient(180deg, #030603 0%, #050805 48%, #020302 100%);
}

.page-index .section {
  position: relative;
  overflow: hidden;
}

.page-index .section-heading {
  max-width: 980px;
  padding-bottom: 24px;
}

.page-index .section-heading::after {
  width: 220px;
  background: linear-gradient(90deg, rgba(75, 200, 75, .9), rgba(255, 255, 255, .18), transparent);
}

.page-index .section-title {
  max-width: 960px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .9;
  text-transform: uppercase;
}

.page-index .section-kicker {
  max-width: 680px;
  color: rgba(255, 255, 255, .64);
}

.home-experience {
  padding-top: 112px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(75, 200, 75, .06), transparent 28rem);
}

.page-index .experience-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  grid-auto-rows: minmax(205px, auto);
  gap: 18px;
  margin-top: 34px;
}

.page-index .experience-card {
  min-height: 230px;
  justify-content: flex-end;
  padding: 34px;
  border-color: rgba(255, 255, 255, .105);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .014) 50%, rgba(75, 200, 75, .028)),
    rgba(8, 10, 8, .82);
  box-shadow: 0 30px 110px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.page-index .experience-card:first-child {
  grid-row: span 2;
  min-height: 460px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .016) 42%, rgba(75, 200, 75, .045)),
    radial-gradient(circle at 74% 24%, rgba(75, 200, 75, .09), transparent 18rem),
    rgba(8, 10, 8, .86);
}

.page-index .experience-card::before {
  left: 34px;
  bottom: 30px;
  width: 34px;
  opacity: .55;
}

.page-index .experience-card__index {
  top: 24px;
  right: 28px;
  color: rgba(255, 255, 255, .055);
  font-size: clamp(54px, 7vw, 88px);
}

.page-index .experience-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: .95;
  text-transform: uppercase;
}

.page-index .experience-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, .66);
}

.page-index .experience-card:not(:first-child) h3 {
  font-size: clamp(23px, 2vw, 30px);
}

.home-catalogue {
  border-block: 1px solid rgba(255, 255, 255, .055);
  background:
    radial-gradient(circle at 72% 10%, rgba(75, 200, 75, .06), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, .024), rgba(255, 255, 255, .006));
}

.home-catalogue::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .18;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .9) 18%, rgba(0, 0, 0, .45) 82%, transparent);
}

.home-catalogue > .container {
  position: relative;
  z-index: 1;
}

.page-index .category-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 380px));
  justify-content: start;
  gap: 22px;
  margin-top: 34px;
}

.page-index .category-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  padding: 0;
  width: 100%;
  border-color: rgba(255, 255, 255, .105);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .012) 48%, rgba(75, 200, 75, .028)),
    rgba(7, 9, 7, .86);
  box-shadow: 0 32px 110px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.page-index .category-card::before {
  display: none;
}

.category-card__media {
  position: relative;
  z-index: 1;
  width: 100%;
  inline-size: 100%;
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(circle at 50% 44%, rgba(75, 200, 75, .16), transparent 18rem),
    #050705;
}

.category-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .38)),
    linear-gradient(90deg, rgba(3, 5, 3, .36), transparent 55%);
}

.category-card__media img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.98) contrast(1.08) brightness(.94);
  transition: transform .28s ease, filter .28s ease;
}

.category-card:hover .category-card__media img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.1) brightness(.98);
}

.category-card__placeholder {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(75, 200, 75, .38);
  border-radius: 4px;
  color: var(--accent);
  background: rgba(75, 200, 75, .08);
  font-size: 34px;
  font-weight: 950;
  text-transform: uppercase;
}

.page-index .category-card__content {
  padding: 24px 26px 0;
}

.page-index .category-card__top {
  margin-bottom: 24px;
}

.page-index .category-card__top span {
  color: rgba(255, 255, 255, .07);
  font-size: 42px;
  line-height: .8;
}

.page-index .category-card h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: .9;
  text-transform: uppercase;
}

.page-index .category-card__description {
  max-width: 560px;
  color: rgba(255, 255, 255, .62);
}

.page-index .category-card .btn {
  width: calc(100% - 52px);
  min-width: 0;
  justify-self: center;
  margin: 22px 26px 26px;
}

.page-index .category-card--with-media {
  min-height: 380px;
  aspect-ratio: 1 / 1;
  display: block;
}

.page-index .category-card--with-media .category-card__media {
  position: absolute;
  inset: 0;
  border-bottom: 0;
  aspect-ratio: auto;
}

.page-index .category-card--with-media .category-card__cta {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  align-self: center;
  justify-self: center;
  width: min(230px, calc(100% - 52px));
  margin: 0;
  transform: translateX(-50%);
}

.home-discord {
  padding-top: 96px;
}

.page-index .final-cta {
  min-height: 340px;
  align-items: end;
  padding: clamp(34px, 5vw, 58px);
  border-color: rgba(255, 255, 255, .105);
  background:
    linear-gradient(90deg, rgba(3, 5, 3, .96), rgba(3, 5, 3, .68) 48%, rgba(3, 5, 3, .24)),
    radial-gradient(circle at 88% 32%, rgba(75, 200, 75, .11), transparent 22rem),
    var(--hero-image),
    rgba(7, 9, 7, .9);
  background-position: center;
  background-size: auto, auto, cover, auto;
  box-shadow: 0 38px 130px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.page-index .final-cta .section-title {
  max-width: 900px;
  font-size: clamp(36px, 5vw, 68px);
}

.page-index .final-cta__status {
  animation: none;
}

/* 9. Product cards */
.product-grid,
.store-products-grid,
.store-products-images,
.store-products-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 200, 75, .1), transparent 13rem),
    var(--aaa-panel),
    var(--panel);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.product-card__image {
  position: relative;
  display: grid;
  min-height: 238px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(75, 200, 75, .14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0)),
    #0b0d0b;
}

.product-card__image img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  transition: transform .24s ease, filter .24s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.image-placeholder {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(75, 200, 75, .42);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(75, 200, 75, .08);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__body {
  flex: 1;
  padding: 22px;
}

.product-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.product-card__description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-category .product-grid {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  align-items: start;
  gap: 30px;
}

.page-category .product-card {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-height: 520px;
  border-color: rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018) 44%, rgba(75, 200, 75, .035)),
    radial-gradient(circle at 18% 18%, rgba(75, 200, 75, .12), transparent 18rem),
    rgba(9, 10, 9, .94);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

.page-category .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 200, 75, .34);
  box-shadow:
    0 38px 130px rgba(0, 0, 0, .58),
    0 0 44px rgba(75, 200, 75, .14),
    inset 0 1px 0 rgba(255, 255, 255, .09);
}

.page-category .product-card__image {
  grid-row: 1 / -1;
  min-height: 520px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(75, 200, 75, .18), transparent 19rem),
    #030403;
}

.page-category .product-card__image::before,
.page-category .product-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page-category .product-card__image::before {
  background:
    linear-gradient(90deg, transparent 58%, rgba(0, 0, 0, .54)),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .32));
}

.page-category .product-card__image::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 200, 75, .08) 1px, transparent 1px);
  background-size: 100% 5px, 34px 34px;
  opacity: .14;
}

.page-category .product-card__image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.page-category .product-card__image .discount-badge {
  z-index: 2;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-card__meta span:first-child {
  color: var(--accent);
  border-color: rgba(75, 200, 75, .28);
  background: rgba(75, 200, 75, .075);
}

.page-category .product-card__body {
  align-self: end;
  padding: 42px 42px 18px;
}

.page-category .product-card__title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: .95;
  text-transform: uppercase;
}

.page-category .product-card__title a {
  text-shadow: 0 0 24px rgba(255, 255, 255, .08);
}

.page-category .product-card__description {
  position: relative;
  max-height: 242px;
  margin-top: 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  line-height: 1.68;
}

.page-category .product-card__description::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(12, 13, 12, .98));
}

.page-category .product-card__description ul,
.page-category .product-card__description ol {
  margin-bottom: 0;
}

.page-category .product-card__footer {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding: 18px 42px 42px;
}

.page-category .product-card__footer .price {
  display: grid;
  gap: 4px;
}

.page-category .product-card__footer .price::before {
  content: "Tarif";
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-category .product-card__footer .price strong {
  font-size: 34px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(75, 200, 75, .3);
}

.page-category .product-card__footer .btn {
  min-width: 220px;
  min-height: 54px;
  padding-inline: 28px;
}

.product-card__footer {
  display: grid;
  gap: 14px;
  padding: 0 22px 22px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--accent);
  font-weight: 900;
}

.price strong {
  font-size: 22px;
}

.price del,
.discount {
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
}

.discount-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(75, 200, 75, .52);
  border-radius: 4px;
  color: #071007;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.product-card__image .discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
}

.countdown {
  display: inline-flex;
  width: max-content;
  margin-top: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(232, 197, 71, .35);
  border-radius: 4px;
  color: var(--warning);
  background: rgba(232, 197, 71, .08);
  font-size: 12px;
  font-weight: 800;
}

/* 10. Package page */
.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.package-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 200, 75, .12), transparent 26rem),
    var(--bg-2);
}

.package-media > img,
.media-slider,
.media-slider .slider {
  width: 100%;
  height: 100%;
}

.package-media > img,
.media-slider .slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-media__placeholder {
  display: grid;
  width: 100%;
  min-height: 420px;
  place-items: center;
}

.package-media__placeholder span {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(75, 200, 75, .45);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(75, 200, 75, .08);
  font-size: 44px;
  font-weight: 900;
}

.package-summary {
  align-self: start;
  padding: 28px;
}

.product-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}

.package-summary .discount-badge {
  margin-top: 16px;
}

.notice {
  margin: 18px 0 0;
  padding: 12px;
  border-radius: 4px;
}

.notice-disabled {
  border: 1px solid rgba(228, 88, 88, .35);
  color: #ffd7d7;
  background: rgba(228, 88, 88, .1);
}

.package-description {
  grid-column: 1 / -1;
  padding: 30px;
}

.package-description h2 {
  margin-top: 0;
}

.media-slider {
  position: relative;
}

.media-slider .thumbs {
  display: flex;
  gap: 10px;
  margin: 12px;
  padding: 0;
  list-style: none;
}

.media-slider .thumb {
  width: 72px;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.media-slider .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slider .open-lightbox {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  color: var(--text);
  background: rgba(0, 0, 0, .5);
}

/* 11. Forms */
.form-panel {
  padding: 30px;
}

.form-intro {
  margin: 10px 0 24px;
  color: var(--muted);
}

.store-form,
.store-form-options,
.store-form .field,
.field {
  display: grid;
  gap: 12px;
}

.store-form {
  gap: 20px;
}

.field label,
.field p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea,
.gift-card-input {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: rgba(5, 5, 5, .72);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(75, 200, 75, .58);
  box-shadow: var(--shadow-green);
}

select option {
  color: var(--text);
  background: var(--bg);
}

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

.field-inline span {
  color: var(--muted);
  font-weight: 800;
}

.actions-multiple {
  align-items: center;
}

/* 12. Basket/checkout */
.product-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.product-actions .wide,
.product-actions .btn.wide,
.product-actions .btn-primary.wide {
  width: 100%;
}

.product-actions .half {
  width: 100%;
}

.product-actions.updating {
  pointer-events: none;
  opacity: .62;
}

.quantity-field {
  min-height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, .32);
}

.quantity-field input[type="number"] {
  width: 58px;
  min-height: 40px;
  padding: 0 6px;
  border: 0;
  text-align: center;
  background: transparent;
  appearance: textfield;
}

.quantity-field input::-webkit-outer-spin-button,
.quantity-field input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-field .adjust {
  min-height: 40px;
  border: 0;
  border-radius: 0;
}

.quantity-field .open-basket {
  flex: 1;
  min-height: 40px;
  border: 0;
  color: var(--accent);
  font-weight: 800;
  text-align: center;
}

.checkout-panel {
  overflow: hidden;
}

.basket-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}

.basket-title {
  margin: 0;
  font-size: 30px;
}

.checkout-user {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
}

.basket-content {
  max-height: min(56vh, 560px);
  overflow: auto;
}

.basket-items {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.basket-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.basket-item .title {
  margin: 0;
  font-size: 17px;
}

.basket-item .options {
  display: grid;
  gap: 4px;
  margin: 8px 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.basket-item .options:empty {
  display: none;
}

.basket-empty {
  margin: 0;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.basket-checkout {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .2);
}

.basket-checkout h2,
.basket-checkout h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 18px;
  font-size: 18px;
}

.checkout-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.basket-checkout .checkout {
  width: 100%;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  overflow: auto;
  background: rgba(0, 0, 0, .78);
  transition: opacity .22s ease;
}

.popup[hidden] {
  opacity: 0;
  pointer-events: none;
}

.popup-scroll-cont {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 22px;
}

.popup-content {
  position: relative;
  width: min(100%, 860px);
  max-height: calc(100svh - 44px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 30px 120px rgba(0, 0, 0, .64);
}

.store-product-popup-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 28% 10%, rgba(75, 200, 75, .075), transparent 22rem),
    rgba(7, 8, 7, .96);
}

.store-product-popup-content .package-media {
  min-height: 320px;
}

.store-product-popup-content .package-summary,
.store-product-popup-content .package-description {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(16, 17, 16, .84);
}

.store-product-popup-content .package-description {
  grid-column: 1 / -1;
}

.product-options-popup,
.login-popup-content,
.gift-form-popup .popup-content {
  padding: 26px;
}

.basket-popup .popup-scroll-cont {
  justify-content: end;
  padding: 0;
}

.basket-popup-content {
  width: min(100vw, 540px);
  height: 100svh;
  max-height: 100svh;
  border-radius: 0;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
    rgba(5, 6, 5, .78);
  font-size: 0;
  line-height: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .42);
  backdrop-filter: blur(12px);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.popup-close::before,
.popup-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .82);
  transform-origin: center;
}

.popup-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close:hover {
  transform: translateY(-1px);
  border-color: rgba(75, 200, 75, .46);
  background:
    linear-gradient(180deg, rgba(75, 200, 75, .12), rgba(75, 200, 75, .03)),
    rgba(5, 6, 5, .88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .46), 0 0 22px rgba(75, 200, 75, .16);
}

.toaster {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 3000;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, .94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.toast p {
  margin: 0;
}

.toast-close {
  margin-left: auto;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}

/* 13. CMS content */
.cms-content {
  color: rgba(255, 255, 255, .76);
}

.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4 {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.15;
}

.cms-content h1 {
  font-size: 38px;
}

.cms-content h2 {
  font-size: 28px;
}

.cms-content h3 {
  font-size: 22px;
}

.cms-content p {
  margin: 0 0 14px;
}

.cms-content ul,
.cms-content ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

.cms-content li {
  margin: 6px 0;
}

.cms-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms-content blockquote {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  color: rgba(255, 255, 255, .8);
  background: rgba(75, 200, 75, .06);
}

.cms-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cms-content th,
.cms-content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.cms-content th {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}

/* 14. Footer */
.site-footer {
  position: relative;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 200, 75, .1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0)),
    rgba(5, 5, 5, .88);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(75, 200, 75, .5), transparent);
  opacity: .75;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  padding: 42px 0;
}

.site-footer__brand {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.site-footer__brand p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer__navs {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 18px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-footer__trust span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(75, 200, 75, .2);
  border-radius: 4px;
  color: rgba(255, 255, 255, .72);
  background: rgba(75, 200, 75, .045);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .055);
  font-size: 12px;
}

/* Sidebar module compatibility */
.site-content-widgets {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 240px);
  gap: 24px;
  align-items: start;
}

body.is-sidebar-left .site-content-widgets {
  grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
}

.store-sidebar {
  width: 100%;
  max-width: 240px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.45;
}

.site-content-widgets .store-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

body.is-sidebar-left .store-sidebar {
  order: -1;
}

.widget {
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .006)),
    rgba(8, 10, 8, .62);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.widget-title {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(75, 200, 75, .28);
}

.widget-content,
.widget p,
.widget li {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.widget strong,
.widget .username {
  color: rgba(255, 255, 255, .88);
  font-weight: 900;
}

.widget + .widget {
  margin-top: 0;
}

.widget .store-product {
  gap: 10px;
}

.widget .btn,
.widget .btn-primary,
.widget .btn-secondary {
  min-height: 38px;
  padding-inline: 12px;
  font-size: 11px;
}

.progress {
  overflow: hidden;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.progress-bar {
  height: 100%;
  background: var(--accent);
}

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

.avatar,
.goal-image {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 4px;
}

/* 15. Responsive */
@media (max-width: 1024px) {
  :root {
    --container: 960px;
  }

  .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, .04);
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .nav-toggle {
    gap: 4px;
  }

  .site-navigation {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1200;
    width: min(340px, 86vw);
    padding: 26px;
    border-right: 1px solid var(--line);
    background:
      radial-gradient(circle at 20% 0%, rgba(75, 200, 75, .12), transparent 18rem),
      rgba(7, 7, 7, .96);
    transform: translateX(-100%);
    transition: transform .22s ease;
  }

  .show-navigation .site-navigation {
    transform: translateX(0);
  }

  .nav-links,
  .navigation-list {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links a,
  .navigation-list a {
    padding: 14px 12px;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--text);
    background: rgba(255, 255, 255, .04);
    text-transform: uppercase;
  }

  .auth-area {
    justify-self: end;
  }

  .hero-title {
    font-size: 52px;
  }

  .page-index .experience-grid {
    grid-template-columns: 1fr;
  }

  .page-index .experience-card:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .page-index .category-card {
    min-height: 0;
  }

  .category-landing {
    min-height: 680px;
  }

  .category-landing__inner {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .category-landing__meta {
    width: max-content;
    min-width: 0;
    display: flex;
    align-items: end;
    gap: 14px;
  }

  .category-landing__meta p {
    margin-bottom: 4px;
  }

  .experience-grid,
  .category-grid,
  .product-grid,
  .store-products-grid,
  .store-products-images,
  .store-products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-layout {
    grid-template-columns: 1fr;
  }

  .store-product-popup-content {
    grid-template-columns: 1fr;
  }

  .package-description {
    grid-column: auto;
  }

  .site-content-widgets,
  body.is-sidebar-left .site-content-widgets {
    grid-template-columns: 1fr;
  }

  .store-sidebar {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-content-widgets .store-sidebar {
    position: static;
  }

  .category-heading {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px;
  }

  .category-heading__aside {
    width: 100%;
    grid-template-columns: auto 1fr;
    gap: 18px;
    justify-items: start;
    text-align: left;
  }

  .category-heading__aside p {
    grid-column: 2;
  }

  .category-heading__aside::before {
    display: none;
  }

  .category-emblem {
    width: 66px;
    height: 66px;
    margin: 0;
  }

  .category-perks {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .page-category .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-category .product-card__image {
    grid-row: auto;
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .page-category .product-card__image img {
    height: 340px;
    min-height: 340px;
  }

  .page-category .product-card__body {
    padding: 34px 34px 16px;
  }

  .page-category .product-card__footer {
    padding: 16px 34px 34px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: auto;
  }

  .container,
  .container-narrow {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .nav-wrap {
    min-height: 70px;
    grid-template-columns: auto auto;
  }

  .brand-copy strong,
  .brand-copy small {
    max-width: 150px;
  }

  .auth-area {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
  }

  .auth-area .btn,
  .auth-area .basket-button {
    flex: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 52px 0 58px;
  }

  .hero-card {
    padding: 26px;
  }

  .hero-title {
    font-size: clamp(46px, 15vw, 72px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero {
    min-height: 590px;
  }

  .hero__inner {
    padding: 64px 0 52px;
  }

  .hero-status {
    gap: 4px 14px;
  }

  .page-index .section-title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .page-index .experience-grid {
    grid-template-columns: 1fr;
  }

  .page-index .experience-card,
  .page-index .experience-card:first-child {
    min-height: 260px;
    padding: 28px;
  }

  .page-index .experience-card h3,
  .page-index .experience-card:not(:first-child) h3 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .page-index .category-card {
    min-height: 0;
    padding: 28px;
  }

  .page-index .category-card {
    padding: 0;
  }

  .category-card__media {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .page-index .category-card--with-media {
    min-height: 320px;
  }

  .page-index .category-card .btn {
    width: 100%;
    min-width: 0;
    margin: 22px 22px 22px;
    width: calc(100% - 44px);
  }

  .page-index .final-cta {
    min-height: 360px;
  }

  .store-sidebar {
    grid-template-columns: 1fr;
  }

  .widget {
    padding: 12px;
  }

  .category-landing {
    min-height: 620px;
  }

  .category-landing__shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 3, .94), rgba(3, 5, 3, .58)),
      linear-gradient(0deg, rgba(3, 5, 3, 1) 0%, rgba(3, 5, 3, .74) 18%, rgba(3, 5, 3, .22) 100%);
  }

  .category-landing__inner {
    gap: 26px;
    padding: 68px 0 52px;
  }

  .category-landing h1 {
    font-size: clamp(78px, 28vw, 126px);
  }

  .category-landing__subtitle {
    font-size: 22px;
  }

  .category-landing__actions {
    display: grid;
  }

  .category-landing__actions .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .final-cta .btn,
  .actions .btn,
  .actions .btn-primary,
  .actions .btn-secondary {
    width: 100%;
  }

  .section-title,
  .product-title,
  .basket-title {
    font-size: 31px;
  }

  .category-heading {
    min-height: 0;
    gap: 24px;
    padding: 24px;
  }

  .category-heading .section-title {
    font-size: clamp(48px, 21vw, 76px);
  }

  .category-heading__badges {
    margin-bottom: 18px;
  }

  .category-heading__subtitle {
    font-size: 17px;
  }

  .category-heading__aside {
    grid-template-columns: auto 1fr;
    padding: 18px;
  }

  .category-heading__aside > span {
    font-size: 44px;
  }

  .category-emblem {
    width: 54px;
    height: 54px;
  }

  .category-emblem span {
    font-size: 22px;
  }

  .category-perks {
    margin-top: 22px;
  }

  .category-showcase__head {
    align-items: stretch;
    flex-direction: column;
  }

  .page-category .product-grid {
    grid-template-columns: 1fr;
  }

  .page-category .product-card__image {
    min-height: 250px;
  }

  .page-category .product-card__image img {
    height: 250px;
    min-height: 250px;
  }

  .page-category .product-card__body {
    padding: 26px 24px 12px;
  }

  .page-category .product-card__title {
    font-size: clamp(32px, 12vw, 46px);
  }

  .page-category .product-card__description {
    max-height: 210px;
  }

  .page-category .product-card__footer {
    grid-template-columns: 1fr;
    padding: 16px 24px 24px;
  }

  .page-category .product-card__footer .btn {
    width: 100%;
    min-width: 0;
  }

  .experience-grid,
  .category-grid,
  .product-grid,
  .store-products-grid,
  .store-products-images,
  .store-products-list {
    grid-template-columns: 1fr;
  }

  .product-card__image,
  .product-card__image img {
    min-height: 190px;
    height: 190px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .final-cta__action {
    justify-items: stretch;
  }

  .basket-header,
  .basket-second-header,
  .basket-checkout {
    padding-inline: 18px;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__navs,
  .site-footer__links {
    justify-items: start;
    justify-content: flex-start;
  }

  .site-footer__trust {
    justify-content: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
