:root {
  color-scheme: dark;
  --store-red: #ff3041;
  --store-red-bright: #ff5b67;
  --store-red-deep: #b91223;
  --store-red-soft: rgba(255, 48, 65, .11);
  --store-bg: #080607;
  --store-bg-alt: #0d090a;
  --store-panel: #120e0f;
  --store-panel-raised: #191214;
  --store-panel-soft: #0c090a;
  --store-text: #f7f1f2;
  --store-muted: #b7a8ab;
  --store-dim: #796c6f;
  --store-line: rgba(255, 255, 255, .09);
  --store-line-red: rgba(255, 48, 65, .28);
  --store-green: #48dc97;
  --store-yellow: #f4c46a;
  --store-shadow: 0 24px 72px rgba(0, 0, 0, .38);
  --store-font-display: 'Anton', 'Oswald', sans-serif;
  --store-font-head: 'Oswald', sans-serif;
  --store-font-body: 'Inter', sans-serif;
  --store-shell: 1360px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(900px 540px at 82% -8%, rgba(255, 48, 65, .13), transparent 66%),
    radial-gradient(720px 520px at -8% 34%, rgba(121, 15, 27, .10), transparent 68%),
    var(--store-bg);
  color: var(--store-text);
  font-family: var(--store-font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.cart-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

button,
select {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

::selection {
  background: var(--store-red);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 300;
  border-radius: 8px;
  background: var(--store-red);
  padding: 11px 16px;
  color: #fff;
  font-weight: 700;
  transition: top .15s ease;
}

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

.store-shell {
  width: min(var(--store-shell), calc(100% - 40px));
  margin-inline: auto;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--store-line);
  background: rgba(8, 6, 7, .96);
}

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

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

.store-brand__mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: none;
  place-items: center;
  border: 1px solid var(--store-line-red);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 48, 65, .17), rgba(255, 48, 65, .025));
}

.store-brand__mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.store-brand__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.store-brand__copy strong {
  font: 600 1.06rem var(--store-font-head);
  letter-spacing: .08em;
}

.store-brand__copy strong em {
  color: var(--store-red);
  font-style: normal;
}

.store-brand__copy small {
  margin-top: 6px;
  color: var(--store-dim);
  font: 600 .58rem var(--store-font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.store-nav > a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--store-muted);
  font: 600 .72rem var(--store-font-head);
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background-color .15s ease, color .15s ease;
}

.store-nav > a:hover {
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.store-nav > .store-nav__login {
  border: 1px solid var(--store-line-red);
  background: var(--store-red-soft);
  color: #fff;
}

.store-user {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin-left: 5px;
  border: 1px solid var(--store-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  padding: 5px 9px 5px 5px;
  color: var(--store-muted);
  font-size: .7rem;
}

.store-user img,
.store-user i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: none;
  place-items: center;
  border: 1px solid var(--store-line-red);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--store-red), var(--store-red-deep));
  color: #fff;
  font: 700 .72rem var(--store-font-head);
  font-style: normal;
  object-fit: cover;
}

.store-user > span {
  max-width: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--store-red), var(--store-red-deep));
  padding: 9px 10px 9px 13px;
  color: #fff;
  font: 600 .72rem var(--store-font-head);
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: filter .15s ease;
}

.cart-trigger:hover {
  filter: brightness(1.08);
}

.cart-trigger b {
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, .28);
  font-size: .65rem;
}

.store-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--store-line);
  background:
    linear-gradient(110deg, rgba(255, 48, 65, .045), transparent 42%),
    linear-gradient(rgba(255, 255, 255, .014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.store-hero::after {
  position: absolute;
  right: -4vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, .018);
  content: "ELITE";
  font: 400 min(31vw, 430px)/.75 var(--store-font-display);
  pointer-events: none;
}

.store-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 550px;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  padding-block: clamp(70px, 8vw, 112px);
}

.store-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--store-red-bright);
  font: 600 .7rem var(--store-font-head);
  letter-spacing: .17em;
}

.store-eyebrow i {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--store-red);
}

.store-hero__copy h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font: 400 clamp(3.5rem, 7.1vw, 7rem)/.9 var(--store-font-display);
  letter-spacing: .012em;
  text-transform: uppercase;
}

.store-hero__copy h1 em {
  color: var(--store-red);
  font-style: normal;
}

.store-hero__copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--store-muted);
  font-size: clamp(.9rem, 1.2vw, 1.04rem);
}

.store-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}

.store-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 11px 18px;
  font: 600 .73rem var(--store-font-head);
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .15s ease, border-color .15s ease, filter .15s ease;
}

.store-button--primary {
  background: linear-gradient(135deg, var(--store-red), var(--store-red-deep));
  box-shadow: 0 12px 30px rgba(255, 48, 65, .16);
  color: #fff;
}

.store-button--primary:hover {
  filter: brightness(1.08);
}

