@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Merriweather:ital,wght@1,700&display=swap');

/* ============== AUTOSHOP — Premium redesign ============== */

:root {
  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-mono: var(--font-sans);
  --green-500: #2BB046;
  --green-600: #24993B;
  --green-400: #4DC163;
  --green-50:  #ECF8EE;
  --green-tint: #F0F8F2;

  --ink-900: #0A1A12;
  --ink-700: #2A3A33;
  --ink-500: #5B6963;
  --ink-300: #9CA8A3;
  --ink-200: #C8D0CC;
  --ink-100: #E5E8E6;

  --paper:   #F7F7F5;
  --paper-2: #FFFFFF;
  --paper-3: #EFEFEC;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --reveal-y: 40px;
  --reveal-dur: 900ms;
}

/* Theme: dark */
:root[data-theme="dark"] {
  --paper:   #0B0F0D;
  --paper-2: #111714;
  --paper-3: #161D1A;
  --ink-900: #F4F6F4;
  --ink-700: #C8D0CC;
  --ink-500: #8B9590;
  --ink-300: #5B6963;
  --ink-200: #2C3531;
  --ink-100: #1B2320;
  --green-50: #1A2A1F;
  --green-tint: #14201A;
}

/* Theme: green-dominant */
:root[data-theme="green"] {
  --paper:   #0E2417;
  --paper-2: #14301F;
  --paper-3: #163826;
  --ink-900: #ECFFEF;
  --ink-700: #BDE3C7;
  --ink-500: #82B695;
  --ink-300: #538C68;
  --ink-200: #2B5A3D;
  --ink-100: #1E4830;
  --green-500: #6FE886;
  --green-600: #4FCB6A;
  --green-400: #8AF09E;
  --green-50: #1A4028;
  --green-tint: #163826;
}

