@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400&display=swap");

:root {
  --bg: #0c0d12;
  /* Deep Navy Charcoal */
  --bg-deep: #050608;
  --surface: #13141c;
  --surface-2: #1a1c26;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #ffffff;
  --muted: #8e95b0;
  --accent: #ffffff;
  --accent-contrast: #000000;
  --accent-2: #3048ff;
  --accent-3: #ff234b;
  --accent-purple: #9e25ff;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  --panel: #13141c;
  --panel-2: #1a1c26;
  --panel-3: #222533;
  --ink: #ffffff;
  --ink-soft: #8e95b0;
  --hero-bg: #0c0d12;
  --hero-grid: rgba(255, 255, 255, 0.02);
  --hero-title: #ffffff;
  --hero-copy: #8e95b0;
  --section-bg-1: #0c0d12;
  --section-bg-2: #0c0d12;
  --section-bg-3: #0c0d12;
  --section-bg-4: #0c0d12;
  --card-bg: #13141c;
  --card-border: rgba(255, 255, 255, 0.06);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --badge-bg: #ffffff;
  --badge-text: #000000;
  --dot: rgba(255, 255, 255, 0.15);
  --dot-active: #ffffff;
  --cookie-bg: #13141c;
  --cookie-text: #8e95b0;
  --cookie-link: #ffffff;
  --action-bg: #ffffff;
  --action-text: #000000;
  --price-main: #ffffff;
  --price-old: #5c627a;
  --price-discount-bg: #ffffff;
  --price-discount-text: #000000;
  --scroll-track: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(48, 72, 255, 0.1) 100%);
  --scroll-thumb: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(158, 37, 255, 0.88) 48%, rgba(48, 72, 255, 0.95) 100%);
  --scroll-thumb-hover: linear-gradient(180deg, #ffffff 0%, #ff4f70 38%, #3048ff 100%);
  --scroll-thumb-shadow: rgba(48, 72, 255, 0.35);
  --step-active-color: #ff6b4a;
  --step-active-color-rgb: 255, 107, 74;

  /* Smoothing Variables */
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --transition-fast: 200ms var(--ease-out);
  --transition-normal: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-in-out);
}

html[data-theme="dark"] {
  --accent: #ffffff;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

html,
body,
#app {
  min-height: 100%;
}

html,
body,
.shell {
  overflow-x: clip;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
}

body.modal-open {
  overflow: hidden !important;
}

html.splash-scroll-locked,
body.splash-scroll-locked {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.splash-scroll-locked {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  touch-action: none;
}

.app-main-content {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}

body.is-product-transitioning {
  overflow: hidden !important;
}

body.is-product-transitioning .app-main-content {
  transform: scale(0.985);
  filter: blur(14px);
  opacity: 0.22;
  pointer-events: none;
}

[data-aos] {
  will-change: transform, opacity;
}

/* Production Polish: Custom Premium Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--step-active-color-rgb), 0.92) rgba(255, 255, 255, 0.04);
  transition: scrollbar-color 0.35s ease;
}

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

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--scroll-track);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 999px;
  border: 3px solid rgba(12, 13, 18, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 24px var(--scroll-thumb-shadow);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(255, 79, 112, 0.28);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Smooth Section Reveals */
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-section.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Full Sketchy Button Style (Double-Line) */
.btn-sketch {
  position: relative !important;
  background: transparent !important;
  border: none !important;
  /* Managed by pseudo-elements */
  color: var(--accent) !important;
  padding: 14px 28px !important;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 10;
}

.btn-sketch::before,
.btn-sketch::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.3s ease;
}

.btn-sketch::before {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  transform: rotate(-1.2deg) scaleX(1.05) scaleY(1.1);
}

.btn-sketch::after {
  border-radius: 3px 250px 5px 240px/250px 5px 240px 5px;
  transform: rotate(0.8deg) scaleX(1.02) scaleY(1.08);
  opacity: 0.5;
}

.btn-sketch:hover {
  transform: scale(1.05);
}

.btn-sketch:hover::before {
  transform: rotate(0deg) scale(1.05);
}

.btn-sketch:hover::after {
  transform: rotate(-0.5deg) scale(1.08);
  opacity: 0.8;
}

/* Production Polish: Premium Text Selection */
::selection {
  background: rgba(255, 126, 0, 0.25);
  color: #fff;
}

/* Production Polish: Focus Outline Overrides */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.4);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(-115%);
}

body.theme-sweep-light::after,
body.theme-sweep-dark::after {
  animation: themeSweep 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

body.theme-sweep-light::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 236, 178, 0.32), rgba(255, 236, 178, 0.03) 34%, transparent 54%),
    linear-gradient(180deg, rgba(255, 244, 208, 0.56), rgba(255, 214, 160, 0.16) 42%, rgba(255, 255, 255, 0) 78%);
}

body.theme-sweep-dark::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(197, 255, 0, 0.12), rgba(197, 255, 0, 0.02) 34%, transparent 56%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.72), rgba(31, 32, 36, 0.22) 42%, rgba(255, 255, 255, 0) 78%);
}

