/* ===== SHARED SITE STYLES ===== */
/* This file holds shared layout, component, and utility styles used across pages. */

/* ===== GLOBAL TOKENS ===== */
:root {
  --bg-dark: #08090d;
  --bg-panel: rgba(18, 20, 28, 0.88);
  --bg-soft: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #b8bfd3;
  --line-soft: rgba(255, 255, 255, 0.12);
  --accent: #ff0050;
  --accent-strong: #ff4d7d;
  --accent-glow: rgba(255, 0, 80, 0.28);
  --secondary: #7c3aed;
  --secondary-soft: #a855f7;
  --success: #00d48a;
  --danger: #ff4d6d;
  --on-accent: #ffffff;
  --button-solid-bg: linear-gradient(135deg, #cc3cff, #ff4d7d);
  --button-solid-text: #ffffff;
  --button-soft-bg: rgba(255, 255, 255, 0.08);
  --button-soft-text: #ffffff;
  --button-soft-border: rgba(255, 255, 255, 0.14);
  --field-strong-bg: rgba(255, 255, 255, 0.07);
  --focus-ring: rgba(255, 0, 80, 0.18);
  --toast-bg: rgba(8, 10, 16, 0.94);
  --stars-color: #ff65b5;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page-bg:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.2), transparent 32%),
    linear-gradient(135deg, #050609 0%, #0e1118 40%, #090b12 100%);
  --topbar-bg: rgba(5, 6, 9, 0.88);
  --navbar-scrolled-bg: rgba(6, 8, 12, 0.9);
  --surface-1: rgba(18, 20, 28, 0.88);
  --surface-2: rgba(13, 15, 23, 0.86);
  --surface-3: rgba(8, 10, 16, 0.98);
  --surface-card: #2a2630;
  --surface-hover: rgba(255, 255, 255, 0.06);
  --icon-btn-hover: rgba(255, 255, 255, 0.05);
  --theme-ring: rgba(255, 255, 255, 0.12);
  --theme-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  --field-bg: rgba(255, 255, 255, 0.06);
  --hero-button-gradient: linear-gradient(90deg, #cc3cff, #ff4d7d);
  --cursor-glow-core: rgba(255, 0, 80, 0.18);
  --cursor-glow-edge: rgba(124, 58, 237, 0.08);
  --cursor-neon-core: rgba(255, 0, 80, 0.34);
  --cursor-neon-edge: rgba(124, 58, 237, 0.16);
  --cursor-image-shadow: drop-shadow(0 0 4px rgba(255, 0, 80, 0.28)) drop-shadow(0 0 10px rgba(124, 58, 237, 0.14)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.16));
}

/* ===== BASE RESET ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background: var(--page-bg);
  opacity: 0;
  transform: none;
  transition: opacity 0.35s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(color-mix(in srgb, var(--accent) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--secondary) 6%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 78%);
  opacity: 0.36;
  transform: none;
  animation: none;
}

body.motion-ready {
  opacity: 1;
  transform: none;
}

body.page-is-leaving {
  opacity: 0;
  transform: none;
}

body.search-overlay-open {
  overflow: hidden;
}

body.custom-cursor-active,
body.custom-cursor-active * {
  cursor: none !important;
}

body.custom-cursor-active.native-cursor-zone,
body.custom-cursor-active.native-cursor-zone * {
  cursor: auto !important;
}

body[data-theme="light"],
html[data-theme="light"] {
  --bg-panel: rgba(255, 255, 255, 0.82);
  --bg-soft: rgba(15, 23, 42, 0.06);
  --text-main: #0f172a;
  --text-muted: #475569;
  --line-soft: rgba(15, 23, 42, 0.12);
  --accent: #e11d48;
  --accent-strong: #db2777;
  --accent-glow: rgba(225, 29, 72, 0.16);
  --secondary: #2563eb;
  --secondary-soft: #38bdf8;
  --on-accent: #ffffff;
  --button-solid-bg: linear-gradient(135deg, #e11d48, #2563eb);
  --button-solid-text: #ffffff;
  --button-soft-bg: rgba(15, 23, 42, 0.05);
  --button-soft-text: #0f172a;
  --button-soft-border: rgba(15, 23, 42, 0.14);
  --field-strong-bg: rgba(15, 23, 42, 0.055);
  --focus-ring: rgba(37, 99, 235, 0.16);
  --toast-bg: rgba(255, 255, 255, 0.96);
  --stars-color: #be185d;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --page-bg:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 45%, #f8fafc 100%);
  --topbar-bg: rgba(255, 255, 255, 0.84);
  --navbar-scrolled-bg: rgba(255, 255, 255, 0.9);
  --surface-1: rgba(255, 255, 255, 0.84);
  --surface-2: rgba(255, 255, 255, 0.9);
  --surface-3: rgba(255, 255, 255, 0.94);
  --surface-card: rgba(255, 255, 255, 0.88);
  --surface-hover: rgba(15, 23, 42, 0.05);
  --icon-btn-hover: rgba(15, 23, 42, 0.06);
  --theme-ring: rgba(15, 23, 42, 0.12);
  --theme-shadow: 0 18px 44px rgba(148, 163, 184, 0.24);
  --field-bg: rgba(15, 23, 42, 0.05);
  --hero-button-gradient: linear-gradient(90deg, #0f766e, #2563eb);
  --cursor-glow-core: rgba(37, 99, 235, 0.14);
  --cursor-glow-edge: rgba(56, 189, 248, 0.08);
  --cursor-neon-core: rgba(37, 99, 235, 0.28);
  --cursor-neon-edge: rgba(56, 189, 248, 0.14);
  --cursor-image-shadow: drop-shadow(0 0 4px rgba(37, 99, 235, 0.22)) drop-shadow(0 0 10px rgba(56, 189, 248, 0.16)) drop-shadow(0 6px 12px rgba(15, 23, 42, 0.1));
}

body[data-theme="neon"],
html[data-theme="neon"] {
  --bg-panel: rgba(6, 22, 17, 0.88);
  --bg-soft: rgba(134, 239, 172, 0.12);
  --text-main: #ecfdf5;
  --text-muted: #9dd8bd;
  --line-soft: rgba(110, 231, 183, 0.16);
  --accent: #22c55e;
  --accent-strong: #14b8a6;
  --accent-glow: rgba(34, 197, 94, 0.24);
  --secondary: #14b8a6;
  --secondary-soft: #2dd4bf;
  --on-accent: #02140f;
  --button-solid-bg: linear-gradient(135deg, #22c55e, #14b8a6);
  --button-solid-text: #02140f;
  --button-soft-bg: rgba(134, 239, 172, 0.1);
  --button-soft-text: #ecfdf5;
  --button-soft-border: rgba(134, 239, 172, 0.18);
  --field-strong-bg: rgba(110, 231, 183, 0.08);
  --focus-ring: rgba(34, 197, 94, 0.18);
  --toast-bg: rgba(4, 22, 17, 0.96);
  --stars-color: #86efac;
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.42);
  --page-bg:
    radial-gradient(circle at top, rgba(34, 197, 94, 0.18), transparent 28%),
    linear-gradient(135deg, #03110c 0%, #061f18 42%, #02140f 100%);
  --topbar-bg: rgba(2, 14, 10, 0.88);
  --navbar-scrolled-bg: rgba(3, 16, 12, 0.9);
  --surface-1: rgba(7, 33, 25, 0.92);
  --surface-2: rgba(5, 26, 20, 0.88);
  --surface-3: rgba(4, 22, 17, 0.96);
  --surface-card: #132e26;
  --surface-hover: rgba(134, 239, 172, 0.09);
  --icon-btn-hover: rgba(134, 239, 172, 0.08);
  --theme-ring: rgba(110, 231, 183, 0.16);
  --theme-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --field-bg: rgba(110, 231, 183, 0.08);
  --hero-button-gradient: linear-gradient(90deg, #22c55e, #14b8a6);
  --cursor-glow-core: rgba(34, 197, 94, 0.16);
  --cursor-glow-edge: rgba(20, 184, 166, 0.1);
  --cursor-neon-core: rgba(34, 197, 94, 0.3);
  --cursor-neon-edge: rgba(20, 184, 166, 0.16);
  --cursor-image-shadow: drop-shadow(0 0 4px rgba(34, 197, 94, 0.24)) drop-shadow(0 0 10px rgba(20, 184, 166, 0.14)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

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

button,
input {
  font: inherit;
}

.hidden {
  display: none !important;
}

.site-cursor-shadow,
.site-cursor {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2147483647;
  transition: opacity 0.18s ease;
}

.site-cursor-shadow {
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--cursor-glow-core) 0%, var(--cursor-glow-edge) 48%, rgba(124, 58, 237, 0) 100%);
  filter: blur(6px);
  transform: translate3d(-9999px, -9999px, 0);
}

.site-cursor {
  width: 24px;
  height: 24px;
  background: center / contain no-repeat url("../IMAGES/Cursor_png.png");
  filter: var(--cursor-image-shadow);
  transform: translate3d(-9999px, -9999px, 0);
}

.site-cursor::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cursor-neon-core) 0%, var(--cursor-neon-edge) 45%, rgba(255, 255, 255, 0) 72%);
  mix-blend-mode: screen;
  filter: blur(5px);
  opacity: 0.38;
  animation: none;
}

.site-cursor.is-visible,
.site-cursor-shadow.is-visible {
  opacity: 1;
}

.site-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2600;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--secondary-soft), var(--accent-strong));
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 46%, transparent);
  transition: transform 0.12s linear;
}

body.custom-cursor-active.native-cursor-zone .site-cursor,
body.custom-cursor-active.native-cursor-zone .site-cursor-shadow {
  display: none !important;
}

@media (pointer: coarse) {
  body.custom-cursor-active,
  body.custom-cursor-active * {
    cursor: auto !important;
  }

  .site-cursor,
  .site-cursor-shadow {
    display: none !important;
  }
}

html[data-show-preloader="true"] body {
  overflow: hidden;
}

html[data-show-preloader="true"] body > :not(.site-preloader) {
  opacity: 0;
  visibility: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 26%),
    radial-gradient(circle at 78% 28%, color-mix(in srgb, var(--secondary) 24%, transparent), transparent 28%),
    var(--page-bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  overflow: hidden;
}

html:not([data-show-preloader="true"]) .site-preloader {
  display: none;
}

.site-preloader::before,
.site-preloader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.site-preloader::before {
  width: 440px;
  height: 440px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 26%, transparent), transparent 68%);
  animation: preloaderPulseOrb 4.8s ease-in-out infinite;
}

.site-preloader::after {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  filter: none;
  background:
    linear-gradient(to bottom, color-mix(in srgb, var(--text-main) 4%, transparent) 1px, transparent 1px),
    linear-gradient(to right, color-mix(in srgb, var(--text-main) 4%, transparent) 1px, transparent 1px);
  background-size: 100% 36px, 36px 100%;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0.9) 82%, transparent);
  opacity: 0.38;
}

.site-preloader .preloader-noise {
  display: none;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-panel {
  position: relative;
  width: min(100%, 320px);
  padding: 10px 0 0;
  text-align: center;
  isolation: isolate;
}

.preloader-panel::before {
  content: "";
  position: absolute;
  inset: -52px -40px -34px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--secondary) 12%, transparent), transparent 64%);
  filter: blur(24px);
  opacity: 0.9;
}

.preloader-panel::after {
  content: "";
  position: absolute;
  inset: -18px -28px;
  z-index: -2;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, transparent 0deg, color-mix(in srgb, var(--accent) 20%, transparent) 60deg, transparent 140deg, color-mix(in srgb, var(--secondary) 18%, transparent) 240deg, transparent 320deg);
  filter: blur(32px);
  opacity: 0.45;
  animation: preloaderAuraRotate 10s linear infinite;
}


.preloader-gear-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.preloader-gear-wrap::before,
.preloader-gear-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.preloader-gear-wrap::before {
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 66%);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--accent) 18%, transparent),
    inset 0 0 26px color-mix(in srgb, var(--text-main) 6%, transparent);
  animation: preloaderRingPulse 2.8s ease-in-out infinite;
}

.preloader-gear-wrap::after {
  inset: 18px;
  border: 1px dashed color-mix(in srgb, var(--secondary) 22%, transparent);
  box-shadow: inset 0 0 20px color-mix(in srgb, var(--text-main) 5%, transparent);
  animation: preloaderOrbitSpin 10s linear infinite;
}

.preloader-core-ring,
.preloader-core-ring::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.preloader-core-ring {
  width: 126px;
  height: 126px;
  border: 1px solid color-mix(in srgb, var(--text-main) 10%, transparent);
  background:
    radial-gradient(circle, color-mix(in srgb, var(--secondary) 14%, transparent), transparent 72%);
  box-shadow:
    0 0 20px color-mix(in srgb, var(--secondary) 16%, transparent),
    inset 0 0 24px color-mix(in srgb, var(--accent) 8%, transparent);
}

.preloader-core-ring::before {
  content: "";
  inset: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  animation: preloaderRingPulse 2.2s ease-in-out infinite reverse;
}

.preloader-float {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--text-main);
  text-shadow:
    0 0 10px color-mix(in srgb, var(--accent) 26%, transparent),
    0 0 18px color-mix(in srgb, var(--secondary) 18%, transparent);
  opacity: 0.82;
  will-change: transform, opacity;
}

.preloader-float::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 72%);
  filter: blur(10px);
  opacity: 0.9;
}

.preloader-float i {
  position: relative;
  z-index: 1;
}

.preloader-float-gamepad {
  top: -10px;
  left: -18px;
  font-size: 22px;
  animation: preloaderFloatOne 4.4s ease-in-out infinite;
}

.preloader-float-mouse {
  top: 2px;
  right: -14px;
  font-size: 21px;
  animation: preloaderFloatTwo 4.9s ease-in-out infinite;
}

.preloader-float-headset {
  bottom: 16px;
  left: -28px;
  font-size: 24px;
  animation: preloaderFloatThree 5.1s ease-in-out infinite;
}

.preloader-float-keyboard {
  right: -26px;
  bottom: 10px;
  font-size: 19px;
  animation: preloaderFloatFour 5.4s ease-in-out infinite;
}

.preloader-gear-svg {
  position: relative;
  z-index: 1;
  width: 94px;
  height: 94px;
  color: var(--text-main);
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 36%, transparent));
  animation: preloaderGearSpin 5s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

.preloader-gear-glow {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 32%, transparent), transparent 72%);
  filter: blur(14px);
  animation: preloaderCorePulse 2.2s ease-in-out infinite;
}

.preloader-percent {
  display: block;
  margin: 0 0 16px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(28px, 8vw, 40px);
  letter-spacing: 2px;
  color: var(--text-main);
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 18%, transparent);
}

.preloader-logo {
  width: min(164px, 56vw);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--accent) 22%, transparent));
}

.preloader-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.preloader-status[hidden] {
  visibility: hidden;
}

@keyframes preloaderGearSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderOrbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes preloaderRingPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes preloaderCorePulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes preloaderPulseOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.7;
  }

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

@keyframes preloaderAuraRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }

  50% {
    transform: translate3d(12px, -8px, 0) rotate(8deg);
  }
}

@keyframes preloaderFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }

  50% {
    transform: translate3d(-12px, -10px, 0) rotate(-8deg);
  }
}

@keyframes preloaderFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }

  50% {
    transform: translate3d(14px, 8px, 0) rotate(6deg);
  }
}

@keyframes preloaderFloatFour {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }

  50% {
    transform: translate3d(-10px, 10px, 0) rotate(-7deg);
  }
}

/* ===== HOME PAGE TOP BAR ===== */
.topbar {
  position: relative;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--topbar-bg);
  backdrop-filter: blur(14px);
}

.left-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.left-icons a {
  color: var(--text-muted);
  font-size: 16px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.left-icons a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== ACCOUNT AREA + DROPDOWN ===== */
.account-menu {
  position: relative;
}

.account-menu.logged-in {
  cursor: pointer;
}

.right-account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.right-account:hover,
.account-menu.open .right-account {
  color: var(--text-main);
  border-color: var(--button-soft-border);
  background: var(--button-soft-bg);
}

.account-menu.logged-in .right-account {
  border-color: rgba(255, 0, 80, 0.16);
  background: color-mix(in srgb, var(--accent) 8%, var(--button-soft-bg));
}

.account-menu.logged-in:hover .right-account,
.account-menu.logged-in.open .right-account {
  color: var(--button-solid-text);
  border-color: rgba(255, 0, 80, 0.32);
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.16), rgba(124, 58, 237, 0.18));
  box-shadow: 0 12px 30px rgba(255, 0, 80, 0.16);
}

