:root {
  color-scheme: dark;
  --black: #000;
  --black-2: #070707;
  --black-3: #101010;
  --red: #e50914;
  --red-2: #b0000a;
  --white: #fff;
  --muted: #c7c7c7;
  --line: #2b2b2b;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  padding-top: 74px;
  overflow-x: hidden;
  background: var(--black);
}

.topbar,
.opening-coupon,
.elite-deals,
.promo-slider,
.hero,
.trust-strip,
.seo-intro,
.section-heading,
.shop-layout,
.content-band,
.process,
.faq,
.legal-section,
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 12px;
  border: 1px solid var(--red);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--black);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1;
}

.brand-copy small,
.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.cart-button,
.button,
.category-pill,
.icon-button,
select {
  border-radius: var(--radius);
}

.desktop-nav a {
  padding: 10px 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--red);
  color: var(--white);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--red);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 99px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
}

.floating-cart-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
}

.floating-cart-button:hover,
.floating-cart-button:focus-visible {
  background: var(--black);
  outline: none;
}

.floating-cart-icon {
  position: relative;
  width: 30px;
  height: 24px;
  border: 3px solid var(--white);
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.floating-cart-icon::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 4px;
  width: 17px;
  height: 12px;
  border: 3px solid var(--white);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.floating-cart-icon::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -8px;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--white);
}

.floating-cart-button strong {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 99px;
  background: var(--white);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.promo-slider {
  padding: 28px 0 0;
}

.opening-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}

.opening-coupon span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.opening-coupon strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
}

.opening-coupon code {
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--black);
  color: var(--white);
}

.opening-coupon p {
  margin: 7px 0 0;
  color: var(--white);
  font-weight: 700;
}

.opening-coupon .button {
  flex: 0 0 auto;
  border-color: var(--white);
  background: var(--black);
}

.elite-deals {
  padding: 28px 0 0;
}

.elite-deals-head {
  padding: 22px;
  border: 1px solid var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--black);
}

.elite-deals-head h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.elite-deals-head p {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.elite-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  border-left: 1px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--black);
}

.elite-deal-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
  overflow: hidden;
  --card-accent: var(--red);
  --card-tint: #240306;
}

.elite-deal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, var(--card-tint), transparent 44%),
    radial-gradient(circle at 92% 12%, var(--card-tint), transparent 28%),
    var(--black-2);
}

.elite-deal-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 5px;
  pointer-events: none;
  background: var(--card-accent);
}

.elite-deal-card > * {
  position: relative;
  z-index: 1;
}

.elite-deal-card--netflix,
.elite-deal-card--youtube {
  --card-accent: #e50914;
  --card-tint: #2b0307;
  border-color: rgba(229, 9, 20, 0.42);
}

.elite-deal-card--chatgpt {
  --card-accent: #16a085;
  --card-tint: #062822;
  border-color: rgba(22, 160, 133, 0.42);
}

.elite-deal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.elite-deal-card .product-brand {
  border-color: var(--card-accent);
  background: var(--card-tint);
}

.elite-deal-card h3 {
  margin: 12px 0 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.elite-deal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.elite-price {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}

.elite-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.elite-price strong {
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.elite-deal-card .button {
  width: 100%;
  align-self: end;
  margin-top: 14px;
}

.promo-slider-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--black);
}

.promo-slider-head h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.promo-slider-head p {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.promo-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.promo-track-wrap {
  overflow: hidden;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  border-left: 1px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--black);
}

.promo-track {
  display: grid;
  grid-auto-columns: minmax(280px, 320px);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) var(--black);
  scrollbar-width: thin;
}

.promo-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
  overflow: hidden;
  scroll-snap-align: start;
  --card-accent: var(--red);
  --card-tint: #240306;
}

.promo-card:hover {
  border-color: var(--card-accent);
}

.promo-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, var(--card-tint), transparent 44%),
    radial-gradient(circle at 92% 12%, var(--card-tint), transparent 28%),
    var(--black-2);
}

.promo-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 5px;
  pointer-events: none;
  background: var(--card-accent);
}

.promo-card > *,
.product-card > * {
  position: relative;
  z-index: 1;
}

.promo-card h3 {
  margin: 12px 0 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.promo-card .button {
  width: 100%;
  align-self: end;
  margin-top: 16px;
}

.price-stack {
  display: grid;
  justify-items: end;
  gap: 3px;
  white-space: nowrap;
}

.old-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.discount-copy {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  padding: 54px 0 28px;
}

.hero-main {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--black);
}