/* Animation intensity: moderate is default; strong adds more dramatic moves */
:root[data-anim="strong"] {
  --reveal-y: 90px;
  --reveal-dur: 1200ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.font-display {
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 800;
}
.font-mono {
  font-family: var(--font-mono);
}

.container {
  width: min(1360px, 100% - 64px);
  margin-inline: auto;
}
.container-wide {
  width: min(1600px, 100% - 64px);
  margin-inline: auto;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms;
}
.nav.scrolled {
  border-bottom-color: color-mix(in srgb, var(--ink-900) 8%, transparent);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo .mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--green-500);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 200ms;
  color: var(--ink-700);
}
.nav-links a:hover { background: color-mix(in srgb, var(--ink-900) 5%, transparent); color: var(--ink-900); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: var(--ink-700);
  transition: background 200ms;
}
.icon-btn:hover { background: color-mix(in srgb, var(--ink-900) 6%, transparent); color: var(--ink-900); }
.icon-btn svg { width: 18px; height: 18px; stroke-width: 1.8; }
.btn-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: transform 200ms, background 200ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.btn-cta:hover::after {
  animation: buttonShimmer 1.2s infinite;
}
@keyframes buttonShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.btn-cta:hover { background: var(--green-600); transform: translateY(-1px); }
.btn-cta.lg { padding: 16px 28px; font-size: 16px; }
.btn-ghost {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 200ms;
}
.btn-ghost:hover { border-color: var(--ink-900); }
.btn-ghost.lg { padding: 16px 28px; font-size: 16px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 80% 20%, color-mix(in srgb, var(--green-500) 14%, transparent), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, color-mix(in srgb, var(--green-500) 8%, transparent), transparent 70%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 220px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 32px;
}
.eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--green-500);
  display: grid; place-items: center;
  color: #fff;
  font-size: 11px;
}
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 0.96;
}
.hero h1 .accent {
  color: var(--green-500);
  font-style: italic;
  font-weight: 600;
}
.hero h1 .en {
  display: block;
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 18px;
  font-style: normal;
}
.hero h1 .badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-tint);
  color: var(--green-600);
  border: 1px solid color-mix(in srgb, var(--green-500) 20%, transparent);
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 16px;
  line-height: 1;
  transform: translateY(-4px);
  white-space: nowrap;
}
.hero p.lead {
  margin-top: 28px;
  font-size: 19px;
  color: var(--ink-700);
  max-width: 480px;
  line-height: 1.5;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 520px;
}
.hero-stats .stat .num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}
.hero-stats .stat .num span { color: var(--green-500); }
.hero-stats .stat .lbl {
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero visual: stacked product placeholder */
.hero-visual {
  position: relative;
  height: 640px;
}
.hero-copy, .hero-visual {
  transition: opacity 0.4s ease;
}
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-300);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dots .dot.active {
  background: var(--green-500);
  width: 24px;
  border-radius: 4px;
}
.hero-visual .ph-card {
  position: absolute;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px color-mix(in srgb, var(--ink-900) 35%, transparent);
}
.hero-visual .ph-main {
  inset: 20px -20px 60px -80px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--green-500) 10%, var(--paper-2)), var(--paper-2) 70%);
}
.hero-visual .ph-main .label {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.hero-visual .ph-main .label .name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.hero-visual .ph-main .label .sub {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
}
.hero-visual .ph-main .label .price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green-600);
  font-weight: 700;
  background: var(--green-50);
  padding: 6px 12px;
  border-radius: 8px;
}
.hero-visual .ph-img-fill {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--ink-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 16px, color-mix(in srgb, var(--ink-900) 3%, transparent) 16px 17px);
}
.hero-visual .ph-tag {
  position: absolute;
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -20px color-mix(in srgb, var(--ink-900) 25%, transparent);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.hero-visual .ph-tag .ic {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-600);
}
.hero-visual .ph-tag .num {
  font-family: var(--font-sans); font-weight: 700; font-size: 18px;
  color: var(--ink-900);
}
.hero-visual .ph-tag .lbl { color: var(--ink-500); font-size: 12px; }
.hero-visual .tag-1 { top: 60px; right: -10px; }
.hero-visual .tag-2 { top: 80px; left: -80px; }
.hero-visual .tag-3 { bottom: 20px; right: 20px; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.scroll-cue .line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--ink-500));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Dashboard Slider Controls in Hero */
.hero-dash-controls {
  position: absolute;
  top: -24px;
  left: -80px;
  right: -20px;
  display: flex;
  gap: 8px;
  z-index: 30;
}
.hero-dash-controls .dash-tab {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.hero-dash-controls .dash-tab .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-300);
  transition: background 0.3s, transform 0.3s;
}
.hero-dash-controls .dash-tab:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  color: var(--ink-900);
}
.hero-dash-controls .dash-tab.active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
}
.hero-dash-controls .dash-tab.active .dot {
  background: var(--green-400);
  transform: scale(1.5);
}

/* Slides container and layout */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

/* Slide animation effect */
.hero-slide.active img {
  animation: springyScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes springyScale {
  0% { transform: scale(1.1); filter: blur(5px); }
  100% { transform: scale(1); filter: blur(0); }
}

/* Shimmer glow animation for active slide - disabled to prevent flashing */
.hero-slide::after {
  display: none;
}

/* Tech specs overlay inside main image */
.slide-specs {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slide-specs .spec-chip {
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}
.hero-slide.active .slide-specs .spec-chip {
  transform: translateX(0);
  opacity: 1;
}
.hero-slide.active .slide-specs .spec-chip:nth-child(1) { transition-delay: 100ms; }
.hero-slide.active .slide-specs .spec-chip:nth-child(2) { transition-delay: 200ms; }
.hero-slide.active .slide-specs .spec-chip:nth-child(3) { transition-delay: 300ms; }

/* Marquee strip under hero */
.tape {
  background: var(--ink-900);
  color: var(--paper);
  padding: 14px 0;
  overflow: hidden;
  border-block: 1px solid var(--ink-100);
}
.tape-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.tape-track span { display: inline-flex; align-items: center; gap: 16px; }
.tape-track .sep {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green-500);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============== SECTION SHELL ============== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 24px;
}
.section-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--green-500);
}
.section-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-500);
}
.section-sub {
  font-size: 18px;
  color: var(--ink-700);
  max-width: 480px;
  line-height: 1.55;
}