.right-account:hover {
  transform: translateY(-2px);
}

.account-caret {
  font-size: 12px;
  transition: transform 0.25s ease;
}

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

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface-3);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.account-menu.open .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: var(--surface-hover);
  color: var(--text-main);
}

.account-dropdown-actions {
  display: grid;
  gap: 10px;
}

.account-dropdown-button {
  min-height: 48px;
  justify-content: center !important;
  font-weight: 700;
  letter-spacing: 0.2px;
  transform: translateY(0) scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease !important;
}

.account-dropdown-button:hover {
  transform: translateY(-2px) scale(1.01);
}

.account-dropdown-primary {
  color: var(--button-solid-text) !important;
  background: var(--button-solid-bg) !important;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 20%, transparent);
}

.account-dropdown-secondary {
  border: 1px solid color-mix(in srgb, var(--text-main) 12%, transparent) !important;
  background: color-mix(in srgb, var(--surface-2) 94%, transparent) !important;
}

/* ===== MAIN NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  color: var(--text-main);
  background: transparent;
  transform: translateY(0);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.navbar.scrolled {
  background: var(--navbar-scrolled-bg);
  box-shadow: var(--theme-shadow);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  transform: translateY(0);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text-main);
  text-decoration: none;
}

.logo-image {
  width: auto;
  height: 38px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 15px;
  transition: color 0.25s ease;
}

.nav-menu ul li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: -8px;
  width: calc(100% - 28px);
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--secondary-soft));
  transition: transform 0.25s ease;
}

.nav-menu ul li:hover {
  color: var(--text-main);
}

.nav-menu ul li:hover > a,
.nav-menu ul li.nav-item-active > a,
.nav-dropdown-item.dropdown-open > a {
  color: var(--text-main);
  background: var(--surface-hover);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.nav-menu ul li:hover::after {
  transform: scaleX(1);
}

.nav-menu ul li.nav-item-active::after,
.nav-dropdown-item.dropdown-open::after {
  transform: scaleX(1);
}

.nav-dropdown-item i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-dropdown-item:hover i,
.nav-dropdown-item.dropdown-open i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-3);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transform-origin: top left;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

.nav-dropdown-item:hover .nav-dropdown-menu,
.nav-dropdown-item.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown-menu a {
  position: relative;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--text-main);
  background: var(--surface-hover);
  transform: translateX(2px);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-button,
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: var(--theme-ring);
  background: var(--icon-btn-hover);
}

.theme-toggle-button {
  width: auto;
  min-width: 112px;
  padding: 0 14px;
  gap: 10px;
  border-color: var(--theme-ring);
  border-radius: 999px;
}

.theme-toggle-button i {
  color: var(--accent);
}

.theme-toggle-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reveal-on-scroll,
.motion-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-reveal[data-motion-direction="left"] {
  transform: translateX(-38px) scale(0.985);
}

.motion-reveal[data-motion-direction="right"] {
  transform: translateX(38px) scale(0.985);
}

.motion-reveal[data-motion-direction="zoom"] {
  transform: translateY(18px) scale(0.94);
}

.feature-item,
.media-card,
.home-product-card,
.product-card,
.policy-card,
.contact-card,
.contact-form-card,
.commerce-panel,
.commerce-summary,
.thank-you-panel,
.review-card,
.quick-comparison-card,
.footer-column {
  position: relative;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s ease,
    border-color 0.36s ease,
    background 0.36s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-item:hover,
.media-card:hover,
.policy-card:hover,
.contact-card:hover,
.contact-form-card:hover,
.commerce-panel:hover,
.commerce-summary:hover,
.thank-you-panel:hover,
.review-card:hover,
.quick-comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px color-mix(in srgb, var(--accent) 16%, rgba(0, 0, 0, 0.38));
}

.motion-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift));
}

.motion-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 30%), rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, transparent), transparent 42%);
  transition: opacity 0.28s ease;
}

.motion-tilt:hover::after {
  opacity: 1;
}

.magnetic-hover {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  will-change: transform;
}

.feature-icon img,
.media-card-image-asset,
.story-image,
.home-product-image,
.product-card-image,
.product-main-image {
  transition: transform 0.45s ease;
}

.feature-item:hover .feature-icon img,
.media-card:hover .media-card-image-asset,
.story-media:hover .story-image,
.home-product-card:hover .home-product-image,
.product-card:hover .product-card-image,
.product-gallery-stage:hover .product-main-image {
  transform: scale(1.055) translateZ(22px);
}

.icon-box {
  position: relative;
  font-size: 18px;
}

.count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 20px;
  padding: 2px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--text-main);
  font-size: 10px;
  text-align: center;
}

/* ===== HOMEPAGE HERO BANNER ===== */
.promo-marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(255, 0, 80, 0.12), rgba(124, 58, 237, 0.12));
}