.store-button--secondary {
  border-color: var(--store-line);
  background: rgba(255, 255, 255, .025);
  color: var(--store-muted);
}

.store-button--secondary:hover {
  border-color: var(--store-line-red);
  background: var(--store-red-soft);
  color: #fff;
}

.store-button--discord {
  width: 100%;
  margin-top: 18px;
  border-color: rgba(88, 101, 242, .45);
  background: #5865f2;
  color: #fff;
}

.store-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.store-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--store-dim);
  font-size: .68rem;
}

.store-assurances span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(72, 220, 151, .22);
  border-radius: 50%;
  background: rgba(72, 220, 151, .07);
  color: var(--store-green);
  font-size: .58rem;
}

.store-assurances b {
  font-weight: 600;
}

.player-panel {
  position: relative;
  border: 1px solid var(--store-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(25, 18, 20, .98), rgba(11, 8, 9, .98));
  box-shadow: var(--store-shadow);
  padding: clamp(23px, 3vw, 31px);
}

.player-panel::before {
  position: absolute;
  top: -1px;
  right: 18%;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--store-red), transparent);
  content: "";
}

.player-panel__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.player-panel__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: none;
  place-items: center;
  border: 1px solid var(--store-line-red);
  border-radius: 11px;
  background: var(--store-red-soft);
  color: var(--store-red-bright);
  font: 700 .9rem var(--store-font-head);
}

.player-panel__head small,
.coupon-banner small,
.cart-drawer__head small {
  display: block;
  color: var(--store-red-bright);
  font: 600 .57rem var(--store-font-head);
  letter-spacing: .13em;
}

.player-panel h2,
.cart-drawer h2 {
  margin: 3px 0 0;
  font: 600 1.18rem var(--store-font-head);
  text-transform: uppercase;
}

.player-panel > p {
  margin: 0;
  color: var(--store-muted);
  font-size: .78rem;
}

.player-panel__note {
  display: block;
  margin-top: 13px;
  color: var(--store-dim);
  font-size: .62rem;
  line-height: 1.5;
  text-align: center;
}

.player-panel__warning {
  margin-bottom: 14px;
  border: 1px solid rgba(244, 196, 106, .2);
  border-radius: 10px;
  background: rgba(244, 196, 106, .06);
  padding: 13px;
  color: #dfc089;
  font-size: .72rem;
}

.passport-field {
  display: block;
}

.passport-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--store-dim);
  font: 600 .61rem var(--store-font-head);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.passport-field select,
.catalog-sort select,
.variable-field select {
  width: 100%;
  border: 1px solid var(--store-line);
  border-radius: 9px;
  background: #090708;
  color: #fff;
}

.passport-field select {
  min-height: 48px;
  padding: 0 40px 0 13px;
  font-size: .73rem;
}

.selected-passport {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  border: 1px solid rgba(72, 220, 151, .15);
  border-radius: 9px;
  background: rgba(72, 220, 151, .045);
  padding: 10px 11px;
}

.selected-passport > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(72, 220, 151, .12);
  color: var(--store-green);
  font-size: .65rem;
}

.selected-passport p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.selected-passport b {
  font: 600 .68rem var(--store-font-head);
  text-transform: uppercase;
}

.selected-passport small {
  margin-top: 2px;
  color: var(--store-dim);
  font-size: .57rem;
}

.store-benefits {
  border-bottom: 1px solid var(--store-line);
  background: #0b0809;
}

.store-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-benefits article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--store-line);
  padding: 20px clamp(14px, 3vw, 32px);
}

.store-benefits article:first-child {
  padding-left: 0;
}

.store-benefits article:last-child {
  border-right: 0;
}

.store-benefits article > b {
  color: var(--store-red);
  font: 400 1.65rem var(--store-font-display);
}

.store-benefits article > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.store-benefits strong {
  font: 600 .75rem var(--store-font-head);
  text-transform: uppercase;
}

.store-benefits small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--store-dim);
  font-size: .61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  margin-top: 36px;
  border: 1px solid rgba(255, 48, 65, .26);
  border-radius: 15px;
  background: linear-gradient(100deg, rgba(255, 48, 65, .13), rgba(255, 48, 65, .035));
  padding: 18px 20px;
}

.coupon-banner > div,
.payment-return > div,
.store-toast > div {
  min-width: 0;
}

.coupon-banner__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 11px;
  background: var(--store-red);
  color: #fff;
  font: 700 1rem var(--store-font-head);
}

.coupon-banner strong {
  display: block;
  margin-top: 2px;
  font: 600 .92rem var(--store-font-head);
  text-transform: uppercase;
}

.coupon-banner p {
  margin: 2px 0 0;
  color: var(--store-muted);
  font-size: .67rem;
  overflow-wrap: anywhere;
}

