@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #f7f4fb;
  --muted: #a4a8b7;
  --night: #070914;
  --night-2: #0b0e1d;
  --panel: #0e1224;
  --panel-2: #13172c;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --pink: #ed2aa5;
  --pink-hot: #ff4fc1;
  --violet: #7246ed;
  --gold: #f6c550;
  --danger: #ff5b74;
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --header-height: 88px;
  --tebex-legal-footer-background-color: #070914;
  --tebex-legal-footer-text-color: #8e92a3;
  --tebex-legal-footer-border-color: rgba(255, 255, 255, 0.1);
  --tebex-legal-footer-max-width: 1180px;
  --tebex-legal-footer-logo-color: #8e92a3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

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

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

button,
.button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(237, 42, 165, .42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: white;
  background: var(--pink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 20, .9);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), 1440px);
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  min-width: max-content;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand-text span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .18em;
  white-space: nowrap;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 28px);
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  color: #d6d7df;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  color: white;
}

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

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

.account-head {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(237, 42, 165, .5);
  background: #101321;
  image-rendering: pixelated;
}

.account-head[hidden],
[data-account-icon][hidden] {
  display: none;
}

.account-link,
.utility-link,
.basket-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  color: #e6e6eb;
  background: rgba(255,255,255,.035);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.account-link:hover,
.utility-link:hover,
.basket-link:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 42, 165, .7);
  background: rgba(237, 42, 165, .08);
}

.account-menu {
  position: relative;
}

.account-trigger {
  appearance: none;
  font: inherit;
}

.account-chevron {
  transition: transform .2s ease;
}

.account-menu.is-open .account-trigger {
  border-color: rgba(237, 42, 165, .7);
  background: rgba(237, 42, 165, .08);
}

.account-menu.is-open .account-chevron {
  transform: rotate(180deg);
}

.account-panel {
  position: absolute;
  z-index: 90;
  top: calc(100% + 12px);
  right: 0;
  width: 270px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(9, 11, 24, .98);
  box-shadow: 0 24px 64px rgba(0,0,0,.58);
  animation: account-panel-in .22s cubic-bezier(.16, 1, .3, 1);
}

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