/* ============== WHY (sticky pinned) ============== */
.why {
  background: var(--paper);
}
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-sticky {
  position: sticky;
  top: 120px;
}
.why-sticky h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.why-sticky h2 em {
  color: var(--green-500);
  font-style: italic;
  font-weight: 500;
}
.why-sticky p {
  margin-top: 24px;
  color: var(--ink-700);
  font-size: 18px;
  max-width: 440px;
}
.why-counter {
  margin-top: 64px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-counter .bar {
  flex: 1; height: 1px; background: var(--ink-100); position: relative;
}
.why-counter .bar::after {
  content: ''; position: absolute; inset: 0 auto 0 0;
  width: var(--progress, 25%); background: var(--green-500);
  transition: width 600ms var(--ease-out);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-card {
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 600ms var(--ease-out);
}
.why-card.active {
  border-color: var(--green-500);
  background: linear-gradient(180deg, var(--paper-2), var(--green-50));
}
.why-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 24px;
  display: flex; justify-content: space-between;
}
.why-card .num .ic { color: var(--green-500); font-size: 18px; }
.why-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.why-card h3 .big {
  color: var(--green-500);
  font-size: 56px;
  letter-spacing: -0.04em;
  display: inline-block;
  margin-right: 12px;
}
.why-card p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  grid-template-areas:
    "a b c"
    "a d c";
}
.cat-card {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 600ms var(--ease-out), border-color 300ms;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.cat-card:hover { border-color: var(--green-500); }
.cat-card .ph {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, color-mix(in srgb, var(--ink-900) 3%, transparent) 18px 19px);
  opacity: 0.4;
  pointer-events: none;
}
.cat-card .ph::after {
  content: attr(data-label);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-300);
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-card .top { position: relative; z-index: 1; display: flex; justify-content: space-between; }
.cat-card .top .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
}
.cat-card .top .arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--paper);
  display: grid; place-items: center;
  transition: all 400ms var(--ease-out);
}
.cat-card:hover .top .arrow { background: var(--green-500); transform: rotate(-45deg); }
.cat-card .bottom {
  position: relative; z-index: 1;
}
.cat-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cat-card .en {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
.cat-card .count {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(255, 255, 255, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}
.cat-card .top,
.cat-card .bottom {
  position: relative;
  z-index: 2;
}
.cat-card.feature {
  grid-area: a;
  min-height: 100%;
  border-color: var(--green-500);
}
.cat-card.feature h3 {
  font-size: 56px;
}
.cat-card.b {
  grid-area: b;
}
.cat-card.c {
  grid-area: c;
  min-height: 100%;
}
.cat-card.d {
  grid-area: d;
}
.cat-card.c .top .arrow,
.cat-card.feature .top .arrow { background: var(--green-500); }

/* ============== BEST SELLERS ============== */
.bs-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 64px;
  gap: 32px;
}
.bs-controls {
  display: flex; gap: 8px;
  align-items: center;
}
.bs-controls button {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  display: grid; place-items: center;
  transition: all 200ms;
}
.bs-controls button:hover {
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--paper);
}
.bs-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-500);
  box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--ink-900) 25%, transparent);
}
.product-card .img {
  aspect-ratio: 4 / 4;
  position: relative;
  background: var(--paper-3);
  overflow: hidden;
}
.product-card .img:not(:has(img))::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, color-mix(in srgb, var(--ink-900) 3%, transparent) 14px 15px);
}
.product-card .img-label {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-300);
  text-transform: uppercase;
  z-index: 1;
}
.product-card .badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  letter-spacing: 0.02em;
  z-index: 1;
}
.product-card .meta {
  padding: 22px;
}
.product-card .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card .name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.product-card .row {
  display: flex; justify-content: space-between; align-items: center;
}
.product-card .price {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ink-900);
  font-weight: 600;
}
.product-card .strike {
  text-decoration: line-through;
  color: var(--ink-300);
  font-size: 12px;
  margin-left: 8px;
}
.product-card .rate {
  font-size: 13px;
  color: var(--ink-500);
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card .rate svg { color: var(--green-500); width: 14px; height: 14px; }

/* ============== BRAND MARQUEE ============== */
.brands {
  padding: 72px 0;
  background: var(--paper-3);
  overflow: hidden;
}
.brands .head {
  text-align: center;
  margin-bottom: 40px;
}
.brands .head .section-tag { justify-content: center; }
.brands .head .section-tag { display: inline-flex; }
.brands .head h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -0.012em;
}
.brands .head h2 em {
  font-style: italic; color: var(--green-500); font-weight: 500;
}
.brand-marquee {
  display: flex;
  gap: 24px;
  animation: marquee 36s linear infinite;
  width: max-content;
}
.brand-marquee:hover { animation-play-state: paused; }
.brand-chip {
  border: 1px solid var(--ink-200);
  background: var(--paper-2);
  border-radius: 14px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.brand-chip .dot {
  width: 12px; height: 12px;
  border-radius: 4px;
  background: var(--green-500);
}
.brand-chip .name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-chip .city {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============== VIDEO / REVIEW ============== */
.review-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.video-card {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-image:
    radial-gradient(50% 80% at 60% 50%, color-mix(in srgb, var(--green-500) 25%, transparent), transparent 70%),
    var(--ink-900);
}
.video-card:not(:has(img))::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,0.03) 18px 19px);
}
.video-card .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  display: grid; place-items: center;
  z-index: 1;
  transition: transform 300ms var(--ease-out);
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-card .play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-card .label {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  color: #fff;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 1;
}
.video-card .label .name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.video-card .label .sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.video-card .label .time {
  font-family: var(--font-mono);
  font-size: 12px;
}
.testi-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi {
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testi .quote {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  flex: 1;
}
.testi .who {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
}
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--green-50);
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--green-600);
  font-size: 16px;
}
.testi .who .name { font-weight: 600; font-size: 14px; }
.testi .who .role { font-size: 12px; color: var(--ink-500); }
.testi .stars { color: var(--green-500); margin-top: 6px; font-size: 13px; }