.hero h1 {
  max-width: 860px;
  margin: 10px 0 18px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p,
.seo-intro p,
.section-heading p,
.content-band p,
.steps p,
.faq p,
.payment-mini p,
.seo-note p,
.empty-state span,
.trust-strip span,
.product-card p,
.product-card li,
.modal-panel p,
.modal-panel small {
  color: var(--muted);
  line-height: 1.65;
}

.hero-main p {
  max-width: 780px;
  margin: 0;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--red);
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.cart-button:hover {
  background: var(--red-2);
  border-color: var(--red-2);
}

.button-ghost,
.button-red-outline {
  background: var(--black);
  color: var(--white);
}

.button.is-disabled {
  border-color: var(--line);
  background: var(--black-3);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.74;
}

.button-ghost:hover,
.button-red-outline:hover {
  background: var(--red);
}

.hero-aside {
  display: grid;
  gap: 16px;
}

.hero-aside article,
.trust-strip div,
.seo-grid article,
.search-box,
.filter-group,
.payment-mini,
.seo-note,
.catalog-toolbar,
.category-seo,
.empty-state,
.product-card,
.steps article,
.content-band,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
}

.hero-aside article {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 126px;
  padding: 20px;
}

.hero-aside .red-card {
  border-color: var(--red);
  background: var(--red);
}

.hero-aside span {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-aside strong {
  color: var(--white);
  font-size: 44px;
  line-height: 1;
}

.hero-aside p {
  margin: 0;
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
}

.trust-strip div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 0;
}

.trust-strip strong {
  color: var(--white);
  font-size: 15px;
}

.trust-strip span {
  font-size: 14px;
}

.seo-intro {
  padding: 72px 0 0;
}

.seo-intro h2,
.section-heading h2,
.content-band h2,
.modal-panel h2,
.cart-panel h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.seo-intro > div:first-child p,
.section-heading p {
  max-width: 860px;
  margin: 16px 0 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.seo-grid article {
  padding: 20px;
}

.seo-grid h3,
.steps h3,
.product-card h3 {
  margin: 0;
  color: var(--white);
}

.seo-grid p {
  margin: 10px 0 0;
}

.section-heading {
  padding: 72px 0 24px;
}

.section-heading.products-first {
  padding: 34px 0 18px;
}

.section-heading.compact {
  padding: 0 0 24px;
}

.products-first h1 {
  max-width: 900px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.seo-hero .hero-main {
  min-height: 320px;
}

.seo-hero h2 {
  max-width: 860px;
  margin: 10px 0 18px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.search-box,
.filter-group,
.payment-mini,
.seo-note {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.toggle-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

.toggle-filter input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.search-box span,
.filter-group > span,
.payment-mini > span,
.seo-note span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-box input,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  outline: none;
}

.search-box input {
  padding: 12px;
  border-radius: var(--radius);
}

.search-box input:focus,
select:focus {
  border-color: var(--red);
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-pill {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease;
}

.category-pill.is-active,
.category-pill:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.category-pill small {
  color: inherit;
  opacity: 0.9;
}

.payment-mini {
  border-color: var(--red);
}

.payment-mini code,
.faq code,
.modal-panel code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
}

.catalog-area {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
}

select {
  max-width: 220px;
  padding: 10px 12px;
}

.category-seo {
  padding: 18px;
  margin-bottom: 14px;
  border-color: var(--red);
}

.category-seo h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 24px;
}

.category-seo p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  border-color: var(--line);
  background: var(--black-2);
  overflow: hidden;
  transition: border-color 160ms ease;
  --card-accent: var(--red);
  --card-tint: #240306;
}

.product-card:hover {
  border-color: var(--card-accent);
}

.product-card--netflix,
.promo-card--netflix,
.product-card--youtube,
.promo-card--youtube {
  --card-accent: #e50914;
  --card-tint: #2b0307;
  border-color: rgba(229, 9, 20, 0.42);
}

.product-card--xbox,
.promo-card--xbox,
.product-card--duolingo,
.promo-card--duolingo {
  --card-accent: #1f8f45;
  --card-tint: #062414;
  border-color: rgba(31, 143, 69, 0.42);
}

.product-card--playstation,
.promo-card--playstation {
  --card-accent: #2374ff;
  --card-tint: #071c3f;
  border-color: rgba(35, 116, 255, 0.42);
}

.product-card--chatgpt,
.promo-card--chatgpt {
  --card-accent: #16a085;
  --card-tint: #062822;
  border-color: rgba(22, 160, 133, 0.42);
}

.product-card--supergrok,
.promo-card--supergrok {
  --card-accent: #33d6ff;
  --card-tint: #062330;
  border-color: rgba(51, 214, 255, 0.42);
}

.product-card--views,
.promo-card--views {
  --card-accent: #2374ff;
  --card-tint: #071c3f;
  border-color: rgba(35, 116, 255, 0.42);
}

.product-card--google,
.promo-card--google {
  --card-accent: #f4b400;
  --card-tint: #302407;
  border-color: rgba(244, 180, 0, 0.44);
}

.product-card--icloud,
.promo-card--icloud {
  --card-accent: #8cc8ff;
  --card-tint: #0b2133;
  border-color: rgba(140, 200, 255, 0.44);
}

.product-card--tradingview,
.promo-card--tradingview,
.product-card--default,
.promo-card--default {
  --card-accent: #7a5cff;
  --card-tint: #171333;
  border-color: rgba(122, 92, 255, 0.42);
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.product-identity {
  display: flex;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 12px;
  min-width: 0;
}

.product-brand {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.promo-card .product-brand,
.product-card .product-brand {
  border-color: var(--card-accent);
  background: var(--card-tint);
}

.product-brand > span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.product-brand--small {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
}

.product-brand--small > span {
  font-size: 12px;
}

.product-brand--netflix {
  color: var(--red);
  font-size: 28px;
}

.product-brand--netflix > span {
  font-size: 28px;
}

.product-brand--youtube {
  background: var(--card-accent, var(--red));
}

.product-brand--youtube > span {
  width: 28px;
  height: 20px;
  border-radius: 5px;
  background: var(--white);
  font-size: 0;
}

.product-brand--youtube > span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--card-accent, var(--red));
}

.product-brand--xbox > span,
.product-brand--duolingo > span,
.product-brand--chatgpt > span,
.product-brand--tradingview > span {
  border: 1px solid var(--card-accent, var(--red));
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
}

.product-brand--views > span {
  width: 34px;
  height: 20px;
  border: 2px solid var(--white);
  border-radius: 999px;
  font-size: 0;
}

.product-brand--views > span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--card-accent, var(--red));
}