.coupon-banner button {
  max-width: 100%;
  border: 1px solid var(--store-line-red);
  border-radius: 9px;
  background: #0c090a;
  padding: 11px 14px;
  color: #fff;
  font: 600 .65rem var(--store-font-head);
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.coupon-banner button b {
  margin-left: 5px;
  color: var(--store-red-bright);
}

.payment-return {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  border: 1px solid var(--store-line-red);
  border-radius: 14px;
  background: var(--store-panel);
  padding: 16px 18px;
}

.payment-return__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: var(--store-red-soft);
  color: var(--store-red-bright);
  font: 700 1rem var(--store-font-head);
}

.payment-return small {
  display: block;
  color: var(--store-red-bright);
  font: 600 .56rem var(--store-font-head);
  letter-spacing: .12em;
}

.payment-return strong {
  display: block;
  margin-top: 2px;
  font: 600 .88rem var(--store-font-head);
  text-transform: uppercase;
}

.payment-return p {
  margin: 2px 0 0;
  color: var(--store-muted);
  font-size: .65rem;
  overflow-wrap: anywhere;
}

.payment-return > button {
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  padding: 9px 12px;
  color: var(--store-muted);
  font: 600 .58rem var(--store-font-head);
  text-transform: uppercase;
}

.payment-return.is-approved,
.payment-return.is-processing {
  border-color: rgba(72, 220, 151, .25);
}

.payment-return.is-approved .payment-return__icon,
.payment-return.is-processing .payment-return__icon {
  background: rgba(72, 220, 151, .10);
  color: var(--store-green);
}

.payment-return.is-approved small,
.payment-return.is-processing small {
  color: var(--store-green);
}

.payment-return.is-pending {
  border-color: rgba(244, 196, 106, .24);
}

.payment-return.is-pending .payment-return__icon {
  background: rgba(244, 196, 106, .09);
  color: var(--store-yellow);
}

.payment-return.is-pending small {
  color: var(--store-yellow);
}

.catalog-section {
  padding-block: clamp(70px, 8vw, 112px);
}

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

.catalog-heading h2 {
  margin: 13px 0 7px;
  font: 400 clamp(2.5rem, 5vw, 4.6rem)/.98 var(--store-font-display);
  letter-spacing: .015em;
  text-transform: uppercase;
}

.catalog-heading p {
  margin: 0;
  color: var(--store-muted);
  font-size: .78rem;
}

.catalog-result {
  display: flex;
  min-width: 150px;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 5px;
}

.catalog-result strong {
  color: var(--store-red);
  font: 400 2.15rem/1 var(--store-font-display);
}

.catalog-result span {
  margin-top: 4px;
  color: var(--store-dim);
  font: 600 .56rem var(--store-font-head);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 230px);
  gap: 11px;
  margin-top: 31px;
}

.catalog-search {
  display: grid;
  min-height: 51px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--store-line);
  border-radius: 11px;
  background: var(--store-panel);
  padding: 0 14px;
}

.catalog-search > span {
  color: var(--store-red-bright);
  font-size: 1.3rem;
  line-height: 1;
}

.catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: .78rem;
}

.catalog-search input::placeholder {
  color: #6f6366;
}

.catalog-search kbd {
  border: 1px solid var(--store-line);
  border-radius: 5px;
  background: #090708;
  padding: 3px 5px;
  color: var(--store-dim);
  font: 600 .51rem var(--store-font-head);
}

.catalog-search:focus-within {
  border-color: var(--store-line-red);
}

.catalog-sort {
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--store-line);
  border-radius: 11px;
  background: var(--store-panel);
  padding: 0 7px 0 14px;
  position: relative;
}

.catalog-sort__label {
  flex: none;
  color: var(--store-dim);
  font: 600 .57rem var(--store-font-head);
  text-transform: uppercase;
}

.catalog-sort__control {
  min-width: 0;
  flex: 1;
}

.catalog-sort__trigger {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 35px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  padding: 0 8px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: .68rem;
  text-align: left;
}

.catalog-sort__trigger:hover,
.catalog-sort.is-open .catalog-sort__trigger {
  background: rgba(255, 255, 255, .035);
}

.catalog-sort__trigger > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-sort__trigger i {
  width: 7px;
  height: 7px;
  flex: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .16s ease;
}

.catalog-sort.is-open .catalog-sort__trigger i {
  transform: rotate(225deg) translate(-2px, -1px);
}

.catalog-sort__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  width: min(255px, calc(100vw - 28px));
  gap: 4px;
  border: 1px solid var(--store-line-red);
  border-radius: 11px;
  background: #100c0e;
  padding: 6px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .58);
}

.catalog-sort__menu[hidden] {
  display: none;
}

.catalog-sort__menu button {
  position: relative;
  display: flex;
  min-height: 47px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 8px 36px 8px 11px;
  color: var(--store-muted);
  font: 600 .67rem var(--store-font-head);
  text-align: left;
  text-transform: uppercase;
}