.account-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.account-head-large {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.account-summary span {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.account-summary small {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.account-summary strong {
  margin-top: 5px;
  overflow: hidden;
  font-size: .82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-action {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #dfe0e8;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.account-action:last-child {
  border-bottom: 0;
}

.account-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.account-action:hover {
  color: white;
  background: rgba(255,255,255,.045);
}

.account-action-danger:hover {
  color: #ff8293;
  background: rgba(255,91,116,.08);
}

@keyframes account-panel-in {
  from { transform: translateY(-8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.basket-count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  color: white;
  background: var(--pink);
  font-size: .68rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: white;
  background: transparent;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.top-customer-bar {
  position: relative;
  z-index: 42;
  border-bottom: 1px solid var(--line);
  background: #05060d;
}

.top-customer-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.top-customer-head,
.top-customer-placeholder {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(237,42,165,.5);
  background: #101321;
  image-rendering: pixelated;
}

.top-customer-placeholder {
  display: grid;
  place-items: center;
  color: var(--pink-hot);
  font-family: var(--display);
  font-size: 1.35rem;
}

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

.top-customer-copy > span {
  color: var(--pink-hot);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.top-customer-copy strong {
  margin-top: 6px;
  overflow: hidden;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-customer-total {
  margin-left: auto;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.notice {
  position: relative;
  z-index: 40;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(237, 42, 165, .3);
  color: #ffd7ee;
  background: #28102a;
  text-align: center;
  font-size: .86rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(7, 9, 20, .42) 0%, rgba(7, 9, 20, .12) 43%, rgba(7, 9, 20, .01) 76%),
    var(--hero-background-image);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
  filter: brightness(1.42) saturate(1.12);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 210px;
  background: linear-gradient(to top, var(--night), transparent);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .34;
  background:
    linear-gradient(120deg, transparent 0 61%, rgba(237,42,165,.16) 61.1% 61.2%, transparent 61.3%),
    linear-gradient(120deg, transparent 0 71%, rgba(114,70,237,.18) 71.1% 71.2%, transparent 71.3%);
}

.hero-inner {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(460px, 580px);
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-block: 56px 82px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 520px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 8.2vw, 8.3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--pink-hot);
  text-shadow: 0 12px 40px rgba(237,42,165,.13);
}

.hero-copy > p {
  max-width: 500px;
  margin: 34px 0 0;
  color: #bdc0cc;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 16px 34px rgba(237, 42, 165, .16);
}

.button-primary:hover {
  background: var(--pink-hot);
  box-shadow: 0 18px 44px rgba(237, 42, 165, .24);
}

.button-secondary {
  border-color: var(--line-strong);
  color: #f1f1f4;
  background: rgba(255,255,255,.035);
}

.button-secondary:hover {
  border-color: rgba(237,42,165,.65);
  background: rgba(237,42,165,.07);
}

.hero-server {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 7, 16, .72);
}

.hero-server img {
  width: 50px;
  height: 50px;
  padding: 5px;
  border-right: 1px solid var(--line);
  object-fit: contain;
}

.server-copy {
  min-width: 0;
  display: grid;
}

.server-copy strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.server-copy span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .76rem;
}

.copy-ip {
  margin-left: 12px;
  padding: 8px 10px;
  border: 0;
  color: var(--pink-hot);
  background: transparent;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  align-self: stretch;
  justify-self: start;
  width: 100%;
  max-width: 580px;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(17, 25, 42, .72);
  backdrop-filter: blur(3px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.hero-art::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 1%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(237,42,165,.12);
  transform: rotate(10deg);
}

.hero-art::after {
  content: '';
  position: absolute;
  right: 7%;
  bottom: 5%;
  width: 64%;
  height: 30%;
  border-radius: 50%;
  background: rgba(237,42,165,.2);
  filter: blur(70px);
}

.hero-main-art {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: transparent;
  filter: drop-shadow(0 42px 48px rgba(0,0,0,.4));
  mix-blend-mode: normal;
  transform: none;
  animation: hero-art-pop .72s cubic-bezier(.16, 1, .3, 1);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), filter .45s ease;
}

.hero-art:hover .hero-main-art {
  transform: translateY(-7px) scale(1.025);
  filter: drop-shadow(0 48px 54px rgba(0,0,0,.52));
}

@keyframes hero-art-pop {
  0% {
    transform: translateY(34px) scale(.86);
    opacity: 0;
  }
  68% {
    transform: translateY(-7px) scale(1.035);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 30px;
  margin-bottom: 48px;
}

.section-heading-solo {
  grid-template-columns: 1fr;
}

.section-heading h2,
.page-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .92;
  text-transform: uppercase;
}

.section-heading h2 span,
.page-heading h1 span {
  color: var(--pink);
}

.section-heading p,
.page-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.coin-section {
  border-bottom: 1px solid var(--line);
  background: #090b17;
}

.coin-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.coin-card {
  position: relative;
  grid-column: span 4;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 48%);
  transition: background .25s ease, transform .25s ease;
}

.coin-card:nth-child(4),
.coin-card:nth-child(5) {
  grid-column: span 6;
}

.coin-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(237,42,165,.085), rgba(255,255,255,.015) 52%);
}

.coin-card::after {
  content: '';
  position: absolute;
  right: -44px;
  bottom: -74px;
  width: 180px;
  height: 180px;
  border: 24px solid rgba(237,42,165,.045);
  transform: rotate(18deg);
}

.coin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.coin-package-image {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 106px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .32));
}

.coin-mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid #ff5ec6;
  border-radius: 50%;
  color: white;
  background: #be2388;
  box-shadow:
    inset 0 0 0 6px #ed45ad,
    inset 0 0 0 9px rgba(255,255,255,.28),
    8px 10px 0 #551a6c;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.coin-mark::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 18px;
  width: 19px;
  height: 8px;
  transform: rotate(-28deg);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
}

.coin-quantity {
  color: var(--pink-hot);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.coin-card h3 {
  margin: 24px 0 5px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -.015em;
  line-height: 1;
  text-transform: uppercase;
}

.coin-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.coin-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}

.price {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}