.product-brand--small.product-brand--youtube > span {
  width: 21px;
  height: 15px;
  border-radius: 4px;
}

.product-brand--small.product-brand--youtube > span::before {
  top: 3px;
  left: 8px;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 7px;
}

.product-brand--small.product-brand--xbox > span,
.product-brand--small.product-brand--duolingo > span,
.product-brand--small.product-brand--chatgpt > span,
.product-brand--small.product-brand--tradingview > span {
  width: 22px;
  height: 22px;
}

.product-brand--small.product-brand--views > span {
  width: 24px;
  height: 14px;
}

.product-brand--small.product-brand--views > span::before {
  top: 4px;
  left: 9px;
  width: 6px;
  height: 6px;
}

.product-body {
  min-height: 0;
  overflow: hidden;
}

.product-body h3,
.product-body p,
.product-points li {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.product-card h3 {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.25;
  -webkit-line-clamp: 2;
}

.product-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.promo-card .product-body h3 {
  -webkit-line-clamp: 2;
}

.promo-card .product-body p,
.product-summary {
  -webkit-line-clamp: 2;
}

.product-seo-copy {
  -webkit-line-clamp: 2;
}

.product-card ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.product-card li {
  font-size: 13px;
  -webkit-line-clamp: 1;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.sale {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.tag.sold-out {
  border-color: var(--line);
  background: var(--black-3);
  color: var(--muted);
}

.promo-card .tag:not(.sale),
.product-card .tag:not(.sale) {
  border-color: var(--card-accent);
  background: var(--card-tint);
}

.price {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  white-space: nowrap;
}

.product-card .button {
  width: 100%;
  align-self: end;
  margin-top: 16px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 32px;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 0;
}

.pagination span {
  color: var(--muted);
  font-weight: 800;
  padding: 0 6px;
}

.page-button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.page-button:hover,
.page-button.is-active {
  background: var(--red);
}

.page-button:disabled {
  cursor: not-allowed;
  border-color: var(--line);
  color: var(--muted);
  background: var(--black-2);
}

.content-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding: 30px;
  border-color: var(--red);
}

.content-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.process {
  padding: 72px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps article {
  padding: 22px;
}

.steps span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.steps h3 {
  margin: 18px 0 8px;
}

.steps p {
  margin: 0;
}

.faq {
  padding: 72px 0;
}

.faq details {
  padding: 18px 20px;
  margin-bottom: 10px;
}

.faq details[open] {
  border-color: var(--red);
}

.faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
}

.legal-section {
  padding: 72px 0 0;
}

.privacy-section {
  padding-top: 42px;
}

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

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

.legal-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
}

.legal-grid article:first-child {
  border-color: var(--red);
}

.legal-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-grid a,
.footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.company-data {
  display: grid;
  gap: 10px;
  margin: 0;
}

.company-data div {
  display: grid;
  gap: 3px;
}

.company-data dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  color: var(--white);
  line-height: 1.45;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 38px;
  border-top: 1px solid var(--red);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.cart-drawer,
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open,
.checkout-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.cart-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100%;
  padding: 22px;
  border-left: 1px solid var(--red);
  background: var(--black);
  transform: translateX(100%);
  transition: transform 200ms ease;
}

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