.shell {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.cart-item-media {
  width: 80px;
  flex: 0 0 80px;
  text-decoration: none;
}

.cart-item-media__frame {
  width: 80px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 52%, transparent 78%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.cart-item-media__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.ambient-field {
  display: none;
}

.ambient-blobs {
  contain: layout paint;
}

.shell>*:not(.ambient-field) {
  position: relative;
  z-index: 1;
}

.product-page {
  padding-top: 120px;
}

.product-page-shell {
  padding: 20px 24px 72px;
}

.section-stepper {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 120;
  transform: translateY(-50%);
  display: none;
}

.section-stepper[hidden] {
  display: none !important;
}

.section-stepper__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  align-items: center;
}

.section-stepper__rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 1px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
}


.section-stepper__node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.section-stepper__dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 6px 14px rgba(0, 0, 0, 0.16);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.section-stepper__node:hover .section-stepper__dot,
.section-stepper__node.is-active .section-stepper__dot {
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

.section-stepper__orb {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050608;
  background: var(--step-color, #ff6b4a);
  box-shadow:
    0 10px 26px color-mix(in srgb, var(--step-color, #ff6b4a) 30%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  will-change: transform, background-color;
  pointer-events: none;
}

.section-stepper__orb iconify-icon {
  font-size: 12px;
}

@media (min-width: 1280px) {
  .section-stepper {
    display: block;
  }
}

@media (max-width: 1024px) {
  .ambient-blobs {
    opacity: 0.18 !important;
  }

  .ambient-blobs > div {
    animation: none !important;
    filter: blur(80px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-blobs > div,
  [data-scroll-step].is-step-active::after {
    animation: none !important;
  }
}

[data-scroll-step] {
  position: relative;
  isolation: isolate;
}

[data-scroll-step]::after {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 25%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 12%, transparent), transparent 38%),
    radial-gradient(circle at 78% 72%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 10%, transparent), transparent 42%);
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.985);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll-step].is-step-active::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: sectionGlowDrift 10s ease-in-out infinite alternate;
}

@keyframes sectionGlowDrift {
  0% {
    background:
      radial-gradient(circle at 18% 26%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 12%, transparent), transparent 38%),
      radial-gradient(circle at 80% 70%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 10%, transparent), transparent 42%);
  }

  50% {
    background:
      radial-gradient(circle at 26% 34%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 13%, transparent), transparent 40%),
      radial-gradient(circle at 72% 64%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 11%, transparent), transparent 44%);
  }

  100% {
    background:
      radial-gradient(circle at 22% 30%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 12%, transparent), transparent 39%),
      radial-gradient(circle at 76% 68%, color-mix(in srgb, var(--section-glow-color, #ff6b4a) 10%, transparent), transparent 43%);
  }
}

.product-page-container {
  max-width: 1480px;
  margin: 0 auto;
}

.product-transition-source {
  opacity: 0 !important;
}

.product-card-transition-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199998;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(48, 72, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 13, 18, 0.18), rgba(5, 6, 8, 0.96));
  transition: opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-transition-backdrop.is-active {
  opacity: 1;
}

.product-card-transition-ghost {
  position: fixed;
  z-index: 199999;
  margin: 0;
  pointer-events: none;
  will-change: top, left, width, height, transform, border-radius, box-shadow, filter;
  overflow: hidden;
  transform: translateZ(0) scale(1);
  transition:
    top 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease;
}

.product-card-transition-ghost.is-active {
  top: var(--product-transition-target-top);
  left: var(--product-transition-target-left);
  width: var(--product-transition-target-width);
  height: var(--product-transition-target-height);
  border-radius: 30px;
  transform: translateZ(0) scale(1.02);
  box-shadow: 0 48px 140px rgba(0, 0, 0, 0.46);
  filter: saturate(1.06) brightness(1.04);
}

.product-card-transition-ghost .premium-card__image,
.product-card-transition-ghost .rec-image-wrap img {
  transition: transform 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-transition-ghost.is-active .premium-card__image,
.product-card-transition-ghost.is-active .rec-image-wrap img {
  transform: scale(1.12);
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.3));
}

.product-card-transition-ghost .premium-card__glow {
  transition: opacity 0.56s ease;
}

.product-card-transition-ghost.is-active .premium-card__glow {
  opacity: 0.95;
}

.product-page-container--empty {
  min-height: 60vh;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
}


.mobile-toggle {
  display: none;
}


.catalog-shell {
  padding: 160px 24px 10px;
}

.catalog-shell__inner {
  display: grid;
  gap: 22px;
}

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

.catalog-shell__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-shell__title {
  margin: 0;
  color: var(--hero-title);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
}

.catalog-shell__copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.catalog-banner {
  min-height: 154px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: 4px;
}