.catalog-sort__menu button small {
  color: var(--store-dim);
  font: 400 .56rem var(--store-font-body);
  text-transform: none;
}

.catalog-sort__menu button:hover,
.catalog-sort__menu button:focus-visible {
  outline: 0;
  border-color: var(--store-line);
  background: rgba(255, 255, 255, .035);
  color: #fff;
}

.catalog-sort__menu button.is-selected {
  border-color: rgba(255, 48, 65, .28);
  background: var(--store-red-soft);
  color: #fff;
}

.catalog-sort__menu button.is-selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--store-red-bright);
  font-size: .75rem;
  transform: translateY(-50%);
}

.category-filter {
  margin-top: 14px;
  border: 1px solid var(--store-line);
  border-radius: 13px;
  background:
    linear-gradient(120deg, rgba(255, 48, 65, .035), transparent 38%),
    rgba(255, 255, 255, .012);
  padding: 12px;
}

.category-filter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px 10px;
}

.category-filter__head > div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 10px;
}

.category-filter__head span {
  color: #fff;
  font: 600 .68rem var(--store-font-head);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.category-filter__head small {
  color: var(--store-dim);
  font-size: .6rem;
}

.category-toggle {
  display: inline-flex;
  min-height: 29px;
  flex: none;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--store-line);
  border-radius: 7px;
  background: #0c090a;
  padding: 0 10px;
  color: var(--store-muted);
  font: 600 .56rem var(--store-font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-toggle:hover {
  border-color: var(--store-line-red);
  color: #fff;
}

.category-toggle .category-toggle__label {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.category-toggle .category-toggle__icon {
  color: var(--store-red-bright);
  font-size: .75rem;
}

.category-toggle[hidden] {
  display: none;
}

.category-tabs {
  display: grid;
  max-height: 87px;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 7px;
  overflow: hidden;
  transition: max-height .22s ease;
}

.category-tabs.is-expanded {
  max-height: 600px;
}

.category-tabs button {
  min-height: 39px;
  min-width: 0;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .018);
  padding: 8px 10px;
  color: var(--store-muted);
  font: 600 .62rem var(--store-font-head);
  letter-spacing: .045em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.category-tabs button:hover {
  border-color: var(--store-line-red);
  color: #fff;
}

.category-tabs button.is-active {
  border-color: var(--store-red);
  background: var(--store-red);
  color: #fff;
}

.category-tabs button b {
  margin-left: 5px;
  opacity: .72;
  font-size: .55rem;
}

.catalog-feedback {
  display: flex;
  min-height: 33px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--store-dim);
  font-size: .62rem;
}

.catalog-feedback.is-error {
  color: #ff929b;
}

.catalog-feedback__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--store-red);
}

.catalog-feedback.is-ready .catalog-feedback__dot {
  background: var(--store-green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 245px), 1fr));
  gap: 13px;
  margin-top: 7px;
}

.product-skeleton,
.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--store-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(20, 15, 16, .98), rgba(11, 8, 9, .98));
}

.product-skeleton {
  min-height: 390px;
  padding: 13px;
}

.product-skeleton i,
.product-skeleton span,
.product-skeleton b {
  display: block;
  border-radius: 7px;
  background: linear-gradient(110deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .065), rgba(255, 255, 255, .035));
}

.product-skeleton i {
  aspect-ratio: 4 / 3;
}

.product-skeleton span {
  width: 82%;
  height: 12px;
  margin-top: 17px;
}

.product-skeleton span + span {
  width: 58%;
  margin-top: 9px;
}

.product-skeleton b {
  width: 100%;
  height: 41px;
  margin-top: 31px;
}

.product-card {
  content-visibility: auto;
  contain: layout paint style;
  contain-intrinsic-size: auto 430px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.product-card:hover {
  border-color: rgba(255, 48, 65, .38);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

.product-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--store-line);
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 48, 65, .11), transparent 52%),
    #0b0809;
}

.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 13px;
  object-fit: contain;
}

.product-card__media::after {
  display: none;
  content: "";
}

.product-card__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  pointer-events: none;
}

.product-badge {
  border: 1px solid var(--store-line);
  border-radius: 6px;
  background: rgba(10, 7, 8, .92);
  padding: 5px 7px;
  color: #fff;
  font: 700 .52rem var(--store-font-head);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.product-badge--promotion {
  border-color: transparent;
  background: var(--store-red);
}

.product-badge--owned {
  border-color: rgba(72, 220, 151, .28);
  color: var(--store-green);
}

.product-card__soldout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(8, 6, 7, .52);
  pointer-events: none;
}

.product-card__soldout span {
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #120e0f;
  padding: 8px 11px;
  color: #fff;
  font: 600 .67rem var(--store-font-head);
  letter-spacing: .07em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  padding: 16px;
}

