/**
 * ValueSubs — global design tokens, layout, components.
 * Pair with animations.css + responsive.css
 */

:root {
  --bg-deep: #020308;
  --bg-elevated: #070a14;
  --bg-glass: rgba(10, 14, 32, 0.62);
  --border-glass: rgba(110, 140, 255, 0.22);
  --text: #f4f7ff;
  --text-muted: rgba(220, 230, 255, 0.62);
  --cyan: #2dd4bf;
  --cyan-bright: #5eead4;
  --blue: #3b82f6;
  --purple: #a78bfa;
  --violet: #6366f1;
  --danger: #fb7185;
  --success: #34d399;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 0 1px rgba(99, 102, 241, 0.28), 0 24px 80px rgba(0, 2, 12, 0.75);
  --shadow-card-hover: 0 28px 90px rgba(2, 6, 24, 0.85), 0 0 0 1px rgba(94, 234, 212, 0.18);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  --font-display: "Sora", var(--font-sans);
  --container: min(1200px, calc(100% - 48px));
  --nav-h: 126px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.58;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Product / category pages: keep footer at bottom of viewport when content is short */
body.page-layout-sticky {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.page-layout-sticky #main {
  flex: 1 0 auto;
  width: 100%;
}
body.page-layout-sticky > .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

#main {
  max-width: 100%;
  overflow-x: hidden;
}

body.preloader-active {
  overflow: hidden;
  touch-action: none;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.88em;
  padding: 2px 7px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

/* --- Ambient background --- */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.ambient__blob {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  transform: translate3d(0, 0, 0);
}
.ambient__blob--1 {
  top: -18%;
  left: -10%;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.55), transparent 60%);
}
.ambient__blob--2 {
  bottom: -20%;
  right: -12%;
  background: radial-gradient(circle at 70% 40%, rgba(168, 85, 247, 0.5), transparent 55%);
}
.ambient__blob--3 {
  top: 40%;
  right: 10%;
  width: 40vmax;
  height: 40vmax;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.45), transparent 55%);
  opacity: 0.22;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