/* ============== BLOG ============== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
}
.blog-card .img {
  aspect-ratio: 16 / 11;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.blog-card .img:not(:has(img))::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, color-mix(in srgb, var(--ink-900) 3%, transparent) 14px 15px);
}
.blog-card .img .lbl {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-300);
  text-transform: uppercase;
  z-index: 1;
}
.blog-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  display: flex; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-card .meta .tag {
  color: var(--green-600);
}
.blog-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  flex: 1;
}
.blog-card .more {
  margin-top: 24px;
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}
.blog-card:hover .more { color: var(--green-600); }

/* ============== SHOWROOM ============== */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.showroom-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.showroom-card .map {
  flex: 1;
  position: relative;
  background:
    linear-gradient(135deg, var(--green-50), var(--paper-3));
}
.showroom-card .map::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--ink-900) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--ink-900) 4%, transparent) 1px, transparent 1px);
  background-size: 32px 32px;
}
.showroom-card .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--green-500) 25%, transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--green-500) 25%, transparent); }
  50% { box-shadow: 0 0 0 16px color-mix(in srgb, var(--green-500) 12%, transparent); }
}
.showroom-card .info {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.showroom-card .city {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--green-600);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.showroom-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.showroom-card .addr { color: var(--ink-500); font-size: 14px; }
.showroom-card .hours {
  margin-top: 16px;
  display: flex; gap: 16px;
  font-size: 13px;
  color: var(--ink-700);
}
.showroom-card .hours .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green-500);
  display: inline-block;
  margin-right: 6px;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.showroom-card .btn {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--paper);
  display: grid; place-items: center;
  transition: all 300ms;
}
.showroom-card .btn:hover { background: var(--green-500); transform: rotate(-45deg); }

/* ============== CTA ============== */
.cta {
  padding: 0 0 96px;
}
.cta-inner {
  background: var(--ink-900);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.cta-inner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 80% 30%, color-mix(in srgb, var(--green-500) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.cta-inner .grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-inner h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-inner h2 em {
  color: var(--green-400);
  font-style: italic;
  font-weight: 500;
}
.cta-inner p {
  margin-top: 24px;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  font-size: 17px;
}
.cta-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
}
.cta-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cta-form label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.cta-form input, .cta-form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 10px 0;
  color: #fff;
  font: inherit;
  font-size: 16px;
  outline: none;
  font-family: var(--font-sans);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  width: 100%;
  cursor: pointer;
}
.cta-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' opacity='0.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 18px;
  padding-right: 28px;
}
.cta-form option {
  color: var(--ink-900);
  background: var(--paper);
}