.price del {
  margin-right: 7px;
  color: var(--muted);
  font-size: 1rem;
}

.arrow-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: white;
  background: transparent;
  transition: border-color .2s ease, background .2s ease;
}

.arrow-link:hover {
  border-color: var(--pink);
  background: var(--pink);
}

.arrow-link svg {
  width: 17px;
  height: 17px;
}

.upgrade-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 50%, rgba(114,70,237,.09), transparent 32%),
    var(--night);
}

.upgrade-list {
  display: grid;
  gap: 18px;
}

.upgrade-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(330px, 46%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.upgrade-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 46%);
}

.upgrade-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #0a0d1b;
}

.upgrade-card:nth-child(even) .upgrade-media {
  order: 2;
}

.upgrade-media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  pointer-events: none;
}

.upgrade-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.upgrade-card:hover .upgrade-media img {
  transform: scale(1.025);
}

.upgrade-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}

.upgrade-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: uppercase;
}

.upgrade-content > p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
}

.upgrade-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.upgrade-meta .price {
  min-width: 90px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #0c0f1e;
}

.trust-inner {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding-inline: 30px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

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

.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--pink);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-item span {
  margin-top: 6px;
  color: var(--muted);
  font-size: .74rem;
}

.page-hero {
  padding: 90px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(237,42,165,.12), transparent 28%),
    #090b17;
}

.page-heading {
  max-width: 780px;
}

.page-heading p {
  max-width: 700px;
  margin-top: 20px;
}

.catalog-section {
  padding: 70px 0 110px;
}

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

.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237,42,165,.5);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / .88;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090c19;
}

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

.product-media .coin-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 106px;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  box-shadow:
    inset 0 0 0 8px #ed45ad,
    inset 0 0 0 12px rgba(255,255,255,.28),
    13px 15px 0 #551a6c,
    0 28px 50px rgba(237,42,165,.16);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.product-body h2,
.product-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -.015em;
  line-height: 1;
  text-transform: uppercase;
}

.product-description {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}

.product-actions .button {
  min-height: 44px;
  padding-inline: 17px;
  font-size: .72rem;
}

.product-detail {
  padding: 78px 0 116px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: start;
}

.detail-media {
  position: sticky;
  top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.detail-content h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 6rem);
  letter-spacing: -.04em;
  line-height: .9;
  text-transform: uppercase;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 28px;
}

.detail-price strong {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

.detail-price span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detail-description {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: #c2c4ce;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.form-page {
  width: min(calc(100% - 40px), 670px);
  margin: 0 auto;
  padding: 96px 0 124px;
}

.form-panel {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.form-panel h1,
.form-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 7vw, 4.7rem);
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.form-panel > p {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.field label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: white;
  background: #090c18;
  padding: 0 15px;
  outline: 0;
}

.field textarea {
  min-height: 150px;
  padding-block: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
}

.field select option {
  color: white;
  background: #090c18;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.basket-hero .page-heading h1 em {
  color: var(--pink);
  font-style: normal;
}

.basket-hero .page-heading p strong {
  color: white;
}

.store-basket-page {
  min-height: 480px;
  padding: 72px 0 116px;
  background:
    radial-gradient(circle at 12% 12%, rgba(89, 55, 206, .08), transparent 28%),
    #070914;
}

.store-basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.store-basket-list,
.store-basket-summary,
.store-basket-empty {
  border: 1px solid var(--line);
  background: rgba(14, 17, 34, .88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}

.store-basket-list-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.store-basket-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 164px;
  padding: 30px 28px;
}

.store-basket-item + .store-basket-item {
  border-top: 1px solid var(--line);
}

.store-basket-copy h2 {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.store-basket-copy h2 a {
  color: white;
  transition: color .2s ease;
}

.store-basket-copy h2 a:hover {
  color: var(--pink-hot);
}

.store-basket-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 15px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .76rem;
  list-style: none;
}

.store-basket-options strong {
  color: #e6e7ee;
}

.store-basket-item-meta {
  min-width: 128px;
  display: grid;
  justify-items: end;
  gap: 18px;
}

.store-basket-item-meta > strong,
.store-basket-total strong {
  font-family: var(--display);
  font-size: 1.85rem;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
}

.store-basket-item-meta small,
.store-basket-total small {
  color: var(--muted);
  font-family: var(--body);
  font-size: .62rem;
  letter-spacing: .08em;
}

.store-basket-remove {
  color: #a9abb7;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: underline;
  text-decoration-color: rgba(169, 171, 183, .35);
  text-underline-offset: 4px;
  text-transform: uppercase;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.store-basket-remove:hover {
  color: var(--pink-hot);
  text-decoration-color: var(--pink-hot);
}

.store-basket-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(237, 42, 165, .07), transparent 42%),
    rgba(14, 17, 34, .94);
}