.promo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: promoMarquee 22s linear infinite;
}

.hero-banner {
  isolation: isolate;
}

.hero-image {
  animation: heroProductFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 26px 48px color-mix(in srgb, var(--accent) 22%, rgba(0, 0, 0, 0.45)));
}

.hero-meta-card,
.auth-highlight-card,
.feature-item {
  animation: motionSoftRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-meta-card:nth-child(2),
.auth-highlight-card:nth-child(2),
.feature-item:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-meta-card:nth-child(3),
.auth-highlight-card:nth-child(3),
.feature-item:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes heroProductFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(1.2deg);
  }
}

@keyframes motionSoftRise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

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

@keyframes cyberGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

.promo-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 48px;
  padding-right: 48px;
}

.promo-marquee-track span {
  font-family: "Audiowide", sans-serif;
  color: var(--text-main);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
  min-height: calc(100vh - 132px);
  padding: 34px 50px 72px;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 0, 80, 0.12), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(124, 58, 237, 0.2), transparent 26%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 650px;
  animation: heroFadeUp 0.75s ease both;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 580px;
  margin: 0 0 30px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent) 20%, transparent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 0, 80, 0.28);
}

.story-section,
.weekly-deals-section,
.contact-form-card,
.contact-info-card,
.policy-panel,
.policy-card,
.commerce-panel,
.commerce-summary,
.commerce-empty,
.checkout-summary-panel,
.thank-you-panel,
.result-content {
  background: var(--surface-1);
}

.search-bar,
.contact-form-card input,
.contact-form-card textarea,
.footer-search-form input,
.footer-subscribe-form input,
.footer-subscribe-form-compact input,
.checkout-form input,
.checkout-form textarea {
  background-color: var(--field-bg);
}

.footer-search-form input,
.footer-subscribe-form input,
.footer-subscribe-form-compact input,
.checkout-form input,
.checkout-form textarea,
.contact-form-card input,
.contact-form-card textarea {
  color: var(--text-main);
  border-color: var(--line-soft);
}

.footer-search-form input::placeholder,
.footer-subscribe-form input::placeholder,
.footer-subscribe-form-compact input::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder,
.auth-form input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 82%, transparent);
}

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

.hero-meta-card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.hero-meta-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-meta-card span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  animation: heroFadeUp 0.9s ease both;
}

.hero-wordmark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 18vw, 230px);
  font-weight: 800;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.06);
  user-select: none;
  pointer-events: none;
}

.hero-image-wrap {
  position: relative;
  width: min(700px, 100%);
  display: flex;
  justify-content: center;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  bottom: 14%;
  width: 66%;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.18), transparent 70%);
  filter: blur(18px);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
  animation: heroFloat 4.6s ease-in-out infinite;
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px 50px 56px;
}

.feature-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 6px;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), color-mix(in srgb, var(--secondary) 10%, transparent));
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.feature-item::after {
  content: "";
  position: absolute;
  left: var(--feature-ripple-x, 52px);
  top: var(--feature-ripple-y, 52px);
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 32%, transparent);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.feature-item.is-clicked::after {
  animation: featureRipple 0.48s ease-out;
}

.feature-icon {
  position: relative;
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #e35cff;
  font-size: 34px;
  background: radial-gradient(circle at center, rgba(255, 0, 80, 0.08), rgba(255, 255, 255, 0.02) 65%);
  box-shadow:
    0 0 28px rgba(255, 0, 80, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-2px) rotate(-3deg);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow:
    inset 0 0 34px color-mix(in srgb, var(--accent) 12%, transparent),
    0 0 28px color-mix(in srgb, var(--accent) 18%, transparent);
}

.feature-item:hover .feature-icon::before {
  opacity: 1;
  transform: scale(1.08);
}

.feature-item.is-clicked .feature-icon {
  animation: featureIconPop 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item.is-clicked .feature-icon img {
  animation: featureIconSpin 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.feature-item:hover .feature-icon img {
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent) 46%, transparent));
}

.feature-text h3 {
  margin: 2px 0 10px;
  font-size: 20px;
}

.feature-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@keyframes featureIconPop {
  0% {
    transform: translateY(-2px) rotate(-3deg) scale(1);
  }
  42% {
    transform: translateY(-7px) rotate(5deg) scale(1.1);
  }
  100% {
    transform: translateY(-2px) rotate(-3deg) scale(1);
  }
}

@keyframes featureIconSpin {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.14) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes featureRipple {
  0% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(20);
  }
}

/* ===== OUR STORY SECTION ===== */
.story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
  padding: 50px clamp(18px, 4vw, 56px) 86px;
  background: transparent;
}

.story-media,
.story-content {
  height: clamp(390px, 34vw, 430px);
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.story-media {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line-soft));
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.story-media:hover,
.story-content:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line-soft));
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.36), 0 0 34px color-mix(in srgb, var(--accent) 12%, transparent);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.46)),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%);
}

.story-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line-soft));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 94%, transparent), color-mix(in srgb, var(--surface-2) 92%, transparent));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 52px rgba(0, 0, 0, 0.22);
}

.story-content::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 12px;
  pointer-events: none;
}

.story-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--accent) 78%, var(--text-main));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.story-content h2 {
  font-family: "Audiowide", sans-serif;
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  color: var(--text-main);
  letter-spacing: 0;
}

.story-content p {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.story-content strong {
  color: var(--text-main);
  font-size: 16px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.story-stats span {
  min-width: 0;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line-soft));
  border-radius: 14px;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.story-stats span:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line-soft));
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-2));
}