.catalog-banner__label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-banner__subtitle {
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.catalog-shell__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.catalog-sidebar,
.catalog-main {
  background: transparent;
  box-shadow: none;
}

.catalog-sidebar {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.catalog-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.catalog-sidebar__head button,
.catalog-toolbar__meta button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.catalog-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 0 0 12px;
  border-left: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.catalog-filter:hover {
  color: var(--text);
  border-left-color: var(--accent);
}

.catalog-main {
  padding: 18px;
  display: grid;
  gap: 18px;
}

html[data-theme="dark"] .catalog-sidebar,
html[data-theme="dark"] .catalog-main,
html[data-theme="dark"] .catalog-chip,
html[data-theme="dark"] .catalog-filter {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalog-search {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-search input {
  width: min(320px, 100%);
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.catalog-search input:focus {
  border-color: var(--accent);
}

.catalog-toolbar__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.catalog-products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
}

.catalog-products--paged {
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

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

.product-carousel>* {
  scroll-snap-align: start;
}

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

.carousel-controls--compact {
  gap: 8px;
}

.carousel-control {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.catalog-product {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.catalog-product:hover {
  box-shadow: var(--card-shadow);
}

.catalog-product__link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-product__media {
  aspect-ratio: 2/3;
  height: auto;
  /* Let aspect-ratio handle height */
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--surface-2);
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-product__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.catalog-product__badge,
.catalog-product__platform {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
}

.catalog-product__badge {
  background: rgba(94, 107, 255, 0.12);
  color: var(--accent);
}

.catalog-product__platform {
  background: rgba(26, 34, 51, 0.06);
  color: var(--ink-soft);
}

.catalog-product__title {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
}

.catalog-product__subtitle {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-product__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.catalog-product__price {
  color: var(--price-main);
  font-size: 18px;
  font-weight: 800;
}

.catalog-product__button {
  width: 100%;
  height: 44px;
  margin-top: 18px;
  border: 0;
  border-radius: 4px;
  background: var(--action-bg);
  color: var(--action-text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-product__link,
.search-result-card__link,
.cart-item__link,
.deal-card,
.pick-card,
.rec-card {
  color: inherit;
  text-decoration: none;
}

.search-results-list {
  display: grid;
  gap: 10px;
}

.search-result-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.search-result-row__link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.search-result-row__media {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-row__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.search-result-row__content {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.search-result-row__copy {
  min-width: 0;
}

.search-result-row__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-row__meta {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-row__aside {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-result-row__price {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.search-result-row__arrow {
  color: rgba(255, 255, 255, 0.22);
  font-size: 18px;
  line-height: 1;
}

.search-result-row .premium-card__image--placeholder {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.catalog-empty {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 24px;
  background: var(--surface);
  border: 1px dashed var(--line);
}

.catalog-empty__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-empty__title {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
}

.catalog-empty__copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.catalog-pagination__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-pagination__nav,
.catalog-pagination__page {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.catalog-pagination__page.is-active {
  background: var(--action-bg);
  border-color: var(--action-bg);
  color: var(--action-text);
}

.catalog-pagination__nav:disabled,
.catalog-pagination__page:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-stage {
  position: relative;
  background: var(--section-bg-1);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
}

.hero-cover-grid {
  position: absolute;
  inset: -200px -100px 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-deep);
  perspective: 2000px;
  perspective-origin: 50% 50%;
  opacity: 0.22;
  animation: gridReveal3D 3.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes gridReveal3D {
  0% {
    transform: translateZ(-200px) rotateX(40deg) rotateY(-25deg);
    opacity: 0;
  }

  100% {
    transform: translateZ(0) rotateX(25deg) rotateY(-20deg);
    opacity: 0.22;
  }
}

.hero-cover-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform-style: preserve-3d;
}

.hero-cover-row {
  display: flex;
  gap: 24px;
  width: max-content;
  transform-style: preserve-3d;
}

.hero-cover-item {
  width: 160px;
  height: 230px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  background-color: var(--surface-2);
  flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease;
}

.hero-cover-row--1,
.hero-cover-row--3,
.hero-cover-row--5 {
  animation: coverScrollLeft 120s linear infinite;
}

.hero-cover-row--2,
.hero-cover-row--4 {
  animation: coverScrollRight 140s linear infinite;
}

@keyframes coverScrollLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes coverScrollRight {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.hero-cover-grid__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, transparent 20%, var(--bg) 110%);
  z-index: 1;
}

.hero-showcase {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 40px 24px;
  color: var(--text);
}

.hero-showcase__video-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 1800px;
}

.hero-video-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  opacity: 0.1;
  background: var(--surface-2);
}

.hero-video-card--left {
  top: 88px;
  left: -2%;
  width: 26vw;
  min-width: 260px;
  max-width: 420px;
  aspect-ratio: 10 / 14;
}

.hero-video-card--center {
  top: 60px;
  right: 14%;
  width: 22vw;
  min-width: 240px;
  max-width: 360px;
  aspect-ratio: 9 / 16;
}

.hero-video-card--right {
  right: -3%;
  bottom: 100px;
  width: 30vw;
  min-width: 280px;
  max-width: 460px;
  aspect-ratio: 16 / 10;
}

.hero-video-card__media,
.hero-video-card__veil {
  position: absolute;
  inset: 0;
}

.hero-video-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.7);
}

.hero-video-card__veil {
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.2), rgba(6, 10, 18, 0.72)),
    radial-gradient(circle at top, rgba(122, 134, 255, 0.18), transparent 48%);
}

.hero-showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
  background-size: 122px 122px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 96%);
  pointer-events: none;
}

.hero-showcase__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bubble {
  display: none;
}

@media (max-width: 980px) {

  .catalog-shell__intro,
  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .catalog-products {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .catalog-search {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-search input {
    width: 100%;
  }
}

.hero-showcase__cards,
.hero-showcase__content,
.hero-showcase__categories {
  position: relative;
  z-index: 1;
}

.hero-showcase__cards {
  max-width: 1220px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  animation: heroFloatIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.promo-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid var(--card-border);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 18, 0.02), rgba(9, 12, 18, 0.06));
  opacity: 0.6;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.promo-card--sky {
  background: #3b82f6;
}

.promo-card--lime {
  background: #10b981;
}

.promo-card--violet {
  background: #8b5cf6;
}

.promo-card--emerald {
  background: #059669;
}

.promo-card--image {
  background-color: var(--surface-2);
}

.hero-showcase__content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-showcase__eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-showcase__title {
  margin: 0 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--hero-title);
  animation: floatUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-showcase__copy {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--hero-copy);
  font-size: 18px;
  line-height: 1.6;
  animation: floatUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-showcase__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: floatUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-showcase__stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
  border-radius: 4px;
}

html[data-theme="dark"] .hero-stat {
  background: linear-gradient(180deg, rgba(14, 24, 40, 0.88), rgba(8, 14, 25, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stat__value {
  display: block;
  color: var(--hero-title);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1;
}

.hero-stat__label {
  display: block;
  margin-top: 8px;
  color: var(--hero-copy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-cta {
  min-width: 220px;
  padding: 18px 32px;
  border: 1px solid transparent;
  appearance: none;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.hero-cta--accent {
  background: var(--accent);
  color: #000;
}

.hero-cta--accent:hover {
  background: #f4f8ff;
  transform: translateY(-2px);
}

.hero-cta--light {
  background: transparent;
  border-color: var(--line);
  color: #fff;
}

.hero-cta--light:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.hero-cta--accent {
  background: var(--action-bg);
  color: var(--action-text);
  box-shadow: none;
}

.hero-cta--light {
  background: rgba(255, 255, 255, 0.72);
  color: #1a2332;
  box-shadow: none;
}

.hero-showcase__categories {
  max-width: 1280px;
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 14px;
  animation: heroFloatIn 1.25s cubic-bezier(0.2, 0.8, 0.2, 1) 0.16s both;
}

.showcase-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: rgba(43, 53, 74, 0.9);
  transition: transform 0.2s ease;
}

.showcase-category:hover {
  transform: translateY(-4px);
}

.showcase-category__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.showcase-category:hover .showcase-category__icon {
  border-color: var(--accent);
  background: var(--surface-2);
}

.showcase-category__icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 14px;
  width: 26px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  filter: none;
}

.showcase-category__image {
  width: 42px;
  height: 42px;
  display: inline-flex;
  color: #23314a;
  opacity: 0.96;
  filter: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(1px);
}

.showcase-category__label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(61, 71, 91, 0.88);
  max-width: 110px;
}

/* Sketch Divider */
.section-divider {
  position: relative;
}

.divider-platforms {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.divider-platforms__item {
  position: absolute;
  display: block;
  width: 94px;
  height: 94px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: center;
  animation: lineDrift 16s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  pointer-events: none;
  transition: transform 320ms ease, filter 320ms ease, opacity 320ms ease;
}

.divider-platforms__item:nth-child(1) {
  left: 14%;
  top: -2px;
  animation-duration: 17.2s;
  animation-delay: -3.2s;
}

.divider-platforms__item:nth-child(2) {
  left: 46%;
  top: -6px;
  width: 86px;
  height: 86px;
  animation-duration: 15.6s;
  animation-delay: -1.4s;
}

.divider-platforms__item:nth-child(3) {
  right: 14%;
  top: -2px;
  width: 98px;
  height: 98px;
  animation-duration: 18.4s;
  animation-delay: -5.1s;
}

#picks-stage .divider-platforms__item:nth-child(1) {
  left: 12%;
  top: -2px;
}

#picks-stage .divider-platforms__item:nth-child(2) {
  left: 46%;
  top: -6px;
}

#picks-stage .divider-platforms__item:nth-child(3) {
  right: 12%;
  top: -2px;
}

#services-stage .divider-platforms__item:nth-child(1) {
  left: 10%;
  top: -1px;
}

#services-stage .divider-platforms__item:nth-child(2) {
  left: 46%;
  top: -6px;
}

#services-stage .divider-platforms__item:nth-child(3) {
  right: 10%;
  top: -1px;
}

@keyframes lineDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(-3deg);
  }

  25% {
    transform: translate3d(22px, -1px, 0) scale(1.03) rotate(1deg);
  }

  50% {
    transform: translate3d(-16px, 1px, 0) scale(1.04) rotate(3deg);
  }

  75% {
    transform: translate3d(14px, 0, 0) scale(1.02) rotate(-1deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(-3deg);
  }
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='20' viewBox='0 0 1000 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 C100,10 150,5 250,5 C350,5 400,15 500,15 C600,15 650,5 750,5 C850,5 900,10 1000,10' stroke='rgba(255,255,255,0.18)' stroke-width='2' fill='none' stroke-linecap='round' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1000px 20px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  animation: waveSketch 12s ease-in-out infinite;
}

@keyframes waveSketch {
  0% {
    background-position-x: 0;
    transform: translateY(0);
  }

  50% {
    background-position-x: 400px;
    transform: translateY(-6px);
  }

  100% {
    background-position-x: 800px;
    transform: translateY(0);
  }
}

.doodle-xbox,
.doodle-ps5,
.doodle-gc {
  opacity: 0.22;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.16));
  mix-blend-mode: screen;
  transition: all 0.5s ease;
}

.divider-platforms__item:hover.doodle-xbox,
.divider-platforms__item:hover.doodle-ps5,
.divider-platforms__item:hover.doodle-gc,
.divider-platforms__item:active.doodle-xbox,
.divider-platforms__item:active.doodle-ps5,
.divider-platforms__item:active.doodle-gc {
  opacity: 0.5;
}

.doodle-gc {
  background-image: url("/gc.png");
  opacity: 0.28;
  filter: drop-shadow(0 16px 34px rgba(255, 200, 0, 0.08)) saturate(0.82);
}

.doodle-xbox {
  background-image: url("/xbox.png");
  filter: drop-shadow(0 16px 34px rgba(16, 124, 16, 0.08)) saturate(0.8);
}

.doodle-ps5 {
  background-image: url("/ps5.png");
  filter: drop-shadow(0 16px 34px rgba(0, 112, 209, 0.08)) saturate(0.8);
}

@media (max-width: 640px) {
  .divider-platforms {
    inset: 0;
  }

  .divider-platforms__item {
    width: 62px;
    height: 62px;
  }

  .divider-platforms__item:nth-child(2) {
    width: 58px;
    height: 58px;
  }

  .divider-platforms__item:nth-child(1) {
    left: 2%;
    top: 0;
  }

  .divider-platforms__item:nth-child(3) {
    right: 2%;
    top: 0;
    width: 78px;
    height: 78px;
  }

  #services-stage .divider-platforms__item:nth-child(2),
  #picks-stage .divider-platforms__item:nth-child(2) {
    left: 42%;
    top: -4px;
  }
}

.deals-section {
  padding: 100px 24px;
  background: var(--section-bg-2);
}

.picks-section {
  padding: 100px 24px;
  background: var(--section-bg-3);
}

.deals-section__inner,
.picks-section__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  /* Prevent overlap on small screens */
}