/* --- Intro overlay --- */
.page-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #0b1228, #020308 70%);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.page-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-intro__inner {
  text-align: center;
  padding: 32px;
}
.page-intro__mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--purple));
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.55);
  animation: introPulse 1.2s ease-in-out infinite alternate;
}
.page-intro__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 8px;
}
.page-intro__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Layout --- */
.container {
  width: var(--container);
  max-width: 100%;
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}
.section--tight {
  padding: clamp(56px, 8vw, 88px) 0;
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5.5vw, 56px);
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  margin-bottom: 14px;
}
.section__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.section__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 52ch;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease-out), border-color 0.45s, backdrop-filter 0.45s, box-shadow 0.45s;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.35), rgba(129, 140, 248, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.site-header.is-scrolled::before {
  opacity: 1;
}
.site-header.is-scrolled {
  background: rgba(4, 6, 14, 0.78);
  backdrop-filter: blur(22px) saturate(1.65);
  border-bottom-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}
.site-header__inner {
  width: var(--container);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.22rem;
  flex: 0 0 auto;
  min-width: 0;
  transition: opacity 0.25s, transform 0.35s var(--ease-out);
}
.site-header .brand {
  gap: 0;
  width: fit-content;
  max-width: 100%;
}
.brand:hover {
  transform: translateY(-1px);
}
.brand span {
  background: linear-gradient(120deg, #f8fafc, #c4f1f9 40%, #e9d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand img {
  display: block;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.25), 0 12px 36px rgba(34, 211, 238, 0.2);
}
.site-header .brand img {
  width: auto;
  height: clamp(64px, calc(var(--nav-h) - 18px), 96px);
  max-height: calc(var(--nav-h) - 10px);
  max-width: min(760px, 78vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}
.footer-brand .brand {
  width: fit-content;
  max-width: 100%;
}
.footer-brand .brand img {
  display: block;
  width: auto;
  height: clamp(48px, 5.5vw, 64px);
  max-width: min(420px, 100%);
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  min-width: 0;
  flex: 0 0 auto;
  justify-content: flex-end;
}

/* Desktop: logo, centered nav, actions */
@media (min-width: 901px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(14px, 2.4vw, 36px);
  }
  .site-header .brand {
    justify-self: start;
  }
  .nav-shell {
    justify-self: center;
    min-width: 0;
    max-width: min(100%, 58vw);
  }
  .header-end {
    margin-left: 0;
    flex: initial;
    justify-self: end;
    justify-content: flex-end;
    width: max-content;
    max-width: 100%;
  }
  .site-header .brand img {
    height: clamp(72px, calc(var(--nav-h) - 14px), 104px);
    max-height: calc(var(--nav-h) - 8px);
    max-width: min(920px, 56vw);
  }
}

.nav-shell {
  padding: 5px 6px;
  border-radius: 999px;
  border: 1px solid rgba(120, 140, 255, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(230, 238, 255, 0.55);
  transition: color 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav__link:hover::after {
  width: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
  flex: 0 0 auto;
  min-width: 0;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(129, 140, 248, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: rgba(241, 245, 255, 0.88);
  transition: transform 0.4s var(--ease-spring), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 0 32px rgba(45, 212, 191, 0.18), 0 12px 28px rgba(0, 0, 0, 0.35);
}
.icon-btn svg {
  display: block;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), border-color 0.35s, filter 0.35s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(115deg, #2dd4bf 0%, #22d3ee 35%, #6366f1 72%, #8b5cf6 100%);
  background-size: 160% 160%;
  color: #020617;
  box-shadow: 0 14px 44px rgba(99, 102, 241, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: btnGradientShift 10s ease-in-out infinite alternate;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  filter: brightness(1.05);
}
.btn--ghost {
  border-color: rgba(129, 140, 248, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn--ghost:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn--ig {
  background: linear-gradient(125deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 14px 44px rgba(188, 24, 136, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.btn--ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(188, 24, 136, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: brightness(1.05);
}

.btn--ig-icon {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  color: rgba(240, 249, 255, 0.95);
  border: 1px solid rgba(94, 234, 212, 0.38);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.1) inset,
    0 10px 32px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(34, 211, 238, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ig-icon svg {
  display: block;
}
.btn--ig-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.14) inset,
    0 14px 40px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(34, 211, 238, 0.22);
}

.hamburger {
  display: none;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(129, 140, 248, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 0 12px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
}
.hamburger:hover {
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.12);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #e5e7eb;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(3, 4, 10, 0.92);
  backdrop-filter: blur(16px);
  padding: 24px 20px 32px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  padding: 15px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(129, 140, 248, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(241, 245, 255, 0.88);
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}
.mobile-drawer a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(45, 212, 191, 0.25);
  transform: translateX(-4px);
}
.mobile-drawer.is-open {
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
}

/* --- Hero --- */
.hero {
  padding: clamp(40px, 7vw, 72px) 0 clamp(56px, 9vw, 96px);
  position: relative;
}
.hero__micro {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(167, 139, 250, 0.85);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(32px, 5.5vw, 64px);
  align-items: center;
  min-width: 0;
}
.hero__grid > * {
  min-width: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  font-weight: 700;
}
.hero__title span {
  background: linear-gradient(115deg, #ecfeff 0%, #5eead4 18%, #22d3ee 45%, #a78bfa 78%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  max-width: 34rem;
  line-height: 1.65;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__cta-note {
  width: 100%;
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(226, 232, 255, 0.38);
  letter-spacing: 0.04em;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__stat {
  flex: 1 1 140px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(129, 140, 248, 0.15);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(6, 10, 24, 0.65));
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s var(--ease-out), transform 0.45s var(--ease-spring), box-shadow 0.4s;
}
.hero__stat:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: min(520px, 100%);
  margin-inline: auto;
  aspect-ratio: 1312 / 815;
  border-radius: clamp(22px, 3.2vw, 32px);
  border: 1px solid rgba(129, 140, 248, 0.22);
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.06), transparent 38%),
    linear-gradient(205deg, rgba(8, 14, 32, 0.98) 0%, rgba(12, 18, 40, 0.94) 45%, rgba(6, 8, 22, 0.99) 100%);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(2, 4, 12, 0.65);
  z-index: 2;
}
.hero-visual__canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}
#hero-three-root canvas {
  display: block;
  width: 100%;
  height: 100%;
}
/* Fallback when WebGL or textures are unavailable (same element may carry .hero-fallback) */
#hero-three-root.hero-fallback,
.hero-visual.hero-fallback .hero-visual__canvas-wrap {
  background: radial-gradient(circle at 28% 22%, rgba(45, 212, 191, 0.25), transparent 42%),
    radial-gradient(circle at 72% 68%, rgba(129, 140, 248, 0.28), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.15), transparent 55%);
}

/* Catalog logos “floating” when 3D cards are not shown */
.hero-visual__float-logos {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-visual__float-logo {
  position: absolute;
  width: clamp(44px, 10.5vw, 78px);
  height: clamp(44px, 10.5vw, 78px);
  box-sizing: border-box;
  padding: 7px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.2),
    0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}
@media (min-width: 901px) {
  .hero-visual__float-logo {
    width: clamp(56px, 7.2vw, 96px);
    height: clamp(56px, 7.2vw, 96px);
    padding: 10px;
    border-radius: 16px;
  }
}
.hero-visual__shine {
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: conic-gradient(from 120deg, rgba(34, 211, 238, 0.12), transparent, rgba(168, 85, 247, 0.16), transparent);
  opacity: 0.9;
  pointer-events: none;
}
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 8, 20, 0.65);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* --- Category cards --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.category-card {
  --cat-accent: #5eead4;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  padding: 24px 22px 26px;
  min-height: 148px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(129, 140, 248, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(8, 12, 28, 0.55) 100%);
  backdrop-filter: blur(18px) saturate(1.45);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
  transition: border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), transform 0.5s var(--ease-spring);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 48px rgba(0, 0, 0, 0.35);
}
.category-grid .category-card:nth-child(1) {
  --cat-accent: #2dd4bf;
}
.category-grid .category-card:nth-child(2) {
  --cat-accent: #818cf8;
}
.category-grid .category-card:nth-child(3) {
  --cat-accent: #a78bfa;
}
.category-grid .category-card:nth-child(4) {
  --cat-accent: #f472b6;
}
.category-grid .category-card:nth-child(5) {
  --cat-accent: #38bdf8;
}
.category-grid .category-card:nth-child(6) {
  --cat-accent: #34d399;
}
.category-grid .category-card:nth-child(7) {
  --cat-accent: #fb923c;
}
.category-grid .category-card:nth-child(8) {
  --cat-accent: #fbbf24;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.45), transparent 42%, rgba(129, 140, 248, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}
.category-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cat-accent), transparent 85%);
  opacity: 0.9;
}
.category-card:hover {
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: var(--shadow-card-hover), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.category-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.category-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: var(--cat-accent);
}
.category-card__arrow {
  font-size: 1.1rem;
  color: rgba(226, 232, 255, 0.25);
  transition: color 0.35s, transform 0.45s var(--ease-spring);
}
.category-card:hover .category-card__arrow {
  color: var(--cat-accent);
  transform: translate(3px, -2px);
}
.category-card__title {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.category-card__meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- Product cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(129, 140, 248, 0.14);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.07) 0%, rgba(6, 10, 22, 0.92) 42%, rgba(3, 5, 14, 0.98) 100%);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.45s var(--ease-out), box-shadow 0.5s var(--ease-out);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.product-card__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 0%, rgba(45, 212, 191, 0.18), transparent 42%),
    radial-gradient(circle at 90% 80%, rgba(129, 140, 248, 0.2), transparent 45%);
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.product-card:hover .product-card__glow {
  opacity: 1;
}
.product-card:hover {
  border-color: rgba(94, 234, 212, 0.28);
  box-shadow: var(--shadow-card-hover);
}
.product-card__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.product-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #1e293b, #03040a);
}
.product-card__media-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 4, 12, 0.85) 100%);
  pointer-events: none;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out), filter 0.5s;
}
.product-card__save {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #022c22;
  background: linear-gradient(120deg, #5eead4, #2dd4bf);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.35);
}
.product-card__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.45), transparent 62%);
  transform: translateX(-130%) skewX(-12deg);
  opacity: 0;
  transition: transform 0.75s var(--ease-out), opacity 0.4s;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.product-card:hover .product-card__shine {
  transform: translateX(130%) skewX(-12deg);
  opacity: 0.7;
}
.product-card:hover .product-card__media img {
  transform: scale(1.06);
  filter: saturate(1.08) brightness(1.03);
}
.product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.product-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.95);
  font-weight: 800;
  margin: 0 0 6px;
}
.product-card__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.product-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 140, 248, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.product-card__price--sale {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
}
.product-card__price--orig {
  font-size: 0.82rem;
  color: rgba(226, 232, 255, 0.38);
}
.product-card__price--orig del {
  text-decoration: none;
  position: relative;
}
.product-card__price--orig del::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(248, 250, 252, 0.35);
}
.product-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card__cta {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.product-card__cta--primary {
  color: #020617;
  background: linear-gradient(120deg, #5eead4, #6366f1);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}
.product-card__cta--ghost {
  color: rgba(241, 245, 255, 0.75);
  border: 1px solid rgba(129, 140, 248, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.product-card:hover .product-card__cta--primary {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-row del {
  color: rgba(248, 250, 252, 0.45);
  font-size: 0.9rem;
}
.price-row strong {
  font-size: 1.25rem;
  font-family: var(--font-display);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.badge--hot {
  border-color: rgba(251, 113, 133, 0.55);
  color: #fecdd3;
  box-shadow: 0 0 20px rgba(251, 113, 133, 0.2);
}
.badge--best {
  border-color: rgba(34, 211, 238, 0.55);
  color: #cffafe;
}
.badge--limited {
  border-color: rgba(168, 85, 247, 0.55);
  color: #ede9fe;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}
.toolbar__grow {
  flex: 1;
}
.select,
.input {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  min-width: 160px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.18);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 255, 0.55);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.35s var(--ease-out), color 0.35s, background 0.35s, transform 0.4s var(--ease-spring),
    box-shadow 0.35s;
}
.chip:hover {
  color: var(--text);
  border-color: rgba(45, 212, 191, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
.chip.is-active {
  color: #020617;
  background: linear-gradient(115deg, #5eead4, #22d3ee 40%, #6366f1 88%);
  background-size: 140% 140%;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.4);
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.step-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}
.step-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(148, 163, 184, 0.35);
  position: absolute;
  right: 16px;
  top: 10px;
}
.step-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  font-size: 1.35rem;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Trust --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.trust-card {
  position: relative;
  padding: 22px 16px 24px;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(129, 140, 248, 0.14);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.05) 0%, rgba(6, 10, 22, 0.75) 100%);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: border-color 0.45s var(--ease-out), transform 0.5s var(--ease-spring), box-shadow 0.45s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 50px rgba(0, 0, 0, 0.35);
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.6), rgba(129, 140, 248, 0.4), transparent);
  opacity: 0.65;
}
.trust-card:hover {
  border-color: rgba(94, 234, 212, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.trust-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 0 14px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  background: linear-gradient(120deg, #f8fafc, #a5f3fc 40%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-card__value--plain {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #f8fafc;
}
.trust-card__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 255, 0.45);
  margin-bottom: 8px;
}
.trust-card__hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- Testimonials --- */
.testimonial {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(129, 140, 248, 0.18);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(8, 12, 26, 0.88) 100%);
  padding: clamp(22px, 4vw, 32px);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 70px rgba(0, 0, 0, 0.45);
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(45, 212, 191, 0.35), transparent 50%, rgba(167, 139, 250, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.45;
}
.testimonial-panel {
  position: relative;
  z-index: 1;
}
.testimonial__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.testimonial__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 0 16px rgba(251, 191, 36, 0.35);
}
.testimonial__chips {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.testimonial__chip {
  border: 1px solid rgba(129, 140, 248, 0.32);
  background: rgba(15, 23, 42, 0.55);
  color: rgba(226, 232, 255, 0.9);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.testimonial__quote {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(241, 245, 255, 0.96);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.testimonial__meta strong {
  display: block;
}
.testimonial__meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 140, 248, 0.2);
}

/* --- FAQ --- */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}
.faq-item__chev {
  transition: transform 0.35s var(--ease-out);
  color: var(--cyan);
}
.faq-item.is-open .faq-item__chev {
  transform: rotate(180deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-item__a-inner {
  padding: 0 18px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Request product section --- */
.request-product {
  position: relative;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(129, 140, 248, 0.26);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(45, 212, 191, 0.1) 45%, rgba(10, 14, 30, 0.95) 100%);
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(16px, 2.8vw, 34px);
  align-items: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 70px rgba(0, 0, 0, 0.38);
}
.request-product__media {
  border-radius: calc(var(--radius-md) + 2px);
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.24);
  background: rgba(4, 8, 20, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.request-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
}
.request-product__content .section__eyebrow {
  margin-bottom: 10px;
}
.request-product__content .section__title {
  margin-bottom: 12px;
}
.request-product__content .section__lead {
  max-width: 60ch;
}
.request-product__actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* --- Contact --- */
.contact-card {
  position: relative;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(129, 140, 248, 0.22);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12) 0%, rgba(99, 102, 241, 0.14) 45%, rgba(15, 23, 42, 0.92) 100%);
  padding: clamp(28px, 5vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(45, 212, 191, 0.5), transparent 45%, rgba(167, 139, 250, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}
.contact-card > div:first-child {
  position: relative;
  z-index: 1;
}
.contact-card__kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.9);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.contact-card__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 36ch;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.contact-actions .btn {
  justify-content: center;
  width: 100%;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 56px 0 32px;
  background: rgba(2, 3, 8, 0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.footer-brand p {
  color: var(--text-muted);
  max-width: 320px;
}
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-col a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-bottom__copy {
  flex: 0 0 auto;
}
.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.footer-bottom__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-bottom__links a:hover {
  color: var(--text);
}

.footer-bottom__mid {
  color: rgba(241, 245, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-bottom__mid:hover {
  color: #5eead4;
}

/* Slim footer on product + category pages (no multi-column grid) */
.site-footer--compact {
  padding: 24px 0 28px;
}
.site-footer--compact .footer-bottom {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px 16px;
}
.site-footer--compact .footer-bottom__copy {
  justify-self: start;
}
.site-footer--compact .footer-bottom__mid {
  justify-self: center;
  text-align: center;
}
.site-footer--compact .footer-bottom__links {
  justify-self: end;
  justify-content: flex-end;
}

@media (max-width: 560px) {
  .site-footer--compact .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .site-footer--compact .footer-bottom__copy,
  .site-footer--compact .footer-bottom__mid,
  .site-footer--compact .footer-bottom__links {
    justify-self: auto;
    text-align: left;
  }
  .site-footer--compact .footer-bottom__links {
    justify-content: flex-start;
  }
}

/* --- Product detail --- */
.product-related {
  padding-bottom: clamp(32px, 5vw, 56px);
}
.product-related .section__title {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}
.product-hero {
  padding: clamp(24px, 5vw, 48px) 0 40px;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.product-gallery {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  background: #05060d;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.product-detail h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 10px;
}
.product-detail .lead {
  color: var(--text-muted);
  margin: 0 0 18px;
}
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

/* --- Category page --- */
.page-hero {
  padding: clamp(32px, 6vw, 56px) 0 24px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 10px;
}
.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
}

.empty-state {
  padding: 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  color: var(--text-muted);
}