.story-stats strong {
  display: block;
  color: color-mix(in srgb, var(--accent) 78%, var(--text-main));
  font-size: 19px;
}

.contact-page-main,
.policy-page-main {
  padding: 0 0 24px;
}

.collection-hero {
  padding: 56px 50px 24px;
  text-align: center;
}

.collection-kicker {
  margin: 0 0 12px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.collection-hero h1 {
  margin: 0 0 16px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.05;
}

.collection-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-page-grid,
.policy-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 12px 50px 80px;
}

.contact-card,
.policy-card,
.contact-form-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  color: var(--text-main);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 96%, transparent), color-mix(in srgb, var(--surface-2) 94%, transparent));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-card::before,
.policy-card::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 68%);
  pointer-events: none;
}

.contact-card h2,
.policy-card h2,
.contact-form-card h2 {
  margin: 0 0 18px;
  color: var(--text-main);
  font-family: "Audiowide", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
}

html[data-theme="light"] .contact-card,
html[data-theme="light"] .policy-card,
html[data-theme="light"] .contact-form-card {
  background: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .contact-details-list li,
html[data-theme="light"] .policy-feature-list li,
html[data-theme="light"] .contact-helper-text,
html[data-theme="light"] .contact-counter-text {
  color: var(--text-muted);
}

.contact-stack {
  display: grid;
  gap: 22px;
}

.contact-details-list,
.policy-feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details-list li,
.policy-feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-details-list i,
.policy-feature-list i {
  color: #ff5b93;
  margin-top: 4px;
}

.contact-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-link-pills a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--button-soft-bg);
  color: var(--button-soft-text);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-link-pills a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(196, 61, 255, 0.2), rgba(255, 77, 125, 0.26));
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.footer-search-form input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  color: var(--text-main);
  background: var(--field-strong-bg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form select option {
  color: var(--text-main);
  background: var(--surface-3);
}

html[data-theme="light"] .contact-form select {
  color-scheme: light;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.footer-search-form input:focus {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: var(--field-strong-bg);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form button,
.footer-search-form button {
  border: 0;
  border-radius: 999px;
  color: var(--button-solid-text);
  font-weight: 700;
  cursor: pointer;
  background: var(--button-solid-bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button {
  width: fit-content;
  padding: 16px 28px;
}

.contact-form button:hover,
.footer-search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 0, 80, 0.22);
}

.policy-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.policy-card + .policy-card {
  margin-top: 24px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  padding: 18px 54px 86px;
}

.categories-header {
  text-align: center;
  margin-bottom: 28px;
}

.categories-header h3 {
  margin: 0;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(24px, 3vw, 46px);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 225px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: #17161d;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.category-card:hover {
  transform: translateY(-2px);
}

.category-image {
  width: 116%;
  height: 206px;
  object-fit: contain;
  display: block;
  margin: -10px auto -8px;
  filter: none;
  box-shadow: none;
  background: transparent;
}

.category-card:nth-child(1) .category-image {
  width: 112%;
  height: 198px;
  margin-top: -2px;
}

.category-card:nth-child(2) .category-image {
  width: 122%;
  height: 214px;
  margin-top: -16px;
}

.category-card:nth-child(3) .category-image {
  width: 118%;
  height: 210px;
  margin-top: -14px;
}

.category-card:nth-child(4) .category-image {
  width: 114%;
  height: 204px;
  margin-top: -8px;
}

.category-content h3 {
  margin: 0 0 12px;
  font-family: "Audiowide", sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.category-content a,
.category-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e35cff;
  font-size: 14px;
  font-weight: 500;
}

/* ===== HOME TOP PRODUCTS ===== */
.home-products-section {
  padding: 6px 50px 96px;
}

.weekly-deals-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  gap: 28px;
  margin: 0 36px 92px;
  padding: 0 0 0 64px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24, 24, 29, 0.98), rgba(24, 24, 29, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.weekly-deals-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  padding: 58px 0;
}

.weekly-deals-copy h2 {
  margin: 0 0 20px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.02;
}

.weekly-deals-copy p {
  max-width: 520px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.65;
}

.weekly-deals-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 16px 30px;
  border-radius: 999px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: linear-gradient(90deg, #9333ea, #ff4d7d);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.weekly-deals-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 0, 80, 0.22);
}

.weekly-deals-media {
  --weekly-deals-image-offset: 84px;
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 0;
  overflow: hidden;
  background:
    url("../IMAGES/fahad&basit.png") 88% calc(100% + var(--weekly-deals-image-offset)) / auto 112% no-repeat,
    radial-gradient(circle at 28% 28%, rgba(124, 58, 237, 0.18), transparent 28%),
    radial-gradient(circle at 76% 42%, rgba(255, 0, 80, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(18, 20, 28, 0.85), rgba(15, 17, 24, 0.98));
}

.weekly-deals-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 24, 29, 1) 0%, rgba(24, 24, 29, 0.84) 18%, rgba(24, 24, 29, 0.08) 42%),
    radial-gradient(circle at 58% 50%, rgba(16, 144, 255, 0.16), transparent 28%),
    radial-gradient(circle at 76% 28%, rgba(255, 0, 110, 0.14), transparent 24%);
  z-index: 1;
  pointer-events: none;
}

.weekly-deals-image {
  display: none;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin: 0 36px 48px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 80, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 17, 24, 0.98), rgba(10, 12, 18, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.faq-kicker {
  margin: 0 0 14px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.faq-intro h2 {
  margin: 0 0 18px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.05;
}

.faq-intro p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(255, 0, 80, 0.22);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  color: var(--text-main);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.faq-question i {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--button-solid-text);
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.82), rgba(124, 58, 237, 0.82));
  transition: transform 0.24s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px 22px;
  transform: translateY(-4px);
  transition:
    height 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.home-products-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-products-kicker {
  margin: 0 0 12px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.home-products-header h2 {
  margin: 0 0 14px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  white-space: normal;
}

.home-products-description {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-products-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.home-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.home-carousel-arrow {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--button-soft-border);
  border-radius: 50%;
  color: var(--button-soft-text);
  background: var(--button-soft-bg);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.home-carousel-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 0, 80, 0.16);
  border-color: rgba(255, 0, 80, 0.28);
}

.home-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-carousel-arrow:disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-product-card {
  position: relative;
  flex: 0 0 calc((100% - 84px) / 4);
  min-height: 100%;
  padding: 18px 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  background: rgba(20, 20, 26, 0.96);
  color: var(--text-main);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.home-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.home-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 0, 80, 0.14);
  color: #ffb2c8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.home-product-image-wrap {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
}

.home-product-image {
  width: 100%;
  max-width: 280px;
  max-height: 280px;
  object-fit: contain;
}

.home-product-title {
  margin: 0 0 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.home-product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--stars-color);
  font-size: 13px;
}

.home-product-rating span {
  color: var(--text-muted);
}

.home-product-price {
  text-align: center;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 800;
}

.home-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.home-carousel-dot {
  width: 28px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.home-carousel-dot.active {
  background: linear-gradient(90deg, var(--secondary-soft), var(--accent-strong));
  transform: scaleX(1.1);
}

/* ===== MEDIA SHOWCASE SECTION ===== */
.media-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 0 50px 90px;
}

.media-card {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background: #10131b;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.02) 20%, rgba(7, 10, 16, 0.88) 100%);
  pointer-events: none;
}

.media-card-image-asset,
.media-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-card-content {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 28px;
  z-index: 1;
}

.media-card-content h3 {
  margin: 0 0 18px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.media-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--on-accent);
  font-size: 16px;
  font-weight: 600;
}

.media-controls {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.media-control-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--button-soft-text);
  background: rgba(10, 13, 20, 0.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.media-control-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 0, 80, 0.16);
  border-color: rgba(255, 0, 80, 0.28);
}

.media-control-btn i {
  font-size: 16px;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: color-mix(in srgb, var(--surface-3) 88%, transparent);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2000;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transform: translateX(-50%);
}

.search-box {
  width: min(760px, 100%);
  background: transparent;
}

.search-bar {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.category {
  padding: 16px 22px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.search-bar input {
  flex: 1;
  min-width: 0;
  padding: 17px 10px;
  border: 0;
  outline: none;
  color: #111827;
  background: transparent;
}

.search-btn {
  border: 0;
  padding: 17px 26px;
  color: var(--text-main);
  background: linear-gradient(90deg, var(--secondary), var(--accent-strong));
  cursor: pointer;
}

.popular {
  margin-top: 28px;
  color: #334155;
}

.popular p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

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

.tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  color: #0f172a;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tags span:hover {
  color: var(--text-main);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transform: translateY(-2px);
}

/* ===== SEARCH RESULT MODAL ===== */
.result-box {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2100;
}

.result-box.active {
  opacity: 1;
  visibility: visible;
}

.result-content {
  width: min(760px, 100%);
  max-height: min(80vh, 760px);
  overflow-y: auto;
  padding: 42px 36px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--surface-1);
  box-shadow: 0 0 60px var(--accent-glow);
}