.section-heading__eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

.section-heading__copy {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.deals-section__title {
  margin: 0;
  text-align: left;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.deals-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  align-items: stretch;
}

.premium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 0.88;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(180deg, #12131a 0%, #08090d 100%);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.premium-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.premium-card__actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
}

.wishlist-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, color 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
}

.wishlist-btn:hover {
  color: #fff;
  transform: scale(1.06);
}

.premium-card__image-container {
  position: relative;
  flex: 1 1 auto;
  min-height: 264px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 24px 18px;
  overflow: hidden;
  background: transparent;
}

.premium-card__image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 64%;
  max-height: 64%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  filter: none;
  transition: transform 0.35s ease;
}

.premium-card:hover .premium-card__image {
  transform: scale(1.03);
}

.premium-card__image-container > div.premium-card__image {
  width: 138px;
  height: 138px;
  min-height: 0 !important;
}

.premium-card__image--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.26);
}

.premium-card__placeholder-mark {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
}

.premium-card__glow {
  display: none;
}

.premium-card__info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  padding: 0 18px 18px;
}

.premium-card__copy {
  min-width: 0;
}

.premium-card__title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.25em * 2);
}

.premium-card__subtitle {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.premium-card__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-left: 12px;
}

.premium-card__price {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.premium-card__add-btn {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.72);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.premium-card__add-btn:hover {
  background: rgba(26, 26, 26, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}

.premium-card:hover .premium-card__add-btn,
.premium-card:focus-within .premium-card__add-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (hover: none) {
  .premium-card__info {
    padding-bottom: 56px;
  }

  .premium-card__add-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.deal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)), var(--surface-2);
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.deal-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.deal-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background-color: var(--surface);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.deal-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.deal-card:hover .deal-card__img {
  transform: scale(1.04);
}

.deal-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.deal-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.deal-card__pill {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}

.deal-card__platform {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.1;
}

.deal-card__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
  min-height: calc(1.35em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.deal-card__pricing {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.deal-card__old {
  color: var(--price-old);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
}

.deal-card__new {
  color: var(--price-main);
  font-size: 22px;
  font-weight: 900;
}

.product-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(99, 102, 241, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: rgba(255, 255, 255, 0.26);
}

.product-image-fallback__icon {
  font-size: 42px;
}

.deal-card__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
}

.deal-card__button {
  width: 100%;
  height: 44px;
  margin-top: 2px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line) 82%);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.deals-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.deals-dots__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot);
}