.store-basket-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-basket-total > span {
  color: #d6d7df;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.store-basket-summary > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}

.store-basket-checkout {
  margin-top: 25px;
}

.store-basket-checkout .button {
  width: 100%;
  min-height: 56px;
}

.store-basket-continue {
  display: block;
  margin-top: 18px;
  color: #b8bac5;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.store-basket-continue:hover {
  color: white;
}

.store-basket-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 76px);
  text-align: center;
}

.store-basket-empty h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 7vw, 5rem);
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: uppercase;
}

.store-basket-empty p {
  max-width: 500px;
  margin: 20px auto 28px;
  color: var(--muted);
}

.cms-section {
  padding: 70px 0 118px;
}

.cms-content {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
}

.cms-content h1,
.cms-content h2,
.cms-content h3 {
  font-family: var(--display);
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.cms-content h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.cms-content h2 {
  margin-top: 50px;
  font-size: 2.3rem;
}

.cms-content p,
.cms-content li {
  color: #bdc0ca;
}

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

.content-intro {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(237,42,165,.08), transparent 48%),
    var(--panel);
}

.content-label {
  color: var(--pink-hot);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.content-intro h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: .9;
}

.content-intro p {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 1rem;
}

.content-intro-spaced {
  margin-top: clamp(48px, 7vw, 84px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.info-card {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(14,18,36,.82);
}

.info-card h3 {
  margin: 0;
  font-size: 1.75rem;
}

.info-card p {
  margin: 15px 0 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(14,18,36,.82);
  transition: border-color .2s ease, background .2s ease;
}

.faq-item[open] {
  border-color: rgba(237,42,165,.42);
  background: rgba(20,18,43,.94);
}

.faq-item summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--pink-hot);
  transition: transform .2s ease;
}

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

.faq-item[open] .faq-plus::after {
  transform: rotate(0);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  background: #0a0d1b;
}

.content-cta-copy {
  min-width: 0;
  display: grid;
}

.content-cta-copy span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.content-cta-copy strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.content-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quickview {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.quickview[hidden] {
  display: none;
}

.quickview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1,2,8,.82);
  backdrop-filter: blur(9px);
}

.quickview-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #090b16;
  box-shadow: 0 36px 110px rgba(0,0,0,.72);
  animation: quickview-in .28s cubic-bezier(.16, 1, .3, 1);
}

.quickview-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: white;
  background: rgba(7,9,20,.8);
  font-size: 1.5rem;
  line-height: 1;
}

.quickview-media {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(237,42,165,.14), transparent 62%),
    #070914;
}

.quickview-media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.48));
}

.quickview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 56px);
}

.quickview-content h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -.035em;
  line-height: .88;
  text-transform: uppercase;
}

.quickview-content p {
  margin: 20px 0 0;
  color: #bdc0ca;
}