.result-content p {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.result-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.result-product-card {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.result-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 80, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.result-product-image-wrap {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.result-product-image {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.result-product-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.result-product-meta {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.result-product-price {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 800;
}

.result-content button {
  padding: 13px 24px;
  border: 0;
  border-radius: 12px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
  cursor: pointer;
}

/* ===== AUTH PAGE LAYOUT ===== */
.auth-page {
  position: relative;
  overflow-x: hidden;
}

.auth-page.auth-pending main,
.auth-page.auth-pending .msg-box,
.auth-page.auth-pending .auth-bg-shape {
  visibility: hidden;
}

.auth-bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
}

.auth-bg-shape-one {
  top: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.55), transparent 70%);
  animation: floatShape 10s ease-in-out infinite;
}

.auth-bg-shape-two {
  right: -120px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.6), transparent 70%);
  animation: floatShape 12s ease-in-out infinite reverse;
}

.auth-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 28px 42px;
}

.auth-showcase,
.auth-panel {
  display: flex;
  align-items: center;
}

.auth-showcase {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding-right: 20px;
  animation: authSlideUp 0.8s ease both;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.auth-back-link:hover {
  transform: translateY(-2px);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

.auth-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.auth-brand h1 {
  max-width: 600px;
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04;
}

.auth-brand p {
  max-width: 560px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.auth-highlights {
  display: grid;
  gap: 12px;
  width: min(440px, 100%);
}

.auth-highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  animation: authSlideUp 0.8s ease both;
}

.auth-highlight-card:nth-child(2) {
  animation-delay: 0.12s;
}

.auth-highlight-card:nth-child(3) {
  animation-delay: 0.22s;
}

.auth-highlight-card i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.2), rgba(168, 85, 247, 0.22));
  color: #ffb2c8;
}

.auth-panel {
  justify-content: center;
}

/* ===== AUTH CARD + FORMS ===== */
.auth-box {
  position: relative;
  width: min(470px, 100%);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 10, 16, 0.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  animation: authCardFloat 0.9s ease both;
}

.auth-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.auth-tabs button {
  flex: 1;
  padding: 12px;
  border: 0;
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.auth-tabs button.active {
  color: var(--text-main);
  background: linear-gradient(90deg, var(--accent), var(--secondary-soft));
  box-shadow: 0 8px 24px rgba(255, 0, 80, 0.22);
}

.auth-form {
  display: none;
  opacity: 0;
  transform: translateY(18px);
}

.auth-form.active {
  display: block;
  animation: authFormEnter 0.45s ease forwards;
}

.auth-form h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-subtitle {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.auth-field {
  margin-bottom: 14px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text-main);
  background: var(--field-strong-bg);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.auth-form input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 82%, transparent);
}

.auth-form input:focus {
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  background: color-mix(in srgb, var(--field-strong-bg) 82%, var(--surface-hover));
  transform: translateY(-1px);
}

.auth-form button[type="submit"] {
  width: 100%;
  margin-top: 6px;
  padding: 14px 18px;
  border: 0;
  border-radius: 14px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 20%, transparent);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 0, 80, 0.26);
}

/* ===== MESSAGE BOX / TOAST ===== */
.msg-box {
  position: fixed;
  top: 24px;
  right: 24px;
  min-width: 280px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-width: 4px;
  border-radius: 16px;
  color: var(--text-main);
  background: var(--toast-bg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.msg-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.msg-box.success {
  border-left-color: var(--success);
}

.msg-box.error {
  border-left-color: var(--danger);
}

/* ===== SHARED FOOTER ===== */
.site-footer {
  padding: 72px 50px 36px;
  background: #17171c;
}

.footer-newsletter {
  max-width: 780px;
  margin: 0 auto 92px;
  text-align: center;
}

.footer-newsletter h2 {
  margin: 0 0 18px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.15;
}

.footer-newsletter p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.footer-subscribe-form {
  max-width: 570px;
  margin: 0 auto;
  padding: 6px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
}

.footer-subscribe-form input {
  flex: 1;
  min-width: 0;
  padding: 18px 22px;
  border: 0;
  outline: none;
  color: #111827;
  background: transparent;
}

.footer-subscribe-form input::placeholder {
  color: #94a3b8;
}

.footer-subscribe-form button {
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
  cursor: pointer;
}

.footer-branding {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 34px;
}

.footer-logo-image {
  width: auto;
  height: 39px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}


.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-bottom: 34px;
}

.footer-links a {
  position: relative;
  padding: 8px 4px;
  color: #f3f4f6;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #9333ea, #ff5b93);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.footer-links a:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-dropdown-item {
  position: relative;
}

.footer-dropdown-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-dropdown-item i {
  font-size: 11px;
  transition: transform 0.22s ease;
}

.footer-dropdown-item.dropdown-open i,
.footer-dropdown-item:hover i {
  transform: rotate(180deg);
}

.footer-dropdown-menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-3);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px) scale(0.96);
  transform-origin: bottom center;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 5;
}

.footer-dropdown-item.dropdown-open .footer-dropdown-menu,
.footer-dropdown-item:hover .footer-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.footer-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.footer-dropdown-menu a::after {
  display: none;
}

.footer-dropdown-menu a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--button-solid-text);
  background: var(--button-solid-bg);
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.commerce-main {
  padding: 0 0 60px;
}

.commerce-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  padding: 12px 50px 40px;
}

.commerce-panel,
.commerce-summary,
.commerce-empty,
.checkout-summary-panel,
.thank-you-panel {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: var(--surface-1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.commerce-panel-header,
.commerce-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.commerce-panel-header h2,
.commerce-summary-header h2,
.thank-you-panel h2 {
  margin: 0;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
}

.commerce-panel-header span,
.commerce-summary-header span,
.checkout-summary-item span,
.commerce-empty p,
.commerce-item-details p,
.thank-you-meta,
.thank-you-panel p {
  color: var(--text-muted);
}

.commerce-stack {
  display: grid;
  gap: 18px;
}

.commerce-item-card {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: var(--button-soft-bg);
  border: 1px solid var(--line-soft);
}

.commerce-item-media {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.commerce-item-media img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
}

.commerce-item-category {
  margin: 0 0 8px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.commerce-item-details h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.commerce-item-price {
  margin-top: 10px;
  color: var(--text-main);
  font-weight: 700;
}

.commerce-item-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.commerce-qty-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.commerce-qty-box button,
.commerce-primary-btn,
.commerce-remove-btn,
.commerce-secondary-link,
.commerce-action-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.commerce-qty-box button {
  width: 32px;
  height: 32px;
  color: var(--button-soft-text);
  background: var(--button-soft-bg);
}

.commerce-primary-btn,
.commerce-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
}

.commerce-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--button-soft-text);
  background: var(--button-soft-bg);
}

.commerce-remove-btn {
  padding: 10px 16px;
  color: #ff9fc0;
  background: rgba(255, 0, 80, 0.08);
}

.commerce-summary-list,
.checkout-summary-list,
.thank-you-items {
  display: grid;
  gap: 12px;
}

.commerce-summary-row,
.checkout-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.commerce-summary-row:last-child,
.checkout-summary-item:last-child {
  border-bottom: 0;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

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

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  color: var(--text-main);
  background: var(--field-strong-bg);
  outline: none;
}

.checkout-form textarea {
  min-height: 140px;
  resize: vertical;
}

.commerce-empty {
  text-align: center;
}

.commerce-empty h2 {
  margin-top: 0;
  font-family: "Audiowide", sans-serif;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 28px;
  padding: 12px 50px 40px;
}

.tracking-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--button-soft-text);
  background: var(--button-soft-bg);
}

.icon-box[role="link"] {
  cursor: pointer;
}

.product-secondary-action.is-active {
  color: #ffd45a;
  background: rgba(255, 212, 90, 0.12);
}

/* ===== SHARED ANIMATIONS ===== */
@keyframes authSlideUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes promoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes authCardFloat {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes authFormEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, 22px, 0);
  }
}