.deals-dots__dot.is-active {
  background: var(--dot-active);
}

.picks-section {
  background: var(--section-bg-3);
  padding: 100px 24px 96px;
  /* Fixed small top padding */
}

.picks-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.picks-section__title {
  margin: 0;
  text-align: left;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.picks-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
}

.pick-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pick-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.pick-card__media {
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--surface);
  overflow: hidden;
}

.pick-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pick-card__platform {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.15em;
}

.pick-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 16px 0;
}

.pick-card__pricing {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pick-card__new {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

.services-section {
  background: var(--section-bg-4);
  padding: 18px 24px 96px;
}

.services-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  align-content: start;
  gap: 12px;
  transition: all 0.2s ease;
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 24px;
}

.service-card__title {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.service-card__copy {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

/* Professional Footer Redesign */
.site-footer {
  background: #050608;
  color: #fff;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.footer-trust {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}

.footer-trust__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px 0;
  letter-spacing: 0.02em;
}

.trust-text p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-main {
  padding-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 24px;
}

.footer-bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--accent-contrast);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: 30px 0;
  background: #000;
  border-top: 1px solid var(--line);
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--muted);
  font-size: 13px;
}

.payment-methods {
  display: flex;
  gap: 10px;
}

.pm-badge {
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .footer-trust__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__heading {
  margin: 0 0 8px;
  color: #f4f8ff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer__link {
  display: inline-flex;
  width: fit-content;
  color: rgba(226, 234, 247, 0.72);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
}

.site-footer__link--button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-footer__link:hover {
  color: #ffffff;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.site-footer__social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(144, 170, 214, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f8ff;
  text-decoration: none;
  font-size: 18px;
}

.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__coop {
  margin: 20px 0 0;
  color: rgba(226, 234, 247, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer__coop a {
  color: #f6f9ff;
  text-decoration: none;
  margin-left: 8px;
}

.site-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 28px;
  border-top: 1px solid rgba(144, 170, 214, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(226, 234, 247, 0.56);
  font-size: 13px;
}

.site-footer__payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__payment-icon {
  font-size: 28px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.25s ease;
  cursor: pointer;
}

.site-footer__payment-icon:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.picks-section__action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.picks-section__catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 255px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--action-bg);
  color: var(--action-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  box-shadow: none;
}

.cookie-widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 24px;
  background: var(--bg-deep);
  color: var(--cookie-text);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}



.cookie-widget__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.cookie-widget__text {
  flex: none;
  max-width: 800px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-widget__text a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.cookie-widget__button {
  flex-shrink: 0;
  height: 42px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s;
}

.cookie-widget__button:hover {
  transform: scale(1.05);
}

.cookie-widget__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.cookie-widget__button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 65%, white 35%);
  outline-offset: 3px;
}

