@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300..800;1,9..144,300..800&family=JetBrains+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   KLEDJE STORE — DESIGN SYSTEM 2026
   Mobile-first · RTL · Responsive Desktop
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* === Spacing === */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 56px;
  --space-10: 72px;
  --space-11: 96px;

  /* === Radius === */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-2xl: 48px;
  --r-pill: 999px;

  /* === Motion === */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.5, 1.5, 0.5, 1);

  --dur-quick: 180ms;
  --dur-base: 320ms;
  --dur-slow: 540ms;
  --dur-slower: 800ms;
  --dur-glacial: 1200ms;

  /* === Typography === */
  --fs-2xs: 11px;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 44px;
  --fs-4xl: 60px;

  --lh-tight: 1.05;
  --lh-snug: 1.25;
  --lh-base: 1.5;
  --lh-loose: 1.7;

  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  /* === Layout === */
  --content-max: 480px;
  --content-pad: 20px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --nav-height: 72px;
  --tab-height: 64px;
  --header-height: 56px;

  /* === Breakpoints (used in media queries) === */
  --bp-sm: 600px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1200px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.2) transparent;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-bg);
  direction: rtl;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; border: none; background: none; padding: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--color-primary); color: white; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: var(--r-pill); }
::-webkit-scrollbar-track { background: transparent; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.skip-link {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--color-primary);
  color: white;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  z-index: 9999;
  transform: translateY(-150%);
  transition: transform var(--dur-base) var(--ease-out-back);
  font-weight: var(--fw-semibold);
}
.skip-link:focus { transform: translateY(0); }

/* ============================================================
   3. THEME — Blush (default)
   ============================================================ */