@keyframes cursorNeonPulse {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 980px) {
  .hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px 22px 56px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .hero-copy p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-wordmark {
    font-size: clamp(72px, 20vw, 150px);
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 22px 42px;
  }

  .story-section {
    grid-template-columns: 1fr;
    padding: 12px 22px 54px;
  }

  .categories-section {
    padding: 4px 22px 60px;
  }

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

  .home-products-section {
    padding: 4px 22px 60px;
  }

  .home-products-header {
    margin-bottom: 28px;
  }

  .home-product-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .home-carousel-track {
    gap: 20px;
  }

  .media-showcase {
    grid-template-columns: 1fr;
    padding: 0 22px 64px;
  }

  .media-card {
    min-height: 360px;
  }

  .media-card-content {
    left: 28px;
    right: 28px;
    bottom: 24px;
  }

  .story-media,
  .story-content {
    height: auto;
    min-height: 320px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .weekly-deals-section {
    grid-template-columns: 1fr;
    margin: 0 22px 68px;
    padding: 34px 24px 0;
    gap: 18px;
  }

  .weekly-deals-copy {
    max-width: 100%;
    padding: 8px 0 0;
    text-align: center;
    align-items: center;
  }

  .weekly-deals-copy p {
    margin-bottom: 28px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    margin: 0 22px 40px;
    padding: 30px 24px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    padding: 28px 22px 36px;
  }

  .auth-showcase {
    padding-right: 0;
  }

  .topbar,
  .navbar {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-footer {
    padding: 56px 22px 28px;
  }

  .theme-toggle-button {
    min-width: 48px;
    padding: 0;
  }

  .theme-toggle-label {
    display: none;
  }

  .footer-newsletter {
    margin-bottom: 64px;
  }

  .footer-newsletter p {
    font-size: 16px;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-banner {
    gap: 12px;
    padding: 20px 16px 44px;
  }

  .hero-actions {
    margin-bottom: 24px;
    justify-content: stretch;
  }

  .hero-button {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-wordmark {
    letter-spacing: 4px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-item {
    padding: 14px 0;
  }

  .feature-icon {
    width: 82px;
    height: 82px;
  }

  .feature-icon img {
    width: 40px;
    height: 40px;
  }

  .story-content {
    padding: 32px 24px;
  }

  .story-content p {
    font-size: 14px;
  }

  .story-stats {
    gap: 10px;
  }

  .story-stats span {
    min-height: 68px;
  }

  .story-section {
    padding: 8px 16px 44px;
  }

  .categories-section {
    padding: 4px 16px 48px;
  }

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

  .category-card {
    min-height: 220px;
  }

  .home-products-header {
    margin-bottom: 24px;
  }

  .home-products-description {
    font-size: 15px;
  }

  .home-products-carousel {
    gap: 0;
  }

  .home-carousel-arrow {
    display: none;
  }

  .home-product-card {
    flex-basis: 100%;
    padding: 16px 16px 22px;
  }

  .home-product-image-wrap {
    height: 250px;
  }

  .home-product-title {
    font-size: 17px;
  }

  .home-product-price {
    font-size: 18px;
  }

  .home-carousel-dots {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .media-showcase {
    padding: 0 16px 48px;
  }

  .category-image {
    width: 108%;
    height: 182px;
    margin-top: -8px;
  }

  .media-card {
    min-height: 300px;
  }

  .media-card-content h3 {
    font-size: 24px;
  }

  .media-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .weekly-deals-section {
    margin: 0 16px 54px;
    padding: 28px 16px 0;
  }

  .faq-section {
    margin: 0 16px 32px;
    padding: 24px 16px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px;
  }

  .media-controls {
    top: 16px;
    right: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .topbar {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .account-menu {
    width: 100%;
  }

  .right-account {
    width: 100%;
    justify-content: space-between;
  }

  .account-dropdown {
    width: 100%;
  }

  .navbar {
    gap: 18px;
    flex-wrap: wrap;
  }

  .search-bar {
    flex-direction: column;
    border-radius: 28px;
  }

  .category,
  .search-bar input,
  .search-btn {
    width: 100%;
  }

  .search-btn {
    border-radius: 0 0 26px 26px;
  }

  .result-content {
    padding: 34px 24px;
  }

  .result-content p {
    font-size: 22px;
  }

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

  .auth-box {
    padding: 22px;
  }

  .auth-brand h1 {
    font-size: 34px;
  }

  .auth-brand p {
    font-size: 16px;
  }

  .msg-box {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .footer-newsletter h2 {
    font-size: 22px;
  }

  .footer-subscribe-form {
    flex-direction: column;
    border-radius: 28px;
    background: transparent;
    padding: 0;
    gap: 12px;
  }

  .footer-subscribe-form input,
  .footer-subscribe-form button {
    width: 100%;
    border-radius: 999px;
  }

  .footer-subscribe-form input {
    background: #ffffff;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-height: 860px) and (min-width: 981px) {
  .auth-shell {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .auth-showcase {
    gap: 18px;
  }

  .auth-brand h1 {
    font-size: clamp(32px, 3.8vw, 54px);
  }

  .auth-brand p {
    font-size: 16px;
    line-height: 1.5;
  }

  .auth-highlights {
    gap: 10px;
  }

  .auth-highlight-card {
    padding: 14px 16px;
  }

  .auth-box {
    padding: 22px;
  }

  .auth-subtitle {
    margin-bottom: 16px;
  }

  .auth-field {
    margin-bottom: 12px;
  }
}

/* ===== FOOTER OVERRIDES ===== */
.home-newsletter {
  padding: 72px 50px 24px;
  background: #17171c;
}

.home-newsletter-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.home-newsletter h2 {
  margin: 0 0 18px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.15;
}

.home-newsletter p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.home-newsletter-form,
.footer-subscribe-form {
  display: flex;
  align-items: center;
  gap: 0;
}

.home-newsletter-form {
  max-width: 570px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.home-newsletter-form input,
.footer-subscribe-form input {
  flex: 1;
  min-width: 0;
  padding: 18px 22px;
  border: 0;
  outline: none;
  background: transparent;
}

.home-newsletter-form button,
.footer-subscribe-form button {
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
  cursor: pointer;
}

.site-footer {
  padding: 64px 74px 40px;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 80, 0.18), transparent 24%),
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(10, 12, 18, 0.98), rgba(7, 8, 12, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.35fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
  margin: 0 0 18px;
  font-family: "Audiowide", sans-serif;
  font-size: 17px;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.footer-column p,
.footer-column a {
  display: block;
  margin: 0 0 8px;
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.footer-column p {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  text-align: left;
}

.footer-column {
  text-align: left;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--secondary-soft));
  transition: transform 0.25s ease;
}

.footer-column a:hover {
  color: var(--text-main);
  background: var(--surface-hover);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.footer-column:first-child p,
.footer-column:first-child a {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  column-gap: 10px;
  width: 100%;
}

.footer-column:first-child p i,
.footer-column:first-child a i {
  width: 16px;
  font-size: 14px;
  text-align: center;
}

.footer-column a:hover::after {
  transform: scaleX(1);
}

.footer-column-wide {
  min-width: 0;
  max-width: 100%;
  grid-column: auto;
}

.footer-search-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.footer-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}

.footer-search-form input {
  padding: 14px 18px;
  border-radius: 999px;
}

.footer-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.footer-search-form button {
  flex: 0 0 auto;
  min-width: 108px;
  padding: 14px 22px;
}

.footer-subscribe-form-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 6px;
  width: 100%;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-subscribe-form-compact input {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 14px 20px;
  border: 0;
  outline: none;
  color: var(--text-main);
  font-size: 15px;
  background: transparent;
}

.footer-subscribe-form-compact input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 78%, transparent);
}

.footer-subscribe-form-compact button {
  flex: 0 0 auto;
  min-width: 102px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--button-solid-text);
  font-weight: 700;
  background: var(--button-solid-bg);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-subscribe-form-compact button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 0, 80, 0.22);
}

.footer-payments-title {
  margin-top: 0;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.payment-badge {
  width: 44px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.payment-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.payment-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(255, 0, 80, 0.16);
}

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-socials {
  margin-bottom: 0;
  margin-top: 28px;
  justify-content: center;
  gap: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--button-solid-bg);
  color: var(--button-solid-text);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 15px;
}

.floating-actions {
  position: fixed;
  right: 12px;
  bottom: 72px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-action-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid color-mix(in srgb, var(--accent) 72%, var(--button-soft-border));
  border-radius: 50%;
  background: var(--button-soft-bg);
  color: #ff6ba8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-action-btn.hidden {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
}

.floating-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 0, 80, 0.2);
}

.cookie-consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text-main);
  background: color-mix(in srgb, var(--surface-3) 96%, black);
  box-shadow: var(--shadow-lg);
}

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.cookie-consent-options[hidden] {
  display: none;
}

.cookie-consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent-actions button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--text-main);
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent-primary {
  border-color: transparent !important;
  background: var(--hero-button-gradient);
}

.cookie-consent-secondary {
  background: rgba(255, 255, 255, 0.06);
}

/* ===== ACCESSIBILITY WIDGET ===== */
.accessibility-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2300;
  pointer-events: none;
}

.accessibility-fab,
.accessibility-panel,
.accessibility-reading-line {
  pointer-events: auto;
}

.accessibility-fab {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent) 56%, white);
  border-radius: 999px;
  color: var(--button-solid-text);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 84%, white), color-mix(in srgb, var(--secondary) 52%, var(--accent)));
  box-shadow: 0 18px 36px color-mix(in srgb, var(--accent) 24%, transparent);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accessibility-fab i {
  font-size: 24px;
}

.accessibility-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px color-mix(in srgb, var(--accent) 32%, transparent);
}