@keyframes heroFloatIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -64px, -120px) rotateX(10deg) scale(0.97);
    filter: blur(10px);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 10px, 0) rotateX(-2deg) scale(1.01);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes cookieFloatIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes bubbleDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 50%;
  }

  25% {
    transform: translate3d(16px, -18px, 0) scale(1.06);
    border-radius: 44% 56% 52% 48% / 49% 42% 58% 51%;
  }

  50% {
    transform: translate3d(-10px, 14px, 0) scale(0.98);
    border-radius: 53% 47% 44% 56% / 45% 57% 43% 55%;
  }

  75% {
    transform: translate3d(12px, -8px, 0) scale(1.04);
    border-radius: 47% 53% 58% 42% / 54% 46% 54% 46%;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 50%;
  }
}

@keyframes themeSweep {
  0% {
    opacity: 0;
    transform: translateY(-115%);
  }

  18% {
    opacity: 0.95;
  }

  62% {
    opacity: 0.42;
    transform: translateY(0%);
  }

  100% {
    opacity: 0;
    transform: translateY(115%);
  }
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ambientPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }

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

@keyframes strandSway {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(18px) rotate(4deg);
  }
}

@keyframes electricSweep {
  0% {
    opacity: 0.12;
    box-shadow: 0 0 10px rgba(122, 134, 255, 0.04);
  }

  50% {
    opacity: 0.45;
    box-shadow: 0 0 22px rgba(122, 134, 255, 0.12);
  }

  100% {
    opacity: 0.12;
    box-shadow: 0 0 10px rgba(122, 134, 255, 0.04);
  }
}