.product-card__category {
  color: var(--store-red-bright);
  font: 600 .54rem var(--store-font-head);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 7px 0 6px;
  color: #fff;
  font: 600 1rem/1.15 var(--store-font-head);
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.product-card__details {
  display: -webkit-box;
  min-height: 54px;
  margin: 0;
  overflow: hidden;
  color: var(--store-muted);
  font-size: .66rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__read {
  width: max-content;
  max-width: 100%;
  margin-top: 6px;
  border: 0;
  border-bottom: 1px solid rgba(255, 70, 84, .45);
  background: transparent;
  padding: 2px 0;
  color: var(--store-red-bright);
  font: 600 .57rem var(--store-font-head);
  letter-spacing: .035em;
  overflow-wrap: anywhere;
  text-align: left;
  text-transform: uppercase;
}

.product-card__read:hover,
.product-card__read:focus-visible {
  border-bottom-color: currentColor;
  color: #fff;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 0;
}

.product-card__meta span,
.dialog-meta span {
  border: 1px solid var(--store-line);
  border-radius: 5px;
  background: rgba(255, 255, 255, .025);
  padding: 4px 6px;
  color: var(--store-dim);
  font-size: .53rem;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.product-card__price {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-card__price del {
  color: var(--store-dim);
  font-size: .58rem;
}

.product-card__price strong {
  color: #fff;
  font: 600 1.02rem var(--store-font-head);
  overflow-wrap: anywhere;
}

.product-card__actions {
  display: flex;
  max-width: 100%;
  flex: none;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: auto;
}

.product-card__actions button {
  display: grid;
  min-width: 37px;
  min-height: 37px;
  place-items: center;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  color: var(--store-muted);
  font: 600 .61rem var(--store-font-head);
  text-transform: uppercase;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.product-card__actions button:hover {
  border-color: var(--store-line-red);
  color: #fff;
}

.product-card__actions .product-add {
  min-width: 78px;
  border-color: transparent;
  background: linear-gradient(135deg, var(--store-red), var(--store-red-deep));
  color: #fff;
}

.product-card__actions button:disabled {
  border-color: var(--store-line);
  background: rgba(255, 255, 255, .025);
  color: var(--store-dim);
  opacity: .58;
}

.catalog-empty {
  margin-top: 18px;
  border: 1px dashed var(--store-line);
  border-radius: 15px;
  padding: 58px 24px;
  text-align: center;
}

.catalog-empty > span {
  color: var(--store-red);
  font-size: 2.4rem;
}

.catalog-empty h3 {
  margin: 8px 0 4px;
  font: 600 1.2rem var(--store-font-head);
  text-transform: uppercase;
}

.catalog-empty p {
  margin: 0;
  color: var(--store-muted);
  font-size: .72rem;
}

.catalog-empty button,
.cart-empty button {
  margin-top: 16px;
  border: 1px solid var(--store-line-red);
  border-radius: 8px;
  background: var(--store-red-soft);
  padding: 9px 13px;
  color: #fff;
  font: 600 .62rem var(--store-font-head);
  text-transform: uppercase;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(3, 2, 2, .72);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  height: 100vh;
  height: 100dvh;
  width: min(430px, 100vw);
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--store-line);
  background: #0c090a;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .45);
  transform: translateX(102%);
  transition: transform .2s ease;
  overscroll-behavior: contain;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  min-height: 78px;
  flex: none;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--store-line);
  padding: 14px 18px;
}

.cart-drawer__head > button,
.product-dialog__close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  color: var(--store-muted);
  font-size: 1.25rem;
  line-height: 1;
}

.cart-target {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  margin: 13px 14px 0;
  border: 1px solid var(--store-line);
  border-radius: 10px;
  background: var(--store-panel);
  padding: 10px 11px;
}

.cart-target > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: none;
  place-items: center;
  border-radius: 7px;
  background: var(--store-red-soft);
  color: var(--store-red-bright);
  font: 700 .67rem var(--store-font-head);
}

.cart-target p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.cart-target b {
  font: 600 .69rem var(--store-font-head);
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.cart-target small {
  margin-top: 2px;
  color: var(--store-dim);
  font-size: .56rem;
}

.cart-items {
  min-height: 0;
  flex: 1 1 160px;
  overflow-y: auto;
  padding: 13px 14px;
  overscroll-behavior: contain;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 10px;
  border-bottom: 1px solid var(--store-line);
  padding: 12px 0;
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item__image {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--store-line);
  border-radius: 9px;
  background: var(--store-panel);
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

.cart-item__info {
  min-width: 0;
}

.cart-item__info h3 {
  margin: 0;
  font: 600 .72rem var(--store-font-head);
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.cart-item__info > small {
  display: block;
  margin-top: 3px;
  color: var(--store-dim);
  font-size: .54rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  white-space: normal;
}

.cart-item__info > strong {
  display: block;
  margin-top: 7px;
  color: var(--store-red-bright);
  font: 600 .71rem var(--store-font-head);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 7px;
}

.cart-item__controls button,
.cart-item__controls span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--store-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .02);
  font-size: .61rem;
}

.cart-item__remove {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--store-dim);
  font-size: 1rem;
}

.cart-empty {
  display: flex;
  min-height: 300px;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}

.cart-empty > span {
  font-size: 2rem;
}

.cart-empty h3 {
  margin: 11px 0 4px;
  font: 600 .95rem var(--store-font-head);
  text-transform: uppercase;
}

.cart-empty p {
  margin: 0;
  color: var(--store-dim);
  font-size: .66rem;
}

.cart-checkout {
  min-height: 0;
  max-height: min(60vh, 560px);
  max-height: min(60dvh, 560px);
  flex: 0 1 auto;
  overflow-y: auto;
  border-top: 1px solid var(--store-line);
  background: #0a0708;
  padding: 15px 16px max(18px, env(safe-area-inset-bottom));
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.coupon-form > label {
  display: block;
  margin-bottom: 6px;
  color: var(--store-dim);
  font: 600 .56rem var(--store-font-head);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.coupon-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.coupon-form input {
  min-width: 0;
  height: 39px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  outline: 0;
  background: var(--store-panel);
  padding: 0 11px;
  color: #fff;
  font: 600 .65rem var(--store-font-head);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.coupon-form input:focus {
  border-color: var(--store-line-red);
}

.coupon-form button {
  border: 1px solid var(--store-line-red);
  border-radius: 8px;
  background: var(--store-red-soft);
  padding: 0 12px;
  color: #fff;
  font: 600 .59rem var(--store-font-head);
  text-transform: uppercase;
}

.coupon-form > small {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: var(--store-dim);
  font-size: .55rem;
}

.coupon-form > small.is-valid {
  color: var(--store-green);
}

.payment-methods {
  min-width: 0;
  margin: 3px 0 12px;
  border: 0;
  padding: 0;
}

.payment-methods legend {
  margin-bottom: 7px;
  padding: 0;
  color: var(--store-dim);
  font: 600 .56rem var(--store-font-head);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.payment-method {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  border: 1px solid var(--store-line);
  border-radius: 9px;
  background: var(--store-panel);
  padding: 9px 10px;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, opacity .15s ease;
}

.payment-method:hover,
.payment-method.is-selected {
  border-color: var(--store-line-red);
  background: rgba(255, 48, 65, .055);
}

.payment-method.is-disabled {
  cursor: not-allowed;
  opacity: .52;
}

.payment-method input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-method__mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 7px;
  background: #009ee3;
  color: #fff;
  font: 700 .62rem var(--store-font-head);
}

.payment-method__mark--paypal {
  background: linear-gradient(145deg, #003087, #0070e0);
  font-size: .8rem;
}

.payment-method input:focus-visible + .payment-method__mark {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.payment-method__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.payment-method__copy strong {
  color: #fff;
  font: 600 .67rem var(--store-font-head);
  overflow-wrap: anywhere;
}

.payment-method__copy small {
  margin-top: 1px;
  color: var(--store-dim);
  font-size: .52rem;
  overflow-wrap: anywhere;
}

.payment-method em {
  color: var(--store-green);
  font: 600 .5rem var(--store-font-head);
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.payment-method.is-disabled em {
  color: var(--store-dim);
}

.payment-methods__feedback {
  min-height: 15px;
  margin: 6px 3px 0;
  color: var(--store-dim);
  font-size: .52rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.cart-summary {
  margin: 7px 0 12px;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
  color: var(--store-muted);
  font-size: .65rem;
}

.cart-summary dt {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cart-summary dt small {
  color: var(--store-dim);
  font-size: .52rem;
}

.cart-summary dd {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

.cart-summary #discountRow dd {
  color: var(--store-green);
}

.cart-summary .cart-summary__total {
  margin-top: 5px;
  border-top: 1px solid var(--store-line);
  padding-top: 10px;
  color: #fff;
}

.cart-summary__total dt {
  font: 600 .72rem var(--store-font-head);
  text-transform: uppercase;
}

.cart-summary__total dd {
  color: var(--store-red-bright);
  font: 600 1.05rem var(--store-font-head);
}

.checkout-button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--store-red), var(--store-red-deep));
  padding: 0 16px;
  color: #fff;
  font: 600 .72rem var(--store-font-head);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.checkout-button span {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: left;
}

.checkout-button:disabled {
  opacity: .56;
}

.checkout-note {
  margin: 8px 4px 0;
  color: var(--store-dim);
  font-size: .52rem;
  line-height: 1.45;
  text-align: center;
}

.product-dialog {
  width: min(940px, calc(100% - 28px));
  max-height: min(780px, calc(100vh - 28px));
  max-height: min(780px, calc(100dvh - 28px));
  overflow: auto;
  border: 1px solid var(--store-line);
  border-radius: 18px;
  background: #100c0d;
  padding: 0;
  color: var(--store-text);
  box-shadow: 0 36px 110px rgba(0, 0, 0, .7);
}

.product-dialog::backdrop {
  background: rgba(3, 2, 2, .8);
}

.product-dialog__close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  background: rgba(10, 7, 8, .92);
}

.product-dialog__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
}

.product-dialog__media {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
  border-right: 1px solid var(--store-line);
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 48, 65, .15), transparent 50%),
    #0a0708;
}

.product-dialog__media img {
  width: 100%;
  max-height: 510px;
  padding: clamp(24px, 5vw, 54px);
  object-fit: contain;
}

.product-dialog__media > span {
  position: absolute;
  top: 17px;
  left: 17px;
  border-radius: 7px;
  background: var(--store-red);
  padding: 6px 9px;
  color: #fff;
  font: 700 .57rem var(--store-font-head);
  letter-spacing: .06em;
}

.product-dialog__unavailable {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: rgba(8, 6, 7, .68);
  padding: 30px;
  text-align: center;
}

.product-dialog__unavailable strong {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #151011;
  padding: 8px 11px;
  color: #fff;
  font: 600 .67rem var(--store-font-head);
  letter-spacing: .07em;
}

.product-dialog__unavailable p {
  max-width: 350px;
  margin: 0;
  color: var(--store-muted);
  font-size: .68rem;
}

.product-dialog__content {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: clamp(27px, 4vw, 43px);
}

.product-dialog__content > small {
  color: var(--store-red-bright);
  font: 600 .59rem var(--store-font-head);
  letter-spacing: .1em;
}

.product-dialog h2 {
  margin: 8px 0 10px;
  font: 400 clamp(2.1rem, 4vw, 3.3rem)/.97 var(--store-font-display);
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.product-dialog__content > p {
  margin: 0;
  color: var(--store-muted);
  font-size: .73rem;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.dialog-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 19px 0 4px;
}

.dialog-price del {
  color: var(--store-dim);
  font-size: .73rem;
}

.dialog-price strong {
  color: var(--store-red-bright);
  font: 600 1.4rem var(--store-font-head);
}

.variable-fields {
  display: grid;
  min-width: 0;
  gap: 10px;
  margin-top: 13px;
}

.variable-field {
  min-width: 0;
}

.variable-field > span,
.quantity-field > span:first-child {
  display: block;
  margin-bottom: 5px;
  color: var(--store-muted);
  font: 600 .6rem var(--store-font-head);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.variable-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 43px;
  overflow: hidden;
  padding: 0 37px 0 11px;
  font-size: .68rem;
  text-overflow: ellipsis;
}

.quantity-field {
  display: block;
  margin-top: 13px;
}

.quantity-control {
  display: grid;
  width: 135px;
  grid-template-columns: 38px 1fr 38px;
  border: 1px solid var(--store-line);
  border-radius: 9px;
  overflow: hidden;
}

.quantity-control button,
.quantity-control input {
  height: 39px;
  border: 0;
  background: #090708;
  color: #fff;
  text-align: center;
}

.quantity-control button {
  font-size: 1rem;
}

.quantity-control input {
  width: 100%;
  outline: 0;
  font-size: .7rem;
  -moz-appearance: textfield;
}

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

.dialog-error {
  min-height: 18px;
  margin: 8px 0 0 !important;
  color: #ff8d97 !important;
  font-size: .6rem !important;
}

.dialog-add {
  width: 100%;
  margin-top: 5px;
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  display: flex;
  width: min(390px, calc(100% - 36px));
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.store-toast {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid var(--store-line);
  border-radius: 10px;
  background: #181214;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
  padding: 12px 13px;
  color: #fff;
  font-size: .68rem;
  pointer-events: auto;
}

.store-toast > div {
  overflow-wrap: anywhere;
}

.store-toast > span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--store-red-soft);
  color: var(--store-red-bright);
  font-weight: 800;
}

.store-toast.is-success {
  border-color: rgba(72, 220, 151, .25);
}

.store-toast.is-success > span {
  background: rgba(72, 220, 151, .1);
  color: var(--store-green);
}

.store-footer {
  border-top: 1px solid var(--store-line);
  background: #060405;
  padding-block: 38px;
}

.store-footer__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 66px);
}

.store-footer__brand img {
  width: 145px;
  height: auto;
}

.store-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--store-dim);
  font-size: .64rem;
}