.accessibility-panel {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: min(92vw, 390px);
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text-main);
  background: color-mix(in srgb, var(--surface-3) 96%, #050609);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.accessibility-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.accessibility-panel-header,
.accessibility-master,
.accessibility-field,
.accessibility-actions {
  display: flex;
  align-items: center;
}

.accessibility-panel-header {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.accessibility-panel-header span,
.accessibility-section-title,
.accessibility-field span,
.accessibility-master span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accessibility-panel-header strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.accessibility-panel-header button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--text-main);
  background: var(--button-soft-bg);
  cursor: pointer;
}

.accessibility-master {
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--button-soft-bg);
}

.accessibility-master input {
  width: 44px;
  height: 24px;
  accent-color: var(--accent);
}

.accessibility-section {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.accessibility-stepper {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.accessibility-stepper button,
.accessibility-actions button,
.accessibility-grid button {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text-main);
  background: var(--button-soft-bg);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.accessibility-stepper button {
  height: 42px;
}

.accessibility-stepper output {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text-main);
  background: var(--button-soft-bg);
  font-weight: 700;
}

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

.accessibility-grid button {
  min-height: 82px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 10px 8px;
  text-align: center;
}

.accessibility-grid button i {
  font-size: 20px;
}

.accessibility-grid button span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.accessibility-grid button.is-active,
.accessibility-stepper button:hover,
.accessibility-actions button:hover,
.accessibility-grid button:hover {
  border-color: color-mix(in srgb, var(--accent) 58%, white);
  background: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.06));
  transform: translateY(-1px);
}

.accessibility-field {
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0;
}

.accessibility-field select {
  width: 170px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text-main);
  background: var(--surface-2);
}

.accessibility-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.accessibility-actions button {
  flex: 1 1 110px;
  min-height: 42px;
  padding: 0 12px;
  font-weight: 700;
}

.accessibility-reading-line {
  position: fixed;
  top: -16px;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 2290;
  display: none;
  pointer-events: none;
  border-top: 2px solid #ffe45c;
  border-bottom: 2px solid #ffe45c;
  background: rgba(255, 228, 92, 0.08);
  box-shadow: 0 0 18px rgba(255, 228, 92, 0.18);
}

html[data-accessibility-enabled="true"][data-accessibility-text-size="1"] body {
  font-size: 1.08rem;
}

html[data-accessibility-enabled="true"][data-accessibility-text-size="2"] body {
  font-size: 1.16rem;
}

html[data-accessibility-enabled="true"][data-accessibility-text-size="3"] body {
  font-size: 1.24rem;
}

html[data-accessibility-enabled="true"][data-accessibility-text-size="4"] body {
  font-size: 1.32rem;
}

html[data-accessibility-enabled="true"][data-accessibility-text-size="-1"] body {
  font-size: 0.94rem;
}

html.a11y-highlight-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
  outline: 2px solid color-mix(in srgb, #ffe45c 84%, transparent);
  outline-offset: 3px;
}

html.a11y-stop-animation *,
html.a11y-stop-animation *::before,
html.a11y-stop-animation *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-large-icons i,
html.a11y-large-icons .icon-box,
html.a11y-large-icons .icon-button {
  font-size: 1.22em !important;
}

html.a11y-large-icons .icon-box,
html.a11y-large-icons .icon-button {
  min-width: 52px;
  min-height: 52px;
}

html.a11y-high-contrast {
  --text-main: #ffffff;
  --text-muted: #f1f5f9;
  --line-soft: rgba(255, 255, 255, 0.42);
  --surface-1: #000000;
  --surface-2: #050505;
  --surface-3: #000000;
  --page-bg: #000000;
  --accent: #ffe45c;
  --secondary: #00e5ff;
}

html.a11y-readable-font body {
  font-family: Verdana, Arial, sans-serif !important;
  letter-spacing: 0.02em;
}

html.a11y-line-spacing body,
html.a11y-line-spacing p,
html.a11y-line-spacing li {
  line-height: 1.85 !important;
}

html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: pointer !important;
}

html.a11y-reading-guide .accessibility-reading-line {
  display: block;
}

html[data-accessibility-filter="grayscale"] body {
  filter: grayscale(1);
}

html[data-accessibility-filter="protanopia"] body {
  filter: sepia(0.25) saturate(0.8) hue-rotate(-18deg);
}

html[data-accessibility-filter="deuteranopia"] body {
  filter: sepia(0.2) saturate(0.75) hue-rotate(24deg);
}

html[data-accessibility-filter="tritanopia"] body {
  filter: sepia(0.18) saturate(0.85) hue-rotate(150deg);
}

html[data-accessibility-filter="warm"] body {
  filter: sepia(0.28) saturate(0.92);
}

html[data-accessibility-text-color="white"] body {
  color: #ffffff !important;
}

html[data-accessibility-text-color="white"] body :where(h1, h2, h3, h4, h5, h6, p, span, label, small, li, a, button, input, textarea, select, strong) {
  color: #ffffff !important;
}

html[data-accessibility-text-color="black"] body {
  color: #000000 !important;
}

html[data-accessibility-text-color="black"] body :where(h1, h2, h3, h4, h5, h6, p, span, label, small, li, a, button, input, textarea, select, strong) {
  color: #000000 !important;
}

html[data-accessibility-text-color="yellow"] body {
  color: #ffe45c !important;
}

html[data-accessibility-text-color="yellow"] body :where(h1, h2, h3, h4, h5, h6, p, span, label, small, li, a, button, input, textarea, select, strong) {
  color: #ffe45c !important;
}

html[data-accessibility-text-color="cyan"] body {
  color: #7dd3fc !important;
}

html[data-accessibility-text-color="cyan"] body :where(h1, h2, h3, h4, h5, h6, p, span, label, small, li, a, button, input, textarea, select, strong) {
  color: #7dd3fc !important;
}

html[data-accessibility-bg-color="dark"] body {
  background: #000000 !important;
}

html[data-accessibility-bg-color="dark"] {
  --surface-1: #050505;
  --surface-2: #080808;
  --surface-3: #000000;
  --page-bg: #000000;
}

html[data-accessibility-bg-color="light"] body {
  background: #ffffff !important;
}

html[data-accessibility-bg-color="light"] {
  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #ffffff;
  --page-bg: #ffffff;
}

html[data-accessibility-bg-color="navy"] body {
  background: #071426 !important;
}

html[data-accessibility-bg-color="navy"] {
  --surface-1: #0a1a31;
  --surface-2: #071426;
  --surface-3: #04101f;
  --page-bg: #071426;
}

html[data-accessibility-bg-color="cream"] body {
  background: #fff8e5 !important;
}

html[data-accessibility-bg-color="cream"] {
  --surface-1: #fff8e5;
  --surface-2: #fff3c9;
  --surface-3: #fff8e5;
  --page-bg: #fff8e5;
}

#zsiq_floatmain {
  right: 10px !important;
  bottom: 120px !important;
}

body.auth-page #zsiq_floatmain {
  display: none !important;
}

.theme-toggle-button,
.icon-button,
.icon-box,
.right-account,
.account-dropdown a,
.account-dropdown button,
.nav-dropdown-menu,
.search-bar,
.result-content,
.commerce-panel,
.commerce-summary,
.checkout-summary-panel,
.commerce-empty,
.contact-card,
.contact-form-card,
.policy-card,
.auth-box,
.account-card {
  color: var(--text-main);
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"],
html[data-theme="neon"] {
  color-scheme: dark;
}

.hero-button,
.weekly-deals-button,
.contact-form button,
.footer-search-form button,
.home-newsletter-form button,
.footer-subscribe-form button,
.footer-subscribe-form-compact button,
.auth-form button[type="submit"],
.commerce-action-link,
.result-content button,
.cookie-consent-actions button:first-child {
  color: var(--button-solid-text) !important;
  background: var(--button-solid-bg) !important;
}

.auth-google-button,
.auth-secondary-button,
.product-link-btn,
.account-actions a,
.account-dropdown-secondary,
.cookie-consent-actions button:not(:first-child) {
  color: var(--button-soft-text) !important;
  border-color: var(--button-soft-border) !important;
  background: var(--button-soft-bg) !important;
}

.home-newsletter,
.site-footer {
  color: var(--text-main);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 16%, transparent), transparent 24%),
    radial-gradient(circle at top left, color-mix(in srgb, var(--secondary) 18%, transparent), transparent 30%),
    color-mix(in srgb, var(--surface-3) 96%, transparent) !important;
  border-top-color: var(--line-soft);
}

.footer-column h3,
.footer-socials a,
.footer-logo,
.home-newsletter h2 {
  color: var(--text-main) !important;
}

.footer-column p,
.footer-column a,
.footer-copy,
.footer-search-label,
.home-newsletter p {
  color: var(--text-muted) !important;
}

.footer-column a:hover,
.footer-socials a:hover {
  color: var(--text-main) !important;
  background: var(--surface-hover);
}

.home-newsletter-form,
.footer-subscribe-form,
.footer-subscribe-form-compact {
  border: 1px solid var(--line-soft);
  background: var(--surface-2) !important;
}