/* Custom select dropdown (replaces native select inside .cta-form) */
.cta-form .cselect {
  position: relative;
  width: 100%;
}
.cta-form .cselect-trigger {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 10px 28px 10px 0;
  color: #fff;
  font: inherit;
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' opacity='0.55'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 18px;
  transition: border-color 200ms;
}
.cta-form .cselect.open .cselect-trigger,
.cta-form .cselect-trigger:focus {
  border-bottom-color: var(--green-400);
}
.cta-form .cselect-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--paper-2);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4);
  display: none;
  max-height: 240px;
  overflow-y: auto;
}
.cta-form .cselect.open .cselect-panel { display: block; }
.cta-form .cselect-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-900);
  font: inherit;
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  transition: background 150ms;
}
.cta-form .cselect-opt:hover {
  background: var(--green-50);
  color: var(--green-600);
}
.cta-form .cselect-opt.on {
  background: var(--green-500);
  color: #fff;
  font-weight: 600;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus, .cta-form select:focus {
  border-bottom-color: var(--green-400);
}
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-form button {
  margin-top: 8px;
  width: 100%;
  background: var(--green-500);
  color: #fff;
  border-radius: 999px;
  padding: 18px;
  font-weight: 600;
  font-size: 16px;
  transition: background 200ms;
}
.cta-form button:hover { background: var(--green-400); color: var(--ink-900); }

/* ============== FOOTER ============== */
.foot {
  background: var(--paper-3);
  padding: 72px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.foot-brand img { height: 36px; margin-bottom: 24px; }
.foot-brand p { color: var(--ink-500); font-size: 14px; max-width: 320px; line-height: 1.6; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-size: 14px;
  color: var(--ink-900);
  transition: color 200ms;
}
.foot-col a:hover { color: var(--green-600); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--ink-100);
  font-size: 13px;
  color: var(--ink-500);
}
.foot-bottom .lang { display: flex; gap: 8px; }
.foot-bottom .lang button {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--ink-200);
  color: var(--ink-700);
}
.foot-bottom .lang button.on {
  background: var(--ink-900); color: var(--paper); border-color: var(--ink-900);
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity var(--reveal-dur) var(--ease-spring), transform var(--reveal-dur) var(--ease-spring);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }
 
/* Strong-only flourishes */
:root[data-anim="strong"] .reveal {
  transform: translateY(var(--reveal-y)) scale(0.95);
  transition: opacity var(--reveal-dur) var(--ease-spring), transform var(--reveal-dur) var(--ease-spring);
}
:root[data-anim="strong"] .reveal.in {
  transform: translateY(0) scale(1);
}
:root[data-anim="strong"] .hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(4deg);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
:root[data-anim="strong"] .hero h1.in .word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
:root[data-anim="strong"] .hero h1 .word:nth-child(2) { transition-delay: 80ms; }
:root[data-anim="strong"] .hero h1 .word:nth-child(3) { transition-delay: 160ms; }
:root[data-anim="strong"] .hero h1 .word:nth-child(4) { transition-delay: 240ms; }
:root[data-anim="strong"] .hero h1 .word:nth-child(5) { transition-delay: 320ms; }

/* Parallax */
.parallax { will-change: transform; }

/* ============== TWEAKS PANEL ============== */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 280px;
  background: var(--paper-2);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  display: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-900);
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks-panel h4 .close { color: var(--ink-500); cursor: pointer; }
.tweaks-panel .grp { margin-bottom: 16px; }
.tweaks-panel .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tweaks-panel .seg {
  display: flex;
  background: var(--paper-3);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}
.tweaks-panel .seg button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-700);
}
.tweaks-panel .seg button.on {
  background: var(--paper-2);
  color: var(--ink-900);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ============== RESPONSIVE ============== */

/* Mobile hamburger button (hidden on desktop) */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-left: 4px;
}
.nav-burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 15%;
  z-index: 200;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 28px 28px;
  transform: translateX(100%);
  transition: transform 500ms var(--ease-spring);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
}
.nav-drawer a.drawer-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer a.drawer-link svg { color: var(--ink-300); }
.nav-drawer .drawer-cta {
  margin-top: 32px;
  background: var(--green-500);
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
}
.nav-drawer .drawer-footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--ink-500);
  font-size: 14px;
}
.nav-drawer .drawer-footer strong { color: var(--ink-900); font-weight: 600; font-size: 15px; }