.cart-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--red);
}

.cart-panel h2 {
  font-size: 34px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--red);
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.icon-button:hover {
  background: var(--red);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 0;
  overflow: auto;
}

.cart-empty {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
}

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

.cart-item-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.cart-item h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.cart-item small {
  color: var(--muted);
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-controls {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qty-controls button,
.remove-item {
  border: 0;
  background: var(--black);
  color: var(--white);
}

.qty-controls button {
  width: 34px;
  height: 32px;
  font-weight: 900;
}

.qty-controls span {
  display: grid;
  min-width: 36px;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.remove-item {
  padding: 8px 10px;
  border-radius: var(--radius);
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--red);
}

.coupon-box {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
}

.coupon-box > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-row input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  outline: none;
}

.coupon-row input:focus {
  border-color: var(--red);
}

.coupon-box small {
  color: var(--muted);
  line-height: 1.45;
}

.coupon-box small.is-success {
  color: #2ee66f;
}

.coupon-box-modal {
  margin: 12px 0;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 18px;
}

.cart-summary .coupon-box {
  display: grid;
  justify-content: stretch;
  font-size: 14px;
}

.cart-summary span {
  color: var(--muted);
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--black);
  transform: translate(-50%, -48%) scale(0.98);
  transition: transform 180ms ease;
}

.checkout-modal.is-open .modal-panel {
  transform: translate(-50%, -50%) scale(1);
}

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

.modal-panel h2 {
  padding-right: 42px;
  font-size: 40px;
}

.modal-panel p {
  margin: 14px 0 0;
}

.modal-panel small {
  display: block;
  margin-top: 14px;
}

.checkout-actions .button {
  flex: 1 1 150px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 104px;
  z-index: 100;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .opening-coupon,
  .promo-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-main {
    min-height: auto;
    padding: 28px;
  }

  .hero-aside,
  .trust-strip,
  .seo-grid,
  .steps,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

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

  .filters {
    order: 2;
    position: static;
  }

  .catalog-area {
    order: 1;
  }

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

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

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

@media (max-width: 620px) {
  .site-shell {
    padding-top: 66px;
  }

  .topbar,
  .opening-coupon,
  .elite-deals,
  .promo-slider,
  .hero,
  .trust-strip,
  .seo-intro,
  .section-heading,
  .shop-layout,
  .content-band,
  .process,
  .faq,
  .legal-section,
  .footer {
    width: min(100% - 20px, var(--max));
  }

  .topbar {
    margin-top: 0;
    padding: 10px;
  }

  .floating-cart-button {
    right: 14px;
    bottom: 14px;
    width: 60px;
    height: 60px;
  }

  .floating-cart-icon {
    width: 27px;
    height: 22px;
  }

  .elite-deal-grid {
    grid-template-columns: 1fr;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }

  .brand-copy small {
    display: none;
  }

  .cart-button span {
    display: none;
  }

  .hero-main {
    padding: 22px;
  }

  .promo-track {
    grid-auto-columns: minmax(260px, calc(100vw - 54px));
  }

  .hero-main p {
    font-size: 16px;
  }

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

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

  select {
    max-width: none;
  }

  .content-band {
    padding: 22px;
  }

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