.home-newsletter-form input,
.footer-subscribe-form input,
.footer-subscribe-form-compact input,
.footer-search-form input,
.contact-form-card input,
.contact-form-card textarea,
.checkout-form input,
.checkout-form textarea,
.auth-form input {
  color: var(--text-main) !important;
  background: var(--field-strong-bg);
}

.footer-column-wide {
  max-width: 440px;
}

.footer-column-wide h3 {
  margin-bottom: 16px;
}

.footer-subscribe-form-compact,
.footer-search-form {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
}

.footer-subscribe-form-compact {
  padding: 5px;
  border-radius: 999px;
}

.footer-search-form {
  margin-bottom: 22px;
}

.footer-subscribe-form-compact input,
.footer-search-form input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--text-main) !important;
  background: color-mix(in srgb, var(--surface-2) 84%, transparent) !important;
}

.footer-subscribe-form-compact {
  border-color: var(--line-soft);
  background: color-mix(in srgb, var(--surface-2) 88%, transparent) !important;
}

.footer-subscribe-form-compact input {
  border: 0;
  background: transparent !important;
}

.footer-subscribe-form-compact button,
.footer-search-form button {
  min-width: 102px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  white-space: nowrap;
}

.footer-search-label {
  margin: 4px 0 12px;
}

.footer-payments-title {
  margin: 0 0 14px;
}

.footer-payments {
  gap: 12px;
}

.payment-badge {
  width: 44px;
  height: 30px;
  border-radius: 5px;
}

.motion-tilt.motion-tilt {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0px));
}

.magnetic-hover.magnetic-hover {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
}

.back-to-top-btn {
  border-width: 2px;
  font-size: 18px;
  position: relative;
  background:
    conic-gradient(from -90deg, var(--accent) var(--scroll-fill, 0%), var(--button-soft-bg) var(--scroll-fill, 0%));
}

.back-to-top-btn i {
  position: relative;
  z-index: 1;
}

.back-to-top-btn::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--surface-2);
}

.scroll-down-btn {
  border-width: 2px;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 168, 0.16), rgba(124, 58, 237, 0.18));
}

@media (max-width: 980px) {
  .preloader-panel {
    width: min(100%, 280px);
  }

  .preloader-gear-wrap {
    width: 156px;
    height: 156px;
  }

  .preloader-gear-svg {
    width: 78px;
    height: 78px;
  }

  .preloader-core-ring {
    width: 106px;
    height: 106px;
  }

  .preloader-float-gamepad,
  .preloader-float-mouse,
  .preloader-float-headset,
  .preloader-float-keyboard {
    font-size: 18px;
  }

  .weekly-deals-section {
    grid-template-columns: 1fr;
    margin: 0 22px 68px;
    padding: 34px 24px 0;
    gap: 18px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    margin: 0 22px 40px;
    padding: 30px 24px;
  }

  .weekly-deals-copy {
    max-width: 100%;
    padding: 8px 0 0;
  }

  .weekly-deals-media {
    --weekly-deals-image-offset: 56px;
    min-height: 420px;
    border-radius: 22px;
    background-size: auto 110%, auto, auto, auto;
    background-position: 78% calc(100% + var(--weekly-deals-image-offset)), center, center, center;
  }

  .weekly-deals-image {
      display: none;
    }

  .site-footer {
    padding: 54px 24px 32px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-column-wide {
    grid-column: span 2;
  }

  .contact-page-grid,
  .policy-page-grid {
    grid-template-columns: 1fr;
    padding: 12px 22px 54px;
  }

  .commerce-shell,
  .thank-you-grid,
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .commerce-shell,
  .thank-you-grid {
    padding-left: 22px;
    padding-right: 22px;
  }

  .commerce-item-card {
    grid-template-columns: 1fr;
  }

  .commerce-item-actions {
    justify-items: start;
  }

  .collection-hero {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 640px) {
  .weekly-deals-section {
    margin: 0 16px 54px;
    padding: 28px 16px 0;
  }

  .faq-section {
    margin: 0 16px 32px;
    padding: 24px 16px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px;
  }

  .weekly-deals-copy h2 {
    font-size: 28px;
  }

  .weekly-deals-media {
    --weekly-deals-image-offset: 34px;
    min-height: 300px;
    background-size: auto 108%, auto, auto, auto;
    background-position: 72% calc(100% + var(--weekly-deals-image-offset)), center, center, center;
  }

  .weekly-deals-image {
      display: none;
    }

  .site-footer {
    padding: 46px 18px 28px;
  }

  .collection-hero {
    padding: 34px 16px 18px;
  }

  .collection-hero p {
    font-size: 15px;
  }

  .commerce-shell,
  .thank-you-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .commerce-panel,
  .commerce-summary,
  .commerce-empty,
  .checkout-summary-panel,
  .thank-you-panel {
    padding: 20px 16px;
  }

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

  .footer-subscribe-form-compact {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 24px;
  }

  .footer-subscribe-form-compact button,
  .footer-search-form button {
    width: 100%;
  }

  .contact-form-grid,
  .footer-search-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contact-card,
  .policy-card,
  .contact-form-card {
    padding: 24px 18px;
  }

  .floating-actions {
    right: 6px;
    bottom: 66px;
    gap: 2px;
  }

  #zsiq_floatmain {
    right: 4px !important;
    bottom: 110px !important;
  }

  .cookie-consent-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions button {
    flex: 1 1 140px;
  }

  body.auth-page #zsiq_floatmain {
    display: none !important;
  }
}

/* ===== ACCESSIBILITY + SEARCH ENHANCEMENTS ===== */
.search-overlay {
  place-items: center;
  padding: clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 30%),
    color-mix(in srgb, #02040a 82%, transparent);
  backdrop-filter: blur(8px);
}

.search-overlay .close-btn {
  top: clamp(18px, 4vw, 34px);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-overlay .close-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.search-box {
  width: min(760px, calc(100vw - 40px));
  margin-top: -5vh;
}

.search-bar {
  min-height: 66px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, rgba(255, 255, 255, 0.28));
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 5px color-mix(in srgb, var(--accent) 8%, transparent);
}

.search-category-wrap {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-self: stretch;
  padding: 12px 20px;
  border-right: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.03);
}

.search-category-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.search-category-wrap select {
  width: 100%;
  border: 0;
  padding: 0;
  color: #0f172a;
  background: transparent;
  outline: none;
  font-weight: 700;
}

.search-category-wrap select option {
  color: #0f172a;
  background: #ffffff;
}

.search-bar input {
  min-height: 64px;
  padding: 0 20px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
}

.search-bar input::placeholder {
  color: #64748b;
  opacity: 0.92;
}

.search-btn {
  align-self: stretch;
  min-width: 72px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--button-solid-bg);
}

.popular {
  margin-top: 22px;
  color: rgba(226, 232, 240, 0.84);
}

.popular p {
  color: rgba(226, 232, 240, 0.74);
}

.tags span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.auth-helper-text,
.contact-helper-text {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-counter-text {
  text-align: right;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 86%, white);
  outline-offset: 3px;
}

.admin-pwa-setup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--success) 22%, transparent);
  border-radius: 18px;
  color: var(--text-main);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--success) 10%, transparent), transparent),
    color-mix(in srgb, var(--surface-1) 92%, transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.admin-pwa-setup-copy,
.admin-pwa-setup-actions {
  min-width: 0;
}

.admin-pwa-setup-copy {
  display: grid;
  gap: 4px;
}

.admin-pwa-setup-kicker {
  color: color-mix(in srgb, var(--success) 78%, var(--text-main));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.admin-pwa-setup-copy strong {
  font-size: 17px;
}

.admin-pwa-setup-copy small {
  color: var(--text-muted);
  line-height: 1.45;
}

.admin-pwa-setup-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-pwa-network-status {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);
  border-radius: 999px;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--surface-2) 92%, transparent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.admin-pwa-network-status i,
.admin-network-chip i {
  color: var(--success);
  font-size: 9px;
}

.admin-pwa-network-status.is-offline i,
.admin-network-chip.is-offline i {
  color: #facc15;
}

.admin-pwa-install-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #05070d;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, color-mix(in srgb, var(--success) 82%, white), color-mix(in srgb, var(--accent) 35%, var(--success)));
}

[data-pwa-install-button].is-disabled,
[data-pwa-install-button]:disabled {
  cursor: default;
  opacity: 0.65;
  transform: none;
}

html[data-pwa-standalone="true"] .auth-back-link,
html[data-pwa-standalone="true"] .admin-topbar-actions a[href="index.html"] {
  display: none;
}

@media (max-width: 640px) {
  .search-box {
    width: min(100%, 440px);
    margin-top: 0;
  }

  .search-bar {
    border-radius: 24px;
  }

  .search-category-wrap {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  }

  .search-btn {
    width: 100%;
    min-height: 58px;
  }

  .admin-pwa-setup {
    grid-template-columns: 1fr;
  }

  .admin-pwa-setup-actions {
    justify-content: stretch;
  }

  .admin-pwa-network-status,
  .admin-pwa-install-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
