@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/barlow-condensed-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --ink: #0a0b0b;
  --graphite: #111313;
  --graphite-2: #181b1b;
  --mist: #cfd3ce;
  --paper: #f3f1ec;
  --paper-2: #e6e4df;
  --white: #fffefa;
  --lime: #b7ee22;
  --lime-dark: #5d7500;
  --available: #67c86a;
  --low-stock: #e4a72d;
  --unavailable: #8c938a;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(10, 11, 11, 0.18);
  --display: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1560px;
  --gutter: clamp(18px, 3.5vw, 64px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: #687065;
  border: 3px solid var(--ink);
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

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

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.utility {
  color: #dfe3db;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.utility__inner {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility__links {
  display: flex;
  gap: 22px;
}

.utility a {
  text-decoration: none;
}

.preview-note {
  color: var(--lime);
  padding: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(10, 11, 11, 0.97);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.header__inner {
  height: 72px;
  display: grid;
  grid-template-columns: 160px minmax(320px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
}

.brand {
  position: relative;
  width: 132px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(183, 238, 34, 0.42);
  border-radius: 5px;
}

.brand img {
  width: auto;
  height: 44px;
  max-width: calc(100% - 16px);
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.header__nav a,
.header__actions a,
.icon-button {
  color: var(--white);
  text-decoration: none;
}

.header__nav a {
  position: relative;
  padding-block: 23px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header__nav a::after {
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.header__nav a:hover::after,
.header__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.icon-button {
  min-width: 48px;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-left: -8px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.menu-trigger {
  display: none;
}

.menu-panel {
  width: min(100vw - 24px, 1180px);
  max-height: calc(100dvh - 24px);
  margin: 12px auto;
  padding: 0;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}

.menu-panel::backdrop {
  background: rgba(0, 0, 0, 0.74);
}

.menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.menu-panel__title {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.menu-panel__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0;
  max-height: calc(100dvh - 110px);
  overflow: auto;
}

.menu-group {
  padding: clamp(24px, 4vw, 54px);
  border-right: 1px solid var(--line-dark);
}

.menu-group:last-child {
  border-right: 0;
}

.menu-group h3 {
  margin: 0 0 24px;
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-group a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  font-weight: 700;
}

.menu-group a span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 18px;
}

.search-panel {
  display: none;
  padding: 14px var(--gutter);
  background: var(--graphite-2);
  border-top: 1px solid var(--line-dark);
}

.search-panel.is-open {
  display: block;
}

.search-form {
  width: min(100%, 900px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-form input {
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid #61665e;
  border-radius: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.button:hover {
  background: #c7ff31;
  box-shadow: 0 12px 28px rgba(183, 238, 34, 0.22);
  transform: translateY(-2px);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--ghost {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(1.6);
}

.text-link--search::after {
  display: none;
}

.text-link--search svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 96px));
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: clamp(64px, 7.5vw, 118px) clamp(64px, 7.5vw, 118px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero::after {
  position: absolute;
  right: -12vw;
  top: -20vw;
  width: 58vw;
  height: 58vw;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100svh - 96px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
  padding-top: 52px;
  padding-bottom: 52px;
}

.hero__copy {
  max-width: 720px;
}

.hero h1,
.page-hero h1,
.section-title,
.product-title,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(62px, 6.4vw, 104px);
  line-height: 0.94;
}

.hero h1 strong {
  display: block;
  color: var(--lime);
  font-weight: 800;
}

.hero__lede {
  max-width: 58ch;
  margin: 22px 0 18px;
  color: #d4d8d1;
  font-size: clamp(17px, 1.4vw, 21px);
}

.hero__signal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  max-width: 58ch;
  margin: 0 0 24px;
  color: #c4cbc1;
  font-size: 12px;
}

.hero__signal strong {
  color: var(--white);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.product-stage__plate {
  position: absolute;
  width: min(94%, 610px);
  aspect-ratio: 1.25;
  border: 1px solid rgba(183, 238, 34, 0.34);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.product-stage__plate::before,
.product-stage__plate::after {
  position: absolute;
  content: "";
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.product-stage__plate::before {
  inset: 12%;
}

.product-stage__plate::after {
  inset: 27%;
}

.stage-frame {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.42);
}

.stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.stage-frame--main {
  left: 10%;
  bottom: 13%;
  z-index: 3;
  width: clamp(240px, 27vw, 390px);
  height: clamp(240px, 27vw, 390px);
}

.stage-frame--side {
  right: 4%;
  top: 8%;
  width: clamp(170px, 18vw, 280px);
  height: clamp(170px, 18vw, 280px);
}

.stage-label {
  position: absolute;
  right: 0;
  bottom: 12%;
  z-index: 4;
  width: 210px;
  padding: 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 12px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.stage-label span {
  display: block;
  color: #263000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-label strong {
  display: block;
  margin-top: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--graphite);
  border: 1px solid var(--line-light);
  border-radius: 14px;
}

.goal-section {
  background: var(--paper);
}

.goal-section__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.goal-cell {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 18px clamp(16px, 2vw, 30px);
  color: var(--white);
  border-right: 1px solid var(--line-dark);
  text-decoration: none;
  transition: color 240ms var(--ease), background 240ms var(--ease);
}

.goal-cell:last-child {
  border-right: 0;
}

.goal-cell:hover,
.goal-cell.is-active {
  color: var(--ink);
  background: var(--lime);
}

.goal-cell__index {
  color: var(--lime);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.goal-cell:hover .goal-cell__index,
.goal-cell.is-active .goal-cell__index {
  color: var(--ink);
}

.goal-cell strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 1.7vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.goal-cell > span:last-child {
  min-width: 0;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.goal-cell small {
  display: block;
  margin-top: 12px;
  color: #aeb4ab;
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}

.goal-cell:hover small,
.goal-cell.is-active small {
  color: #344000;
}

.section {
  padding-block: clamp(74px, 8vw, 128px);
}

.section--paper {
  background: var(--paper);
}

.section--white {
  background: var(--white);
}

.section--dark {
  color: var(--white);
  background: var(--graphite);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-title {
  max-width: 920px;
  font-size: clamp(54px, 6vw, 94px);
}

.section-copy {
  max-width: 46ch;
  margin: 18px 0 0;
  color: #4b514a;
  font-size: 17px;
}

.section--dark .section-copy {
  color: #bfc5bb;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--unavailable);
  border-radius: 50%;
}

.status-dot--available {
  background: var(--available);
  box-shadow: 0 0 0 5px rgba(103, 200, 106, 0.17);
}

.signal-dot {
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--lime);
}

.hits-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  min-height: 470px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.merch-labels {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 0;
  margin-bottom: 12px;
  color: #4e554c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.merch-labels span:last-child {
  padding-left: 22px;
}

.hit-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(230px, 0.95fr);
  background: var(--white);
  border-right: 1px solid var(--line-light);
}

.hit-feature__media {
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 56px);
  background: #e5e8e1;
  overflow: hidden;
}

.hit-feature__media img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 300ms var(--ease);
}

.hit-feature:hover .hit-feature__media img {
  transform: scale(1.035);
}

.hit-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 54px);
}

.hit-feature__body > p,
.hit-row small {
  margin: 0;
  color: #626961;
  font-size: 12px;
}

.hit-feature__body h3 {
  margin: auto 0 34px;
  font-family: var(--display);
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hit-feature__body h3 a,
.hit-row {
  text-decoration: none;
}

.hit-feature__body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hit-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--white);
}

.hit-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto 32px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms var(--ease);
}

.hit-row:last-child {
  border-bottom: 0;
}

.hit-row:hover {
  background: #eff2ea;
}

.hit-row img {
  width: 92px;
  height: 92px;
  padding: 8px;
  object-fit: contain;
  background: #e8eae5;
  mix-blend-mode: multiply;
}

.hit-row span {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.hit-row strong {
  font-size: 15px;
  line-height: 1.35;
}

.hit-row b {
  white-space: nowrap;
  font-family: var(--display);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.hit-row svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.home-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-product-grid .product-card__media {
  padding: 18px;
}

.home-product-grid .product-card__body {
  padding: 18px;
}

.home-product-grid .product-card h3 {
  font-size: 15px;
}

.home-product-grid .price {
  font-size: 25px;
}

.product-card {
  position: relative;
  min-width: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(18, 22, 15, 0.08);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.product-card:hover {
  box-shadow: 0 28px 60px rgba(18, 22, 15, 0.15);
  transform: translateY(-7px);
}

.product-card[hidden] {
  display: none;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background: #edeee9;
}

.product-card__media::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.product-card:hover .product-card__media::after {
  transform: scaleX(1);
}

.product-card__media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 22px;
}

.product-card__category {
  margin: 0 0 8px;
  color: #5b6258;
  font-size: 12px;
}

.product-card h3 {
  min-height: 3.1em;
  margin: 0;
  font-size: 17px;
  line-height: 1.48;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.price {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.round-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  text-decoration: none;
}

.round-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.route-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}

.route-guide__copy {
  position: sticky;
  top: 132px;
}

.route-guide__copy .section-title {
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.96;
}

.guide-list {
  border-top: 1px solid var(--line-dark);
}

.guide-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.guide-item__index {
  color: var(--lime);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.guide-item h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.guide-item p {
  margin: 0;
  color: #bfc5bb;
  font-size: 14px;
}

.guide-item .text-link {
  white-space: nowrap;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--lime);
}

.service-item {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.7vw, 40px);
  border-right: 1px solid rgba(10, 11, 11, 0.22);
  text-decoration: none;
}

.service-item:last-child {
  border-right: 0;
}

.service-item svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.service-item strong {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.service-item small {
  color: #344000;
}

.catalog-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.catalog-map a {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.catalog-map a:hover {
  color: var(--ink);
  background: var(--lime);
}

.catalog-map span {
  color: #81887f;
  font-family: var(--display);
  font-size: 18px;
}

.catalog-map a:hover span {
  color: var(--ink);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 20px 62px 20px 0;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 40px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  right: 8px;
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--lime-dark);
}

.faq-list p {
  max-width: 72ch;
  margin: -4px 0 0;
  padding: 0 62px 28px 0;
  color: #4b514a;
  font-size: 16px;
}

.faq-list p a {
  font-weight: 700;
}

.reviews-about {
  border-bottom: 1px solid var(--line-dark);
}

.reviews-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 1px;
  padding-block: 0;
  background: var(--graphite);
  border: 1px solid var(--line-dark);
}

.reviews-panel,
.about-panel {
  min-width: 0;
  padding: clamp(34px, 5vw, 74px);
  background: var(--graphite);
}

.reviews-panel .section-title,
.about-panel .section-title {
  font-size: clamp(52px, 5.2vw, 80px);
}

.review-signal {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 44px 0 30px;
  padding: 22px 0;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.review-signal > strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(74px, 7vw, 116px);
  line-height: 0.8;
}

.review-signal > span {
  font-weight: 700;
}

.review-signal small {
  display: block;
  margin-top: 7px;
  color: #aeb4ab;
  font-size: 12px;
  font-weight: 400;
}

.about-panel {
  color: var(--ink);
  background: var(--lime);
}

.about-panel > p {
  max-width: 64ch;
  margin: 28px 0 42px;
  color: #263000;
  font-size: clamp(17px, 1.5vw, 21px);
}

.about-links {
  border-top: 1px solid rgba(10, 11, 11, 0.3);
}

.about-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  border-bottom: 1px solid rgba(10, 11, 11, 0.3);
  text-decoration: none;
  font-weight: 700;
}

.about-links a:hover {
  padding-left: 8px;
}

.about-links span {
  font-family: var(--display);
  font-size: 22px;
}

.closing {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
}

.closing__inner {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.closing h2 {
  max-width: 950px;
  font-size: clamp(64px, 8vw, 126px);
}

.closing .button--dark {
  min-width: 210px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 42px;
  padding-top: 72px;
  padding-bottom: 62px;
}

.footer__brand img {
  width: 150px;
  padding: 12px;
  background: var(--white);
  border-radius: 12px;
}

.footer__brand p {
  max-width: 36ch;
  margin: 22px 0 0;
  color: #aeb4ab;
  font-size: 14px;
}

.footer__col h3 {
  margin: 0 0 18px;
  color: #777f74;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__col a,
.footer__col span {
  display: block;
  margin: 12px 0;
  color: #edf0e9;
  text-decoration: none;
  font-size: 14px;
}

.footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #828980;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.page-hero {
  color: var(--white);
  background: var(--graphite);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero__inner {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 36px;
  padding-bottom: 38px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: #aeb4ab;
  font-size: 13px;
}

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

.page-hero h1 {
  font-size: clamp(70px, 8vw, 126px);
}

.page-hero__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.page-hero__meta {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
  margin-top: 18px;
}

.page-hero__meta p {
  max-width: 62ch;
  margin: 0;
  color: #c9cec6;
}

.active-route {
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--lime);
  background: transparent;
  border: 1px solid rgba(183, 238, 34, 0.48);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.catalog-toolbar {
  position: sticky;
  top: 72px;
  z-index: 15;
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.catalog-toolbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  white-space: nowrap;
  color: var(--ink);
  background: transparent;
  border: 1px solid #b9beb5;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.chip.is-active {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-control label {
  font-size: 12px;
  font-weight: 700;
}

.sort-control select {
  appearance: none;
  min-height: 42px;
  padding: 0 42px 0 14px;
  color: var(--ink);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230a0b0b' stroke-width='2'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid #b9beb5;
  border-radius: 10px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
}

.filter-rail {
  align-self: start;
}

.filter-group {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.filter-group h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: #434942;
  font-size: 14px;
}

.filter-option input {
  appearance: none;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  background-color: var(--white);
  border: 1px solid #858c82;
  border-radius: 5px;
}

.filter-option input:checked {
  background-color: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0b0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border-color: var(--lime-dark);
}

.filter-option input:focus-visible {
  outline: 3px solid rgba(93, 117, 0, 0.45);
  outline-offset: 2px;
}

.catalog-content .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.catalog-result h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
}

.catalog-result span {
  color: #646b62;
  font-size: 13px;
}

.product-detail {
  background: var(--paper);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: clamp(26px, 4vw, 58px);
  background: #e4e6e0;
  border-radius: 16px;
}

.product-gallery::before {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px solid rgba(10, 11, 11, 0.12);
  border-radius: 50%;
}

.product-gallery img {
  position: relative;
  z-index: 1;
  width: 96%;
  height: 96%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.buybox {
  padding-top: 26px;
}

.buybox__marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #4c5548;
  font-size: 12px;
  font-weight: 700;
}

.product-title {
  font-size: clamp(54px, 5.5vw, 84px);
}

.product-state {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 30px;
  color: #41473f;
  font-size: 13px;
}

.product-state span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.buybox .price {
  margin: 0 0 34px;
  font-size: 52px;
}

.option-group {
  width: fit-content;
  max-width: 100%;
  min-inline-size: 0;
  margin: 26px 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
}

.option-heading {
  margin-bottom: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-grid input {
  position: absolute;
  opacity: 0;
}

.option-grid label {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid #aeb4aa;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.option-grid input:checked + label {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.option-grid input:focus-visible + label {
  outline: 3px solid var(--lime-dark);
  outline-offset: 3px;
}

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

.buy-actions .button {
  width: 100%;
  min-height: 58px;
  padding-inline: 14px;
}

.buybox__note {
  margin: 14px 0 0;
  color: #626960;
  font-size: 12px;
}

.product-facts {
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
}

.fact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}

.fact-row dt {
  color: #697066;
}

.fact-row dd {
  margin: 0;
  font-weight: 700;
}

.mobile-buybar {
  position: fixed;
  z-index: 40;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(183, 238, 34, 0.55);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  transform: translateY(calc(100% + 28px));
  transition: transform 300ms var(--ease);
}

.mobile-buybar.is-visible {
  transform: translateY(0);
}

.mobile-buybar strong,
.mobile-buybar span {
  display: block;
}

.mobile-buybar strong {
  font-family: var(--display);
  font-size: 24px;
}

.mobile-buybar span {
  color: #bfc5bb;
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 420px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(183, 238, 34, 0.55);
  border-radius: 12px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast strong {
  display: block;
  margin-bottom: 4px;
  color: var(--lime);
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .header__nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  }

  .product-grid,
  .catalog-content .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(2) {
    border-right: 0;
  }

  .service-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(10, 11, 11, 0.22);
  }
}

@media (max-width: 900px) {
  .utility__links,
  .header__nav {
    display: none;
  }

  .header__inner {
    height: 68px;
    grid-template-columns: 128px 1fr;
  }

  .brand {
    width: 112px;
    height: 48px;
    border-radius: 5px;
  }

  .brand img {
    width: auto;
    height: 38px;
  }

  .menu-trigger {
    display: inline-grid;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 0;
  }

  .product-stage {
    min-height: 440px;
  }

  .goal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goal-cell:nth-child(2) {
    border-right: 0;
  }

  .goal-cell:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .route-guide,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

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

  .hits-showcase {
    grid-template-columns: 1fr;
  }

  .merch-labels {
    display: none;
  }

  .hit-feature {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .route-guide__copy,
  .product-gallery {
    position: relative;
    top: auto;
  }

  .catalog-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-about__grid {
    grid-template-columns: 1fr;
  }

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

  .filter-rail {
    display: none;
  }

  .product-detail__grid {
    gap: 24px;
  }

  .product-gallery {
    min-height: 540px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  .utility__inner {
    min-height: 24px;
    justify-content: center;
  }

  .utility__inner > span:first-child {
    display: none;
  }

  .preview-note {
    white-space: nowrap;
    font-size: 10px;
  }

  .header__actions .account-link {
    display: none;
  }

  .header__inner {
    height: 64px;
    grid-template-columns: 108px 1fr;
    gap: 10px;
  }

  .header__actions {
    gap: 0;
  }

  .icon-button {
    min-width: 44px;
    min-height: 44px;
    padding: 0 9px;
  }

  .menu-panel__grid {
    grid-template-columns: 1fr;
  }

  .menu-group {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 12px;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .hero__lede {
    margin: 22px 0 26px;
    font-size: 16px;
  }

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

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
    min-height: 46px;
  }

  .product-stage {
    min-height: 340px;
  }

  .stage-frame--main {
    left: 4%;
    bottom: 18%;
    width: 248px;
    height: 248px;
  }

  .stage-frame--side {
    right: 0;
    top: 2%;
    width: 158px;
    height: 158px;
  }

  .stage-label {
    right: 0;
    bottom: 2%;
    width: 154px;
    padding: 12px;
  }

  .stage-label strong {
    font-size: 23px;
  }

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

  .goal-cell {
    min-height: 116px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    padding-block: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .goal-cell__index {
    font-size: 29px;
  }

  .goal-cell strong {
    font-size: 28px;
  }

  .goal-section .section-head {
    margin-bottom: 28px;
  }

  .goal-cell:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .goal-cell:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 72px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 54px;
  }

  .hit-feature {
    grid-template-columns: 1fr;
  }

  .hit-feature__media {
    min-height: 320px;
  }

  .hit-feature__body h3 {
    margin: 42px 0 28px;
  }

  .hit-row {
    grid-template-columns: 76px minmax(0, 1fr) 28px;
    gap: 14px;
    padding: 14px;
  }

  .hit-row img {
    width: 72px;
    height: 72px;
  }

  .hit-row b {
    grid-column: 2;
    font-size: 22px;
  }

  .hit-row svg {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .product-grid,
  .catalog-content .product-grid {
    display: flex;
    gap: 14px;
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .guide-item {
    grid-template-columns: 44px 1fr;
  }

  .guide-item .text-link {
    grid-column: 2;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(2) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 11, 11, 0.22);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .catalog-map {
    grid-template-columns: 1fr;
  }

  .catalog-map a {
    min-height: 78px;
  }

  .faq-list summary {
    min-height: 84px;
    padding-right: 48px;
    font-size: 28px;
    line-height: 1.05;
  }

  .faq-list p {
    padding-right: 0;
  }

  .reviews-panel,
  .about-panel {
    padding: 48px 24px;
  }

  .reviews-panel .button {
    width: 100%;
  }

  .closing__inner {
    min-height: 430px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .closing h2 {
    font-size: 64px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .page-hero__inner {
    min-height: 260px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .page-hero h1 {
    font-size: 68px;
  }

  .page-hero__title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .active-route {
    order: -1;
    margin-bottom: 0;
  }

  .page-hero__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-toolbar {
    top: 64px;
  }

  .catalog-toolbar__inner {
    min-height: 68px;
    align-items: stretch;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .sort-control {
    justify-content: space-between;
  }

  .sort-control select {
    flex: 1;
  }

  .catalog-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-gallery {
    min-height: 360px;
    padding: 24px;
  }

  .product-title {
    font-size: 54px;
  }

  .buybox .price {
    font-size: 44px;
  }

  .buy-actions {
    grid-template-columns: 1fr;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mobile-buybar {
    display: grid;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 92px;
  }
}

@media (max-width: 360px) {
  .header__actions .search-toggle {
    display: none;
  }

  .stage-frame--main {
    left: -7%;
  }

  .stage-label {
    width: 142px;
  }

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

  .route-guide__copy .section-title {
    font-size: 49px;
  }

  .closing h2 {
    font-size: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