.store-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.store-footer nav a {
  color: var(--store-muted);
  font: 600 .6rem var(--store-font-head);
  text-transform: uppercase;
}

.store-footer nav a:hover {
  color: var(--store-red-bright);
}

@media (max-width: 1050px) {
  .store-nav > a:not(.store-nav__login) {
    display: none;
  }

  .store-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
    gap: 35px;
  }

  .store-hero__copy h1 {
    font-size: clamp(3.5rem, 7.7vw, 5.7rem);
  }

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

  .product-dialog__media {
    min-height: 460px;
  }
}

@media (max-width: 800px) {
  .store-shell {
    width: min(100% - 26px, var(--store-shell));
  }

  .store-header__inner {
    min-height: 68px;
  }

  .store-brand__mark {
    width: 44px;
    height: 44px;
  }

  .store-brand__mark img {
    width: 37px;
    height: 37px;
  }

  .store-user > span,
  .cart-trigger__label {
    display: none;
  }

  .store-user {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .store-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 62px;
  }

  .store-hero__copy h1 {
    font-size: clamp(3.6rem, 13vw, 6rem);
  }

  .player-panel {
    width: min(100%, 600px);
  }

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

  .store-benefits article,
  .store-benefits article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--store-line);
    padding: 15px 0;
  }

  .store-benefits article:last-child {
    border-bottom: 0;
  }

  .catalog-heading {
    align-items: flex-start;
  }

  .catalog-result {
    min-width: auto;
  }

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

  .product-dialog__media {
    height: clamp(190px, 38vh, 320px);
    height: clamp(190px, 38dvh, 320px);
    min-height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--store-line);
  }

  .product-dialog__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding: clamp(18px, 6vw, 36px);
    object-fit: contain;
  }

  .store-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .store-footer__brand img {
    margin-inline: auto;
  }

  .store-footer p {
    margin-inline: auto;
  }

  .store-footer nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .store-brand__copy small,
  .store-user {
    display: none;
  }

  .store-nav {
    gap: 3px;
  }

  .store-nav > .store-nav__login {
    padding-inline: 9px;
    font-size: .6rem;
  }

  .cart-trigger {
    min-height: 41px;
    margin-left: 0;
    padding: 8px;
  }

  .store-hero__copy h1 {
    font-size: clamp(3.15rem, 16.3vw, 5.25rem);
  }

  .store-hero__copy > p {
    font-size: .84rem;
  }

  .store-hero__actions .store-button {
    width: 100%;
  }

  .store-assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .coupon-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .coupon-banner button {
    grid-column: 1 / -1;
  }

  .payment-return {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .payment-return > button {
    grid-column: 1 / -1;
  }

  .catalog-heading {
    flex-direction: column;
    gap: 16px;
  }

  .catalog-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .catalog-result {
    flex-direction: row;
    align-items: baseline;
    gap: 7px;
  }

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

  .category-filter {
    padding: 10px;
  }

  .category-filter__head small {
    display: none;
  }

  .category-tabs {
    max-height: 87px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  }

  .cart-drawer {
    width: 100%;
    max-width: none;
  }

  .product-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 13px;
  }

  .product-dialog__content {
    padding: 24px 18px;
  }

  .product-dialog h2 {
    font-size: 2.2rem;
  }

  .toast-region {
    right: 9px;
    bottom: 9px;
    width: calc(100% - 18px);
  }
}