:root,
[data-theme="blush"] {
  --color-primary: #d4628a;
  --color-primary-soft: #f5e0ee;
  --color-primary-deep: #a84466;
  --color-primary-light: #e88aaa;
  --color-accent: #f1c40f;
  --color-accent-soft: #fef9e0;
  --color-warm: #f5d76e;
  --color-cool: #c9a0dc;
  --color-fresh: #a8d5ba;
  --color-cream: #fdfbf9;

  --color-bg: #fdf2f5;
  --color-surface: #FFFFFF;
  --color-surface-elevated: #FFFFFF;
  --color-overlay: rgba(253, 242, 245, .85);

  --color-text: #2a1a24;
  --color-text-soft: #5a4a54;
  --color-text-muted: #6d5d67;
  --color-text-inverse: #FFFFFF;

  --color-border: rgba(212, 98, 138, .08);
  --color-glass: rgba(255, 255, 255, .65);
  --color-glass-border: rgba(255, 255, 255, .8);

  --gradient-primary: linear-gradient(135deg, #d4628a 0%, #e88aaa 100%);
  --gradient-sunset: linear-gradient(135deg, #f1c40f 0%, #f5d76e 50%, #fceabb 100%);
  --gradient-cool: linear-gradient(135deg, #c9a0dc 0%, #a8c5e8 100%);
  --gradient-fresh: linear-gradient(135deg, #a8d5ba 0%, #c9e4d0 100%);
  --gradient-aurora: linear-gradient(135deg, #d4628a 0%, #c9a0dc 50%, #f1c40f 100%);
  --gradient-text: linear-gradient(135deg, #d4628a 0%, #f1c40f 100%);

  --shadow-xs: 0 1px 2px rgba(212, 98, 138, .04);
  --shadow-sm: 0 2px 8px rgba(212, 98, 138, .06), 0 1px 2px rgba(212, 98, 138, .04);
  --shadow-md: 0 8px 24px rgba(212, 98, 138, .08), 0 2px 6px rgba(212, 98, 138, .04);
  --shadow-lg: 0 20px 50px rgba(212, 98, 138, .12), 0 8px 16px rgba(212, 98, 138, .06);
  --shadow-xl: 0 30px 80px rgba(212, 98, 138, .15), 0 10px 20px rgba(212, 98, 138, .08);
  --shadow-glow: 0 0 40px rgba(241, 196, 15, .35);
  --shadow-primary: 0 10px 30px rgba(212, 98, 138, .25);

  --font-display: 'Fraunces', 'Cairo', serif;
  --font-body: 'Plus Jakarta Sans', 'Cairo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="rose-gold"] {
  --color-primary: #b76e79;
  --color-primary-soft: #f0d8dc;
  --color-primary-deep: #8c4f58;
  --color-primary-light: #d4949c;
  --color-accent: #c9a96e;
  --color-accent-soft: #faf3e8;
  --color-warm: #e8c9a0;
  --color-cool: #c9b8d4;
  --color-fresh: #b8d4c4;
  --color-cream: #fdf8f5;

  --color-bg: #fdf8f5;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-overlay: rgba(253, 248, 245, .85);

  --color-text: #2e1e1e;
  --color-text-soft: #5e4a44;
  --color-text-muted: #7d6d67;
  --color-text-inverse: #ffffff;

  --color-border: rgba(183, 110, 121, .08);
  --color-glass: rgba(255, 255, 255, .7);
  --color-glass-border: rgba(255, 255, 255, .85);

  --gradient-primary: linear-gradient(135deg, #b76e79 0%, #d4949c 100%);
  --gradient-sunset: linear-gradient(135deg, #c9a96e 0%, #e8c9a0 50%, #faf3e8 100%);
  --gradient-cool: linear-gradient(135deg, #c9b8d4 0%, #a8c5e8 100%);
  --gradient-fresh: linear-gradient(135deg, #b8d4c4 0%, #d4e8d8 100%);
  --gradient-aurora: linear-gradient(135deg, #b76e79 0%, #c9b8d4 50%, #c9a96e 100%);
  --gradient-text: linear-gradient(135deg, #b76e79 0%, #c9a96e 100%);

  --shadow-xs: 0 1px 2px rgba(183, 110, 121, .04);
  --shadow-sm: 0 2px 8px rgba(183, 110, 121, .06), 0 1px 2px rgba(183, 110, 121, .04);
  --shadow-md: 0 8px 24px rgba(183, 110, 121, .08), 0 2px 6px rgba(183, 110, 121, .04);
  --shadow-lg: 0 20px 50px rgba(183, 110, 121, .12), 0 8px 16px rgba(183, 110, 121, .06);
  --shadow-xl: 0 30px 80px rgba(183, 110, 121, .15), 0 10px 20px rgba(183, 110, 121, .08);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, .35);
  --shadow-primary: 0 10px 30px rgba(183, 110, 121, .25);

  --font-display: 'Fraunces', 'Cairo', serif;
  --font-body: 'Plus Jakarta Sans', 'Cairo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="midnight"] {
  --color-primary: #6c5ce7;
  --color-primary-soft: #e8e4fc;
  --color-primary-deep: #4a3db5;
  --color-primary-light: #9b8ff0;
  --color-accent: #e94560;
  --color-accent-soft: #fde8ec;
  --color-warm: #f5a623;
  --color-cool: #74b9ff;
  --color-fresh: #55efc4;
  --color-cream: #f8f8fc;

  --color-bg: #f0f0f5;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-overlay: rgba(240, 240, 245, .85);

  --color-text: #1a1a2e;
  --color-text-soft: #4a4a6a;
  --color-text-muted: #7a7a9a;
  --color-text-inverse: #ffffff;

  --color-border: rgba(108, 92, 231, .08);
  --color-glass: rgba(255, 255, 255, .6);
  --color-glass-border: rgba(255, 255, 255, .75);

  --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #9b8ff0 100%);
  --gradient-sunset: linear-gradient(135deg, #f5a623 0%, #f5d76e 50%, #fceabb 100%);
  --gradient-cool: linear-gradient(135deg, #74b9ff 0%, #a8c5e8 100%);
  --gradient-fresh: linear-gradient(135deg, #55efc4 0%, #a8e6cf 100%);
  --gradient-aurora: linear-gradient(135deg, #6c5ce7 0%, #e94560 50%, #f5a623 100%);
  --gradient-text: linear-gradient(135deg, #6c5ce7 0%, #e94560 100%);

  --shadow-xs: 0 1px 2px rgba(108, 92, 231, .04);
  --shadow-sm: 0 2px 8px rgba(108, 92, 231, .06), 0 1px 2px rgba(108, 92, 231, .04);
  --shadow-md: 0 8px 24px rgba(108, 92, 231, .08), 0 2px 6px rgba(108, 92, 231, .04);
  --shadow-lg: 0 20px 50px rgba(108, 92, 231, .12), 0 8px 16px rgba(108, 92, 231, .06);
  --shadow-xl: 0 30px 80px rgba(108, 92, 231, .15), 0 10px 20px rgba(108, 92, 231, .08);
  --shadow-glow: 0 0 40px rgba(233, 69, 96, .35);
  --shadow-primary: 0 10px 30px rgba(108, 92, 231, .25);

  --font-display: 'Fraunces', 'Cairo', serif;
  --font-body: 'Plus Jakarta Sans', 'Cairo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="nude"] {
  --color-primary: #9c7c6c;
  --color-primary-soft: #ede0d8;
  --color-primary-deep: #7a5e4e;
  --color-primary-light: #bfa090;
  --color-accent: #d4a574;
  --color-accent-soft: #faf0e4;
  --color-warm: #e8c9a0;
  --color-cool: #c4b8a8;
  --color-fresh: #c4d4b8;
  --color-cream: #faf6f1;

  --color-bg: #faf6f1;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-overlay: rgba(250, 246, 241, .85);

  --color-text: #2e2420;
  --color-text-soft: #5e4e44;
  --color-text-muted: #8d7d74;
  --color-text-inverse: #ffffff;

  --color-border: rgba(156, 124, 108, .08);
  --color-glass: rgba(255, 255, 255, .7);
  --color-glass-border: rgba(255, 255, 255, .85);

  --gradient-primary: linear-gradient(135deg, #9c7c6c 0%, #bfa090 100%);
  --gradient-sunset: linear-gradient(135deg, #d4a574 0%, #e8c9a0 50%, #faf0e4 100%);
  --gradient-cool: linear-gradient(135deg, #c4b8a8 0%, #a8b8c8 100%);
  --gradient-fresh: linear-gradient(135deg, #c4d4b8 0%, #d4e4c8 100%);
  --gradient-aurora: linear-gradient(135deg, #9c7c6c 0%, #c4b8a8 50%, #d4a574 100%);
  --gradient-text: linear-gradient(135deg, #9c7c6c 0%, #d4a574 100%);

  --shadow-xs: 0 1px 2px rgba(156, 124, 108, .04);
  --shadow-sm: 0 2px 8px rgba(156, 124, 108, .06), 0 1px 2px rgba(156, 124, 108, .04);
  --shadow-md: 0 8px 24px rgba(156, 124, 108, .08), 0 2px 6px rgba(156, 124, 108, .04);
  --shadow-lg: 0 20px 50px rgba(156, 124, 108, .12), 0 8px 16px rgba(156, 124, 108, .06);
  --shadow-xl: 0 30px 80px rgba(156, 124, 108, .15), 0 10px 20px rgba(156, 124, 108, .08);
  --shadow-glow: 0 0 40px rgba(212, 165, 116, .35);
  --shadow-primary: 0 10px 30px rgba(156, 124, 108, .25);

  --font-display: 'Fraunces', 'Cairo', serif;
  --font-body: 'Plus Jakarta Sans', 'Cairo', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.app {
  max-width: var(--content-max);
  margin-inline: auto;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  background: var(--color-bg);
  overflow-x: hidden;
  isolation: isolate;
  padding-bottom: calc(var(--tab-height) + var(--safe-bottom) + 12px);
}

/* Ambient blobs — GPU-safe, reduced on mobile */
.app::before,
.app::after {
  content: '';
  position: fixed;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  opacity: .15;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

.app::before {
  top: -80px;
  inset-inline-end: -80px;
  width: 280px;
  height: 280px;
  background: var(--gradient-aurora);
  animation: blob-float 20s ease-in-out infinite;
}

.app::after {
  bottom: -80px;
  inset-inline-start: -80px;
  width: 240px;
  height: 240px;
  background: var(--gradient-cool);
  opacity: .12;
  animation: blob-float 25s ease-in-out infinite reverse;
}

@keyframes blob-float {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0); }
  33% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(15px, -20px); }
  66% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translate(-15px, 15px); }
}

.container {
  padding-inline: var(--content-pad);
}

/* ============================================================
   5. HEADER
   ============================================================ */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: var(--space-3) var(--content-pad);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: var(--header-height);
  transition: background var(--dur-base) var(--ease-out-expo),
              box-shadow var(--dur-base) var(--ease-out-expo);
}

.app-header.is-scrolled {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: var(--color-overlay);
  border-bottom-color: transparent;
  box-shadow: var(--shadow-xs);
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.app-logo__mark {
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: transform var(--dur-base) var(--ease-spring);
}

.app-logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-logo:hover .app-logo__mark { transform: scale(1.05); }

.app-logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  letter-spacing: -.3px;
  color: var(--color-text);
  line-height: 1;
}

.app-logo__text em {
  font-style: italic;
  color: var(--color-primary);
}

.app-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--color-text);
  transition: all var(--dur-quick) var(--ease-out-expo);
  position: relative;
  flex-shrink: 0;
}

.icon-btn:active { transform: scale(.95); }
.icon-btn:hover { background: var(--color-primary-soft); }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.8; }

.icon-btn__badge {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--color-accent);
  color: white;
  font-size: 9px;
  font-weight: var(--fw-bold);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  border: 2px solid var(--color-surface);
}

@keyframes bounce-in {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ============================================================
   6. MARQUEE
   ============================================================ */
.marquee {
  margin-bottom: var(--space-6);
  padding: 8px 0;
  background: var(--color-primary);
  overflow: hidden;
  position: relative;
  border-radius: var(--r-sm);
  margin-inline: var(--content-pad);
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { right: 0; background: linear-gradient(to left, var(--color-primary), transparent); }
.marquee::after  { left: 0;  background: linear-gradient(to right, var(--color-primary), transparent); }

.marquee__track {
  display: flex;
  gap: var(--space-6);
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: white;
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
}

.marquee__item::before {
  content: '•';
  color: var(--color-accent);
  font-size: 10px;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  margin: 0 var(--content-pad) var(--space-8);
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  min-height: 420px;
  background: var(--color-primary);
  isolation: isolate;
  padding: var(--space-8) var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    var(--color-primary) 0%,
    var(--color-primary-deep) 60%,
    var(--color-primary) 100%
  );
  opacity: 1;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  border-radius: var(--r-lg);
  bottom: -60px;
  inset-inline-end: -30px;
  filter: blur(40px);
  opacity: .3;
  z-index: -1;
}

.hero__greeting {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, .15);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  color: white;
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  width: fit-content;
  margin-bottom: var(--space-3);
  border: 1px solid rgba(255,255,255,.2);
  animation: slide-down var(--dur-slow) var(--ease-out-expo);
}

.hero__greeting-dot {
  width: 5px;
  height: 5px;
  background: var(--color-fresh);
  border-radius: var(--r-pill);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  color: white;
  margin: 0 0 var(--space-3);
  letter-spacing: -1px;
  animation: slide-up var(--dur-slower) var(--ease-out-expo);
}

.hero__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  display: inline-block;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.85);
  margin: 0 0 var(--space-5);
  max-width: 90%;
  line-height: var(--lh-base);
  font-weight: var(--fw-normal);
  animation: slide-up var(--dur-slower) var(--ease-out-expo) .1s backwards;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  animation: slide-up var(--dur-slower) var(--ease-out-expo) .2s backwards;
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 44px;
  padding: 0 var(--space-5);
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--dur-quick) var(--ease-out-expo);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
  letter-spacing: .2px;
}

.btn:active { transform: scale(.97); }

.btn--primary {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

.btn--solid {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn--solid:hover { transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn--sm { height: 36px; padding: 0 var(--space-3); font-size: var(--fs-2xs); }
.btn--lg { height: 48px; padding: 0 var(--space-6); font-size: var(--fs-sm); }
.btn--block { width: 100%; }

.btn svg { width: 16px; height: 16px; stroke-width: 2; flex-shrink: 0; }

/* ============================================================
   10. HERO IMAGE
   ============================================================ */
.hero__visual {
  position: relative;
  margin-top: auto;
  margin-inline: calc(-1 * var(--space-5));
  margin-bottom: -1px;
  height: 250px;
  pointer-events: none;
}

.hero__main-image {
  position: absolute;
  bottom: -30px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 300px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 -16px 48px rgba(0,0,0,.12);
  animation: hero-image-enter var(--dur-glacial) var(--ease-out-expo) .3s backwards;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}

@keyframes hero-image-enter {
  from { opacity: 0; transform: translateX(-50%) translateY(40px) scale(.95); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.hero__chip {
  position: absolute;
  background: white;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  animation: chip-float 3s ease-in-out infinite;
  pointer-events: auto;
}

.hero__chip--1 { top: 20px; inset-inline-start: 20px; animation-delay: 0s; }
.hero__chip--2 { top: 80px; inset-inline-end: 30px; animation-delay: 1s; }
.hero__chip--3 { bottom: 60px; inset-inline-start: 10px; animation-delay: 2s; }

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

.hero__chip-emoji {
  width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  color: white;
  font-size: 11px;
}
.hero__chip-emoji--1 { background: var(--gradient-fresh); }
.hero__chip-emoji--2 { background: var(--gradient-sunset); }
.hero__chip-emoji--3 { background: var(--gradient-cool); }

/* ============================================================
   11. STATS BAR
   ============================================================ */
.stats {
  margin: 0 var(--content-pad) var(--space-6);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-aurora);
  opacity: .04;
  pointer-events: none;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: var(--fs-2xs);
  color: var(--color-text-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: var(--fw-medium);
}

/* ============================================================
   12. SECTION HEADER
   ============================================================ */
.section {
  margin-bottom: var(--space-6);
  scroll-margin-top: 64px;
}

.section__header {
  padding: 0 var(--content-pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  gap: var(--space-2);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.3px;
}

.section__title em {
  font-style: italic;
  color: var(--color-primary);
}

.section__link {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  transition: background var(--dur-quick) var(--ease-out-expo);
}

.section__link:hover { background: var(--color-primary-soft); }
.section__link svg { width: 12px; height: 12px; transition: transform var(--dur-quick) var(--ease-out-expo); }
.section__link:hover svg { transform: translateX(-3px); }

/* ============================================================
   13. CATEGORIES
   ============================================================ */
.categories {
  display: flex;
  gap: var(--space-4);
  padding: 0 var(--content-pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-3);
}

.categories::-webkit-scrollbar { display: none; }

.category {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  scroll-snap-align: start;
  width: 80px;
  transition: transform var(--dur-base) var(--ease-spring);
}

.category:active { transform: scale(.95); }

.category__image {
  width: 80px;
  height: 80px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-primary-soft);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease-out-expo);
}

.category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-out-expo);
}

.category__image span {
  font-family: var(--font-display);
  color: var(--color-primary);
  user-select: none;
}

.category:hover .category__image {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px var(--color-primary-soft), var(--shadow-xs);
}
.category:hover .category__image img { transform: scale(1.03); }

.category__name {
  font-size: 10px;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-align: center;
  line-height: 1.2;
}

.category__count {
  font-size: 9px;
  color: var(--color-text-muted);
}

/* ============================================================
   14. PRODUCT CARD
   ============================================================ */
.products {
  padding: 0 var(--content-pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-border);
  transition: all var(--dur-base) var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.product-card:active { transform: scale(.98); }

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: var(--color-primary-soft);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out-expo);
}

.product-card:hover .product-card__image { transform: scale(1.04); }

.product-card__badge {
  position: absolute;
  top: 8px;
  inset-inline-start: 8px;
  background: var(--color-accent);
  color: white;
  font-size: 9px;
  font-weight: var(--fw-bold);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: .3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.product-card__wishlist {
  position: absolute;
  top: 6px;
  inset-inline-end: 6px;
  width: 32px;
  height: 32px;
  background: var(--color-surface);
  border-radius: var(--r-xs);
  display: grid;
  place-items: center;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all var(--dur-quick) var(--ease-spring);
  z-index: 2;
}

.product-card__wishlist:active { transform: scale(.85); }
.product-card__wishlist.is-active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.product-card__wishlist.is-active svg { animation: heart-pop var(--dur-base) var(--ease-spring); }
.product-card__wishlist svg { width: 14px; height: 14px; stroke-width: 2; }

@keyframes heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.product-card__quick-add {
  position: absolute;
  bottom: 6px;
  inset-inline-start: 6px;
  inset-inline-end: 6px;
  height: 36px;
  background: var(--color-text);
  color: white;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  transform: translateY(50px);
  opacity: 0;
  transition: all var(--dur-base) var(--ease-out-expo);
  z-index: 2;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
  opacity: 1;
}

.product-card__quick-add svg { width: 14px; height: 14px; }

.product-card__body {
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.product-card__category {
  font-size: var(--fs-2xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: var(--fw-medium);
}

.product-card__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  margin: 0;
  line-height: var(--lh-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(var(--fs-xs) * 1.25 * 2);
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
  padding-top: 2px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.3px;
}

.product-card__old-price {
  font-size: var(--fs-2xs);
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   15. FEATURED BANNER
   ============================================================ */
.featured-banner {
  margin: 0 var(--content-pad) var(--space-6);
  padding: var(--space-5) var(--space-4);
  background: var(--color-accent);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-text);
}

.featured-banner::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: white;
  border-radius: var(--r-lg);
  top: -60px;
  inset-inline-end: -40px;
  opacity: .2;
  filter: blur(20px);
  z-index: -1;
}

.featured-banner__eyebrow {
  display: inline-block;
  background: var(--color-text);
  color: white;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .5px;
  margin-bottom: var(--space-2);
}

.featured-banner__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  margin: 0 0 var(--space-2);
  letter-spacing: -.3px;
}

.featured-banner__title em {
  font-style: italic;
  display: block;
  font-size: var(--fs-xl);
}

.featured-banner__desc {
  font-size: var(--fs-xs);
  margin: 0 0 var(--space-3);
  max-width: 220px;
  opacity: .85;
}

/* ============================================================
   16. TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: calc(var(--tab-height) + var(--safe-bottom) + 16px);
  inset-inline-start: 50%;
  transform: translateX(50%) translateY(200%);
  background: var(--color-text);
  color: white;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 100;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out-back);
  white-space: nowrap;
}

.toast.is-visible { transform: translateX(50%) translateY(0); }

.toast__icon {
  width: 18px;
  height: 18px;
  border-radius: var(--r-pill);
  background: var(--color-fresh);
  color: white;
  display: grid;
  place-items: center;
  font-size: 10px;
}

/* ============================================================
   17. BOTTOM TAB BAR
   ============================================================ */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: var(--content-max);
  margin-inline: auto;
  height: calc(var(--tab-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  z-index: 30;
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  position: relative;
  transition: all var(--dur-base) var(--ease-out-expo);
  padding: 8px 0;
  text-decoration: none;
}

.tab svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  transition: all var(--dur-base) var(--ease-spring);
}

.tab--active { color: var(--color-primary); }
.tab--active svg { transform: translateY(-2px) scale(1.1); }

.tab--center {
  flex: 0 0 64px;
}

.tab--center::before {
  content: '';
  position: absolute;
  top: -24px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  z-index: -1;
  transition: transform var(--dur-base) var(--ease-spring);
}

.tab--center svg {
  color: white;
  width: 24px;
  height: 24px;
  margin-top: -18px;
}

.tab--center:active::before { transform: translateX(-50%) scale(.92); }

.tab__indicator {
  position: absolute;
  bottom: 3px;
  inset-inline-start: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 3px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--r-pill);
  transition: transform var(--dur-base) var(--ease-spring);
}

.tab--active .tab__indicator { transform: translateX(-50%) scaleX(1); }

/* ============================================================
   18. UTILITIES
   ============================================================ */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   19. SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}

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

.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 60ms; }
.reveal:nth-child(3) { transition-delay: 120ms; }
.reveal:nth-child(4) { transition-delay: 180ms; }
.reveal:nth-child(5) { transition-delay: 240ms; }
.reveal:nth-child(6) { transition-delay: 300ms; }

/* ============================================================
   20. FORMS & INPUTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-inline-start: var(--space-1);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-sm);
  transition: all var(--dur-base) var(--ease-out-expo);
  outline: none;
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-text-muted);
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-soft);
  background: white;
}

.input--error,
.textarea--error,
.select--error {
  border-color: var(--color-error, #c0392b);
}

.form-hint {
  font-size: var(--fs-2xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  margin-inline-start: var(--space-1);
}

.form-error {
  font-size: var(--fs-2xs);
  color: var(--color-error, #c0392b);
  margin-top: var(--space-1);
  margin-inline-start: var(--space-1);
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text);
  cursor: pointer;
}

.checkbox,
.radio {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* ============================================================
   21. LAYOUT UTILITIES
   ============================================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.my-1 { margin-top: var(--space-1); margin-bottom: var(--space-1); }
.my-2 { margin-top: var(--space-2); margin-bottom: var(--space-2); }
.my-3 { margin-top: var(--space-3); margin-bottom: var(--space-3); }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }

/* ============================================================
   22. RESPONSIVE — Small phones (< 360px)
   ============================================================ */
@media (max-width: 360px) {
  :root {
    --content-pad: 14px;
  }
  .hero {
    min-height: 380px;
    padding: var(--space-6) var(--space-4) var(--space-5);
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__main-image {
    width: 60%;
    max-width: 220px;
    height: 260px;
  }
  .products--scroll .product-card {
    width: 140px;
    min-width: 140px;
  }
}

/* ============================================================
   23. RESPONSIVE — Tablets (600px+)
   ============================================================ */
@media (min-width: 600px) {
  .hero {
    min-height: 480px;
  }
  .hero__main-image {
    max-width: 340px;
    height: 360px;
  }
  .hero__chip--1 { top: 30px; inset-inline-start: 30px; }
  .hero__chip--2 { top: 100px; inset-inline-end: 40px; }
  .hero__chip--3 { bottom: 80px; inset-inline-start: 20px; }

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

  .category {
    width: 96px;
  }
  .category__image {
    width: 96px;
    height: 96px;
  }
}

/* ============================================================
   24. RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --content-max: 1200px;
    --content-pad: 32px;
    --header-height: 64px;
  }

  body {
    background: #f0ecf0;
  }

  .app {
    max-width: var(--content-max);
    border-inline: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding-bottom: var(--space-8);
  }

  /* Hide mobile tab bar on desktop */
  .tab-bar {
    display: none;
  }

  .app {
    padding-bottom: 0;
  }

  /* Desktop nav in header */
  .app-header {
    padding: 0 var(--space-6);
    gap: var(--space-6);
  }

  .app-header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }

  .app-header__nav a {
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-soft);
    transition: all var(--dur-quick) var(--ease-out-expo);
  }

  .app-header__nav a:hover,
  .app-header__nav a.is-active {
    color: var(--color-primary);
    background: var(--color-primary-soft);
  }

  /* Desktop product grid */
  .products {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  /* Desktop hero */
  .hero {
    min-height: 520px;
    margin-bottom: var(--space-9);
    padding: var(--space-9) var(--space-7) var(--space-7);
  }

  .hero__title {
    font-size: clamp(40px, 5vw, 56px);
  }

  .hero__main-image {
    max-width: 400px;
    height: 420px;
  }

  /* Desktop categories */
  .categories {
    gap: var(--space-5);
  }

  .category {
    width: 112px;
  }

  .category__image {
    width: 112px;
    height: 112px;
    border-radius: var(--r-xl);
  }

  /* Desktop section */
  .section__header {
    padding: 0 var(--space-6);
  }

  .section__title {
    font-size: var(--fs-2xl);
  }

  .products {
    padding: 0 var(--space-6);
  }

  .categories {
    padding: 0 var(--space-6);
  }

  /* Desktop stats */
  .stats {
    padding: var(--space-5) var(--space-6);
    margin: 0 var(--space-6) var(--space-7);
    border-radius: var(--r-lg);
  }

  .stat__number {
    font-size: var(--fs-xl);
  }

  /* Desktop marquee */
  .marquee {
    margin: 0 var(--space-6) var(--space-7);
    border-radius: var(--r-md);
  }

  /* Desktop blobs — larger, more ambient */
  .app::before {
    width: 500px;
    height: 500px;
    top: -150px;
    inset-inline-end: -150px;
    filter: blur(100px);
    opacity: .12;
  }

  .app::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    inset-inline-start: -150px;
    filter: blur(100px);
    opacity: .1;
  }
}

/* ============================================================
   25. RESPONSIVE — Large desktop (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .products {
    grid-template-columns: repeat(4, 1fr);
  }
}

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