@keyframes sparkRun {

  0%,
  100% {
    opacity: 0;
    transform: translateX(-18px) scaleX(0.75);
  }

  20%,
  70% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
    transform: translateX(22px) scaleX(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-video-card,
  .hero-video-card__media,
  .cookie-widget,
  .ambient-field__glow,
  .ambient-field__arc,
  .ambient-field__spark,
  .ambient-field__strand,
  .hero-bubble,
  [data-aos] {
    animation: none !important;
    transition: none !important;
  }
}

 .search-overlay {
  overscroll-behavior: contain;
}

@media (max-width: 920px) {
  .search-overlay {
    padding: 0;
  }
}


@media (max-width: 1180px) {

  .hero-showcase__stats,
  .services-grid,
  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .deals-grid {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .picks-grid {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 920px) {
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .hero-showcase {
    min-height: auto;
    padding: 28px 18px 44px;
  }

  .ambient-field {
    opacity: 0.52;
  }

  .ambient-field__strand {
    width: 180px;
  }

  .ambient-field__arc--1,
  .ambient-field__arc--2,
  .ambient-field__arc--3 {
    width: 54vw;
    height: 18vw;
  }

  .hero-showcase__video-stage {
    opacity: 0.6;
  }

  .hero-video-card--left,
  .hero-video-card--center,
  .hero-video-card--right {
    min-width: 180px;
  }

  .hero-bubble--1,
  .hero-bubble--2,
  .hero-bubble--3 {
    opacity: 0.24;
    filter: blur(24px);
  }

  .hero-stage {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .hero-showcase__cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }

  .hero-showcase__stats,
  .services-grid,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 30px;
  }

  .site-footer__contact {
    font-size: 17px;
  }

  .site-footer__copy {
    font-size: 15px;
  }

  .site-footer__bottom {
    display: grid;
    justify-content: flex-start;
  }

  .cart-drawer {
    width: min(100vw, 420px);
    padding: 18px;
  }

  .cart-item-media,
  .cart-item-media__frame {
    width: 68px;
  }

  .cart-item-media {
    flex-basis: 68px;
  }

  .cart-item-media__frame {
    height: 92px;
  }

  .promo-card {
    min-height: 148px;
  }

  .hero-showcase__title {
    font-size: 42px;
  }

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

  .hero-showcase__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 16px;
  }

  .hero-showcase__categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
  }

  .showcase-category__icon {
    width: 64px;
    height: 64px;
  }

  .showcase-category__image {
    width: 36px;
    height: 36px;
  }

  .deals-section {
    padding: 54px 18px 72px;
  }

  .deals-section__title {
    margin-bottom: 34px;
  }

  .deals-grid {
    grid-auto-columns: 84%;
  }

  .catalog-products {
    grid-auto-columns: 84%;
  }

  .premium-card {
    aspect-ratio: 0.86;
  }

  .premium-card__image-container {
    min-height: 228px;
    padding-top: 44px;
  }

  .premium-card__title {
    font-size: 15px;
  }

  .premium-card__price {
    font-size: 18px;
  }

  .search-result-row__link {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .search-result-row__media {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .search-result-row__content {
    gap: 12px;
  }

  .search-result-row__title {
    font-size: 15px;
  }

  .search-result-row__meta {
    font-size: 12px;
  }

  .search-result-row__aside {
    gap: 10px;
  }

  .search-result-row__arrow {
    display: none;
  }

  .deal-card__media {
    aspect-ratio: 2/3;
    height: auto;
  }

  .picks-section {
    padding: 14px 18px 72px;
  }

  .picks-section__title {
    margin-bottom: 34px;
  }

  .picks-grid {
    grid-auto-columns: 84%;
  }

  .pick-card__media {
    aspect-ratio: 2/3;
    height: auto;
  }

  .catalog-product__media {
    aspect-ratio: 2/3;
    height: auto;
  }

  .cookie-widget {
    width: calc(100% - 24px);
    bottom: 12px;
    padding: 18px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-widget__button {
    width: 100%;
  }

  .hero-showcase__video-stage {
    display: none;
  }
}

/* Skeleton Ghost Loading Styles */
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes slow-blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.animate-slow-blob {
  animation: slow-blob 25s infinite ease-in-out;
}

@keyframes float-btn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#floating-chat-btn {
  animation: float-btn 3s infinite ease-in-out;
}

.catalog-product-skeleton,
.product-card,
.category-card,
.hero-parallax-cell,
.btn,
.nav-link,
.toast-card {
  will-change: transform, opacity;
  transition: transform var(--transition-fast), opacity var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.1);
}

.catalog-products--skeleton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.catalog-products--skeleton[hidden] {
  display: none !important;
}

.catalog-product-skeleton {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 4px;
}

.skeleton-media {
  width: 100%;
  height: 280px;
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite linear;
  margin-bottom: 16px;
  border-radius: 4px;
}

.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite linear;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-title {
  width: 80%;
  height: 18px;
}

.skeleton-price {
  width: 40%;
}

.skeleton-button {
  height: 44px;
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite linear;
  margin-top: 20px;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .catalog-products--paged {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .catalog-pagination {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .catalog-products--paged {
    grid-template-columns: 1fr;
  }
}

/* Fly to Cart Animation */
.flying-container {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
}

.flying-product {
  position: absolute;
  width: 80px;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fly-to-cart 0.8s cubic-bezier(0.13, 0.84, 0.76, 1.05) forwards;
  z-index: 999999;
}

@keyframes fly-to-cart {
  0% {
    left: var(--start-x);
    top: var(--start-y);
    transform: scale(1);
    opacity: 1;
  }

  30% {
    transform: scale(1.1);
    /* Brief expansion "jump" */
  }

  100% {
    left: var(--end-x);
    top: var(--end-y);
    transform: scale(0.1);
    opacity: 0;
  }
}

/* --- Premium Toast System --- */
.toast-container {
  position: fixed !important;
  top: 40px !important;
  right: 40px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 100000000;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  width: min(380px, calc(100vw - 32px));
  max-width: calc(100vw - 80px);
  overflow-x: clip;
  overflow-y: visible;
  contain: layout paint;
}

@media (max-width: 768px) {
  .toast-container {
    top: auto !important;
    bottom: 32px !important;
    right: 16px !important;
    left: 16px !important;
    width: auto !important;
    max-width: none;
    align-items: stretch;
  }
}

/* Floating Chat (Sketch Mode) */
.floating-chat-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 65px;
  height: 65px;
  background: transparent;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  z-index: 99999;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Organic Sketchy Shape */
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: sketchy-morph 8s ease-in-out infinite, sketchy-shake 4s ease-in-out infinite;
}

.floating-chat-btn::before,
.floating-chat-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid #fff;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.6;
}

.floating-chat-btn::after {
  transform: rotate(2deg) scale(1.05);
  border-style: solid;
  opacity: 0.3;
}

.floating-chat-btn:hover {
  transform: translateY(-8px) rotate(-3deg);
  background: rgba(255, 255, 255, 0.05);
}

@keyframes sketchy-morph {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

@keyframes sketchy-shake {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-3px) rotate(1deg);
  }

  75% {
    transform: translateY(3px) rotate(-1deg);
  }
}