@media (max-width: 420px) {
  .store-brand__copy {
    display: none;
  }

  .store-nav > .store-nav__login {
    max-width: 113px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .store-hero__grid {
    padding-block: 48px;
  }

  .store-hero__copy h1 {
    font-size: 3.15rem;
  }

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

  .product-card__body {
    min-height: 200px;
  }

  .product-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card__actions {
    width: 100%;
  }

  .product-card__actions .product-add {
    min-width: 0;
    flex: 1;
  }

  .payment-method {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .payment-method em {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 800px) and (max-height: 600px) {
  .product-dialog__media {
    height: min(32vh, 190px);
    height: min(32dvh, 190px);
    min-height: 130px;
  }
}

@media (min-width: 801px) and (max-height: 600px) {
  .product-dialog__layout {
    align-items: start;
  }

  .product-dialog__media {
    position: sticky;
    top: 0;
    align-self: start;
    height: calc(100vh - 30px);
    height: calc(100dvh - 30px);
    min-height: 0;
  }

  .product-dialog__media img {
    height: 100%;
    max-height: 100%;
    padding: clamp(18px, 4vh, 30px);
  }

  .product-dialog__content {
    justify-content: flex-start;
    padding-block: 24px;
  }
}

@media (max-height: 700px) {
  .cart-drawer__head {
    min-height: 64px;
    padding-block: 9px;
  }

  .cart-target {
    margin-top: 8px;
    padding-block: 8px;
  }

  .cart-items {
    padding-block: 8px;
  }

  .cart-checkout {
    max-height: 62vh;
    max-height: 62dvh;
    padding-top: 11px;
  }
}

@media (max-height: 520px) {
  .cart-target small {
    display: none;
  }

  .cart-items {
    flex-basis: 62px;
  }

  .cart-checkout {
    max-height: 68vh;
    max-height: 68dvh;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