@media (max-width: 900px) {
  .container, .container-wide { width: calc(100% - 32px); }

  /* Nav: hide desktop links, show burger */
  .nav { padding: 10px 0; }
  .nav-logo img { height: 36px; }
  .nav-links { display: none; }
  .nav-right .icon-btn:first-of-type { display: none; }
  .nav-right .btn-cta { display: none; }
  .nav-burger { display: inline-flex; }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .hero h1 { font-size: clamp(28px, 8vw, 38px) !important; line-height: 1.15; letter-spacing: -0.01em; }
  .hero p.lead { font-size: 16px; margin-top: 20px; }
  .hero-actions { margin-top: 28px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn-cta, .hero-actions .btn-ghost { justify-content: center; padding: 16px 20px; font-size: 15px; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  .hero-stats .stat .num { font-size: 26px; }
  .hero-stats .stat .lbl { font-size: 10px; }
  .hero-visual { height: 380px; }
  .hero-dash-controls {
    position: static;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 30;
  }
  .hero-dash-controls .dash-tab {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 8px;
    flex: 1;
    justify-content: center;
  }
  .slide-specs {
    top: 16px;
    left: 16px;
  }
  .slide-specs .spec-chip {
    padding: 4px 8px;
    font-size: 9px;
  }
  .hero-visual .ph-main { inset: 30px 40px 60px 0; }
  .hero-visual .ph-main .label {
    bottom: 12px; left: 12px; right: 12px;
    padding: 10px 14px;
    border-radius: 12px;
  }
  .hero-visual .ph-main .label .name {
    font-size: 13px;
  }
  .hero-visual .ph-main .label .sub {
    font-size: 10px;
  }
  .hero-visual .ph-main .label .price {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
  }
  .hero-visual .ph-tag { padding: 10px 12px; }
  .hero-visual .ph-tag .num { font-size: 14px; }
  .scroll-cue { display: none; }

  /* Sections */
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .section-title { font-size: clamp(32px, 8vw, 44px) !important; }
  .section-sub { font-size: 15px; }

  /* Why sticky */
  .why-wrap { grid-template-columns: 1fr; gap: 32px; }
  .why-sticky { position: static; }
  .why-sticky h2 { font-size: clamp(32px, 8vw, 44px); }
  .why-card { padding: 28px; }
  .why-card h3 { font-size: 22px; }
  .why-card h3 .big { font-size: 36px; }

  /* Categories */
  .cat-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d";
  }
  .cat-card { min-height: 280px; padding: 24px; }
  .cat-card h3 { font-size: 32px; }
  .cat-card.feature h3 { font-size: 40px; }
  .cat-card.feature, .cat-card.c { min-height: 280px; }

  /* Best sellers — horizontal scroll snap */
  .bs-head { flex-direction: column; align-items: stretch; gap: 16px; }
  .bs-controls { display: none; }
  .bs-rail {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -16px;
    padding: 0 16px 8px;
    scrollbar-width: none;
  }
  .bs-rail::-webkit-scrollbar { display: none; }
  .bs-rail .product-card {
    scroll-snap-align: start;
    flex: 0 0 78%;
    min-width: 78%;
  }

  /* Brand marquee */
  .brand-chip { padding: 18px 24px; }
  .brand-chip .name { font-size: 16px; }

  /* Review */
  .review-grid { grid-template-columns: 1fr; }
  .video-card .play { width: 64px; height: 64px; }
  .video-card .play svg { width: 22px; height: 22px; }
  .video-card .label .name { font-size: 18px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Showroom */
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-card { min-height: auto; grid-template-columns: 1fr; }
  .showroom-card .map { min-height: 200px; }
  .showroom-card .info { grid-template-columns: 1fr; gap: 16px; padding: 24px; }

  /* CTA */
  .cta { padding: 0 0 56px; }
  .cta-inner { padding: 48px 24px; border-radius: 24px; }
  .cta-inner .grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-form { padding: 24px; }
  .cta-form .row { grid-template-columns: 1fr; gap: 12px; }

  /* Footer */
  .foot { padding: 56px 0 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Tweaks panel: full-width sheet on mobile */
  .tweaks-panel {
    bottom: 0; right: 0; left: 0; width: auto;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 40px -10px rgba(0,0,0,0.2);
  }
}

@media (max-width: 480px) {
  .container, .container-wide { width: calc(100% - 24px); }
  .hero h1 { font-size: 30px !important; line-height: 1.15; letter-spacing: -0.01em; }
  .hero-visual { height: 320px; }
  .hero-visual .ph-tag { padding: 8px 10px; }
  .hero-visual .ph-tag .ic { width: 28px; height: 28px; }
  .hero-visual .ph-tag .num { font-size: 12px; }
  .hero-visual .ph-tag .lbl { font-size: 10px; }
  .hero-stats .stat .num { font-size: 22px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 24px !important; }
  .cta-inner { padding: 36px 20px; }
}

/* ==================== CART DRAWER ==================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9990;
}
.cart-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100%;
  background: var(--paper);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9995;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--ink-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-900);
}
.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink-500);
  transition: color 0.2s;
  padding: 4px;
}
.cart-drawer-close:hover {
  color: var(--ink-900);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--ink-50);
  padding-bottom: 16px;
}
.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--ink-100);
}
.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.3;
}
.cart-item-options {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}
.cart-item-price {
  font-weight: 700;
  color: var(--green-600);
  font-size: 14px;
  margin-top: 4px;
}
.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  overflow: hidden;
}
.cart-item-qty button {
  width: 24px;
  height: 24px;
  background: var(--paper-2);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--ink-700);
  transition: background 0.2s;
}
.cart-item-qty button:hover {
  background: var(--paper-3);
}
.cart-item-qty span {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
}
.cart-item-del {
  background: transparent;
  border: none;
  color: var(--ink-400);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.cart-item-del:hover {
  color: #ef4444;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--ink-100);
  background: var(--paper-2);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.cart-total-value {
  color: var(--green-600);
  font-size: 18px;
}
.btn-checkout, .btn-confirm-order, .btn-back-to-items {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  text-align: center;
}
.btn-checkout, .btn-confirm-order {
  background: var(--green-500);
  color: #fff;
}
.btn-checkout:hover, .btn-confirm-order:hover {
  background: var(--green-600);
  transform: translateY(-2px);
}
.btn-back-to-items {
  background: transparent;
  color: var(--ink-600);
  border: 1px solid var(--ink-200);
  margin-top: 12px;
}
.btn-back-to-items:hover {
  background: var(--paper-3);
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--ink-400);
  font-size: 15px;
}

.icon-btn {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green-500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--paper);
  padding: 0 4px;
  pointer-events: none;
}

/* ==================== CHECKOUT FORM ==================== */
.cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-checkout-form h4 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink-900);
}
.cart-checkout-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-checkout-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-checkout-form input, .cart-checkout-form textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  background: var(--paper);
  color: var(--ink-900);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  width: 100%;
}
.cart-checkout-form input:focus, .cart-checkout-form textarea:focus {
  border-color: var(--green-500);
  outline: none;
}

/* ==================== TOAST NOTIFICATION ==================== */
.autoshop-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--ink-900);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  max-width: calc(100vw - 48px);
}
.autoshop-toast.show {
  transform: translateY(0);
}
.autoshop-toast .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}


/* Emphasized highlights in headings (Serious Serif - Merriweather Italic) */
.hero h1 em,
.hero h1 .accent,
.section-title em,
.why-sticky h2 em,
.brands .head h2 em,
.cta-inner h2 em,
.pdp-info h1 em,
.pdp-specs h2 em,
.pdp-deep-text h3 em,
.pdp-feature h3 em,
.pdp-related h2 em,
.page-head h1 em,
.timeline-sticky h2 em,
.about-value h3 em,
.cust-feature .meta h2 em,
.rec-feature .main h2 em,
.newsletter h2 em,
.shop-block h3 em {
  font-family: var(--font-serif) !important;
  font-weight: 700 !important;
  font-style: italic !important;
}