@media (max-width: 1024px) {
  .floating-chat-btn {
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

.toast-card {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  max-width: 100%;
  animation: toast-slide-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-card--leaving {
  opacity: 0;
  transform: translateX(40px) scale(0.9);
  margin-top: -80px;
  /* Collapse space */
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.toast-card__avatar {
  width: 52px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.toast-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toast-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  font-size: 24px;
  color: var(--primary);
}

.toast-card__content {
  flex: 1;
  min-width: 0;
}

.toast-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toast-card__msg {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-card__close {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.toast-card__close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.toast-card__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.toast-card__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 100%;
  transform-origin: left;
  animation: toast-progress linear forwards;
}

@keyframes toast-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

/* Variant Styles */
.toast-card--success .toast-card__icon-wrap {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.toast-card--error .toast-card__icon-wrap {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.toast-card--info .toast-card__icon-wrap {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

/* Splash Screen */
.app-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  background: #0d0d0f !important;
  z-index: 900000 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(240px, calc(100vw - 48px));
}

.splash-loader-bar {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.splash-loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform-origin: left;
  animation: splash-fill 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes splash-fill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.splash-fade-enter-active,
.splash-fade-leave-active {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash-fade-leave-to {
  opacity: 0;
  transform: scale(1.1);
}

/* Z-Index Hierarchy */
.app-splash {
  z-index: 900000 !important;
}

.custom-cursor-wrapper {
  display: none !important;
}

@media (max-width: 1024px) {
  .custom-cursor-wrapper {
    display: none !important;
  }
}

.pointer-glow {
  display: none !important;
}

.product-detail-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide Main Shell when Modal is open to prevent any weird overlaps */
body.modal-open .app-main-content {
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.5;
  transition: all 0.4s ease;
}

/* Centered Sketchy Modal for Product Info */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80000;
  /* Lower than TopNavbar (99999) */
  background: #050608 !important;
  backdrop-filter: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 40px 40px;
  /* Offset for navbar */
  animation: backdropFadeIn 0.4s ease both;
}

@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.product-modal-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  max-height: 92vh;
  background: #0d0d0f !important;
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid #1e212b !important;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
}

/* Internal Scrollbar Styling */
.product-modal-container::-webkit-scrollbar {
  width: 8px;
}

.product-modal-container::-webkit-scrollbar-track {
  background: transparent;
}

.product-modal-container::-webkit-scrollbar-thumb {
  background: #2d313d;
  border-radius: 10px;
}

/* Modal Entry Animation */
.modal-bounce-enter-active {
  animation: modalBounceAnim 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.modal-bounce-leave-active {
  animation: modalBounceAnim 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) reverse both;
}

@keyframes modalBounceAnim {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(40px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