.quickview-price {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.quickview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

@keyframes quickview-in {
  from { transform: translateY(18px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.site-footer {
  padding: 70px 0 34px;
  background: #080a15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 70px;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.footer-column h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--muted);
  font-size: .82rem;
}

.footer-column a:hover {
  color: var(--pink-hot);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #777b8a;
  font-size: .72rem;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  max-width: min(370px, calc(100vw - 44px));
  transform: translateY(26px);
  padding: 15px 18px;
  border: 1px solid rgba(237,42,165,.5);
  opacity: 0;
  color: white;
  background: #171023;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  font-size: .82rem;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

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

.account-modal {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.account-modal[hidden] {
  display: none;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1,2,8,.8);
  backdrop-filter: blur(8px);
}

.account-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid var(--line-strong);
  background: #090b16;
  box-shadow: 0 35px 100px rgba(0,0,0,.7);
}

.account-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: white;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
}

.eyebrow {
  color: var(--pink-hot);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.account-dialog h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: .94;
  text-transform: uppercase;
}

.account-dialog > p,
.account-dialog > small {
  color: var(--muted);
}

.account-dialog form {
  display: grid;
  gap: 12px;
  margin: 28px 0 18px;
}

.account-dialog label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.account-dialog input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  color: white;
  background: #050711;
}

.account-dialog input:focus {
  border-color: var(--pink);
}

.empty-state {
  padding: 60px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--panel);
  text-align: center;
}

@media (max-width: 1020px) {
  .store-basket-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    background: #0b0e1d;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .utility-link {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    padding-block: 52px 76px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 10vw, 7rem);
  }

  .hero-art {
    min-height: 560px;
  }

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

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

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

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    display: none;
  }

  .header-actions .basket-link {
    min-width: 44px;
    padding-inline: 10px;
    font-size: 0;
  }

  .header-actions .account-link {
    min-width: 44px;
    padding-inline: 10px;
    font-size: 0;
  }

  .account-panel {
    right: -54px;
    width: min(270px, calc(100vw - 28px));
  }

  .header-actions .account-link svg {
    width: 17px;
    height: 17px;
  }

  .header-actions .basket-link svg,
  .header-actions .basket-link .basket-count {
    font-size: .68rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding-block: 62px 44px;
  }

  .hero-copy {
    max-width: none;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(4.4rem, 19vw, 7.3rem);
  }

  .hero-copy > p {
    max-width: 100%;
    margin-top: 27px;
  }

  .hero-server {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 34px;
  }

  .copy-ip {
    margin-left: auto;
  }

  .hero-art {
    width: 100%;
    min-width: 0;
    min-height: 430px;
    margin-top: 6px;
    overflow: hidden;
  }

  .hero-main-art {
    right: 0;
    width: 100%;
    transform: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .page-heading h1 {
    font-size: clamp(3.1rem, 14vw, 5.2rem);
  }

  .coin-card,
  .coin-card:nth-child(4),
  .coin-card:nth-child(5) {
    grid-column: span 6;
  }

  .coin-card:last-child {
    grid-column: span 12;
  }

  .upgrade-card,
  .upgrade-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .upgrade-media,
  .upgrade-card:nth-child(even) .upgrade-media {
    min-height: 340px;
    order: 0;
  }

  .upgrade-content {
    min-height: 330px;
    padding: 38px 30px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .detail-media {
    position: relative;
    top: 0;
  }

  .store-basket-page {
    padding: 52px 0 84px;
  }

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

  .store-basket-summary {
    position: relative;
    top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .header-actions {
    gap: 6px;
  }

  .top-customer-total {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 5.7rem);
  }

  .hero-ctas .button {
    width: 100%;
  }

  .hero-server {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding-right: 10px;
  }

  .hero-server img {
    width: 44px;
    height: 44px;
  }

  .server-copy strong {
    font-size: .9rem;
  }

  .server-copy span {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .copy-ip {
    margin-left: 0;
    padding-inline: 5px;
  }

  .coin-card,
  .coin-card:nth-child(4),
  .coin-card:nth-child(5),
  .coin-card:last-child {
    grid-column: span 12;
  }

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

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

  .info-card {
    min-height: 0;
  }

  .content-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .quickview-dialog {
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .quickview-media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quickview-media img {
    max-height: 220px;
  }

  .quickview-content {
    padding: 30px 24px;
  }

  .page-hero {
    padding: 66px 0 50px;
  }

  .store-basket-list-head {
    padding-inline: 20px;
  }

  .store-basket-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 20px;
  }

  .store-basket-item-meta {
    min-width: 0;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .store-basket-remove {
    justify-self: end;
  }

  .store-basket-summary {
    padding: 26px 20px;
  }

  .catalog-section,
  .product-detail {
    padding: 48px 0 78px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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