﻿/* ═══════════════════════════════════════════════════════════
   HARLEYPARTS — style.css
   Luxury automotive UI · glassmorphism · premium animations
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --orange:        #ff6600;
  --orange-dim:    rgba(255, 102, 0, 0.18);
  --orange-glow:   rgba(255, 102, 0, 0.35);
  --dark:          #0a0a0a;
  --dark2:         #111111;
  --chrome:        #c0c0c0;
  --white:         #ffffff;
  --glass-bg:      rgba(255, 255, 255, 0.03);
  --glass-border:  rgba(255, 255, 255, 0.07);
  --glass-hover:   rgba(255, 255, 255, 0.06);
  --text-primary:  rgba(255, 255, 255, 0.95);
  --text-muted:    rgba(255, 255, 255, 0.45);
  --text-faint:    rgba(255, 255, 255, 0.18);
  --nav-h:         72px;
  --ease-luxury:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
::selection { background: var(--orange); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-luxury), visibility 0.7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.pl-arc {
  animation: pl-spin 1.2s linear infinite;
  transform-origin: 60px 60px;
}
@keyframes pl-spin { to { transform: rotate(360deg); } }

.pl-bar-wrap { display: flex; flex-direction: column; align-items: center; }
.pl-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.pl-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--orange), #ff9933);
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1.5px solid rgba(255, 102, 0, 0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-luxury),
              height 0.25s var(--ease-luxury),
              border-color 0.25s;
}
.cursor-dot.expanded  { width: 14px; height: 14px; }
.cursor-ring.expanded { width: 60px; height: 60px; border-color: rgba(255,102,0,0.25); }
.cursor-dot.hovered   { background: #fff; }
.cursor-ring.hovered  { border-color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════════════════
   SHARED INNER-PAGE STYLES
═══════════════════════════════════════════════════════════ */

/* Fixed navbar for all inner pages */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 72px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,102,0,0.12);
  display: flex; align-items: center;
}
.site-nav-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; height: 100%;
}
.site-nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.site-nav-logo svg { transition: filter 0.3s; }
.site-nav-logo:hover svg { filter: drop-shadow(0 0 8px rgba(255,102,0,0.6)); }
.site-nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.site-nav-links a {
  display: block; padding: 6px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.site-nav-links a::after {
  content: ''; position: absolute; left: 14px; bottom: 2px;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease-luxury);
}
.site-nav-links a:hover { color: var(--orange); }
.site-nav-links a:hover::after { width: calc(100% - 28px); }
.site-nav-links a.active { color: var(--orange); }
.site-nav-links a.active::after { width: calc(100% - 28px); }

/* ── Parts dropdown ─────────────────────────────────── */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: #0d0d0d; border: 1px solid rgba(255,102,0,0.18);
  border-top: 2px solid var(--orange);
  min-width: 210px; padding: 6px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: 9px 18px;
  font-family: 'Rajdhani', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border: none;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--orange); background: rgba(255,102,0,0.06); }
.dropdown-caret { font-size: 9px; margin-left: 3px; opacity: 0.5; }
.site-nav-right { display: flex; align-items: center; gap: 12px; }
.site-nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 20px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.site-nav-cta:hover { background: var(--orange); color: #fff; }

/* Cart icon — inner pages nav */
.site-nav-cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6);
  transition: all 0.2s; flex-shrink: 0;
}
.site-nav-cart-btn:hover { border-color: var(--orange); color: var(--orange); }
.site-nav-cart-btn #cartBadge {
  position: absolute; top: -6px; right: -6px;
  background: var(--orange); color: #fff;
  font-size: 9px; font-weight: 800; min-width: 16px; height: 16px;
  border-radius: 8px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* Hamburger for inner pages */
.site-nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; cursor: pointer; background: none; border: none;
}
.site-nav-hamburger span {
  display: block; height: 2px;
  background: #fff; transition: all 0.3s;
}
.site-nav-hamburger span:nth-child(3) { width: 70%; background: var(--orange); }

/* Mobile drawer for inner pages */
.site-mob-nav {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.site-mob-nav.open { transform: translateX(0); }
.site-mob-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 28px;
  transition: color 0.2s;
}
.site-mob-close:hover { color: var(--orange); }
.site-mob-nav a {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px, 9vw, 48px); letter-spacing: 4px;
  color: #fff; text-decoration: none;
  transition: color 0.25s;
}
.site-mob-nav a:hover, .site-mob-nav a.active { color: var(--orange); }
@media (max-width: 400px) {
  .site-mob-nav { gap: 4px; justify-content: flex-start; padding-top: 72px; overflow-y: auto; }
  .site-mob-nav a { font-size: 30px; letter-spacing: 3px; }
}

/* Page hero banner */
.page-hero {
  min-height: 46vh;
  background: #0a0a0a;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(255,80,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 40%, rgba(255,60,0,0.04) 0%, transparent 50%);
}
.page-hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 72px 48px 56px;
  width: 100%;
}
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.page-hero-eyebrow span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,102,0,0.7);
}
.page-hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: rgba(255,102,0,0.5);
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 0.88; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 20px;
}
.page-hero-title .accent { color: var(--orange); }
.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.45);
  max-width: 460px; line-height: 1.65;
  margin-bottom: 20px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.page-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb-sep { color: rgba(255,102,0,0.4); }

/* Page body wrapper */
.page-body { background: #fff; }

/* Responsive nav */
@media (max-width: 900px) {
  .site-nav-links { display: none; }
  .site-nav-cta { display: none; }
  .site-nav-hamburger { display: flex; }
  .site-nav-inner { padding: 0 24px; }
  .page-hero-content { padding: 48px 24px 40px; }
}
@media (max-width: 540px) {
  .page-hero-content { padding: 36px 16px 32px; }
  .page-hero-title { font-size: clamp(34px, 9vw, 56px); margin-bottom: 12px; }
  .page-hero-sub { font-size: 13px; }
  .page-hero-eyebrow { margin-bottom: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION (homepage overlay nav)
═══════════════════════════════════════════════════════════ */
#nav {
  transition: background 0.5s var(--ease-luxury),
              backdrop-filter 0.5s, border-bottom 0.5s;
}
#nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 102, 0, 0.12);
}
.nav-logo-shield svg { transition: filter 0.3s; }
.nav-logo-shield:hover svg { filter: drop-shadow(0 0 8px rgba(255,102,0,0.6)); }
.nav-link { position: relative; padding: 4px 0; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease-luxury);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   HERO CANVAS & ATMOSPHERE
═══════════════════════════════════════════════════════════ */
.hero-canvas { z-index: 1; }

/* Background of the hero section itself */
#hero {
  background:
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(255,80,0,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255,60,0,0.06) 0%, transparent 60%),
    #0a0a0a;
}

/* Scanlines — very subtle horizontal lines */
.hero-atm-scanlines {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  z-index: 11;
}

/* Vignette — darkens edges */
.hero-atm-vignette {
  background: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    transparent 40%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 12;
}

/* Orange center glow */
.hero-atm-glow {
  background: radial-gradient(
    ellipse 60% 50% at 58% 55%,
    rgba(255, 80, 0, 0.06) 0%,
    transparent 70%
  );
  z-index: 12;
}

/* ═══════════════════════════════════════════════════════════
   HERO PANELS
═══════════════════════════════════════════════════════════ */

/* Elements start invisible for GSAP */
.hero-el {
  opacity: 0;
  transform: translateY(24px);
}

/* Eyebrow pill */
.hero-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 2px;
  background: rgba(255, 102, 0, 0.06);
  letter-spacing: 0.2em;
}

/* ─── Spec Cards (Right Panel) ─── */
.spec-card {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 14px 16px 14px 20px;
  border-left: 2px solid rgba(255, 102, 0, 0.35);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: -1px;           /* collapse borders */
  transition: background 0.3s, border-left-color 0.3s;
  position: relative;
  overflow: hidden;
}
.spec-card::before {             /* shimmer on hover */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,102,0,0.04), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.spec-card:hover { background: var(--glass-hover); border-left-color: var(--orange); }
.spec-card:hover::before { opacity: 1; }

.spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.spec-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.spec-unit {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.45);
}

/* 3D Model badge */
.model-badge {
  display: flex; align-items: center; gap: 8px;
}
.model-badge-dot {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ─── Buttons ─── */
.btn-primary-hero {
  position: relative; overflow: hidden;
}
.btn-primary-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary-hero:hover::before { opacity: 1; }
.hover\:shadow-orange-glow:hover {
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.45),
              0  0   0 1px rgba(255,102,0,0.3);
}

/* ─── Scroll indicator ─── */
.scroll-mouse {
  width: 20px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; justify-content: center;
  padding-top: 6px;
  pointer-events: all;
}
.scroll-dot {
  width: 3px; height: 7px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-fall 1.8s ease-in-out infinite;
}
@keyframes scroll-fall {
  0%   { transform: translateY(0);   opacity: 1; }
  75%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}
.scroll-indicator { pointer-events: all; }

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════ */

/* ── Layer 1: Background video ── */
#heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* ── Layer 2: Dark gradient overlay ── */
.hs-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(104deg,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.80) 20%,
      rgba(0,0,0,0.52) 42%,
      rgba(0,0,0,0.20) 60%,
      rgba(0,0,0,0.06) 76%,
      transparent 90%
    ),
    linear-gradient(to top,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.22) 28%,
      transparent 58%
    );
}

/* ── Layer 3: Orange ambient glow ── */
.hs-ambient-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 72% at 68% 54%, rgba(255,80,0,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 32% 42% at 72% 74%, rgba(255,120,0,0.08) 0%, transparent 55%);
}

/* ── Track + Slides ── */
#hsTrack {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Layer 4: Text content (left side) ── */
.hs-content {
  position: relative;
  z-index: 10;
  padding-left: clamp(24px, 6.5vw, 100px);
  padding-right: 22px;
  width: min(540px, 44vw);
  flex-shrink: 0;
}

.hs-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(9px, 1.0vw, 11px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ff6600;
  margin-bottom: clamp(6px, 1vh, 10px);
}

.hs-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 clamp(8px, 1.4vh, 16px);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hs-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  line-height: 1.50;
  color: rgba(255,255,255,0.68);
  margin-bottom: clamp(10px, 1.6vh, 18px);
  max-width: 440px;
}

/* ── Premium spec cards ── */
.hs-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  margin-bottom: clamp(12px, 1.8vh, 20px);
}

.hs-spec {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid #ff6600;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.hs-spec-k {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.hs-spec-v {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
}

/* ── CTA Buttons ── */
.hs-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hs-btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: #ff6600;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.22s, box-shadow 0.22s;
}
.hs-btn-fill:hover {
  background: #ff8033;
  box-shadow: 0 0 28px rgba(255,102,0,0.50);
}

.hs-btn-line {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 2px;
  transition: border-color 0.22s, color 0.22s;
}
.hs-btn-line:hover {
  border-color: #ff6600;
  color: #ff6600;
}

/* ── Layer 5: Motorcycle PNG ── */
.hs-bike-zone {
  position: absolute;
  right: -3%;
  bottom: 0;
  top: 0;
  width: 64%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.hs-bike-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  will-change: transform;
}

/* Injected by JS: dark vignette backing behind bike */
.hs-bike-dark {
  position: absolute;
  inset: -20% -15%;
  background: radial-gradient(ellipse 78% 70% at 50% 58%, rgba(0,0,0,0.55) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.hs-bike-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 30px 70px rgba(0,0,0,0.90))
    drop-shadow(0 6px 24px rgba(255,80,0,0.24))
    brightness(1.08) contrast(1.06) saturate(1.12);
}

/* Orange engine glow behind bike */
.hs-bike-glow {
  position: absolute;
  bottom: 6%;
  left: 28%;
  right: 22%;
  height: 48%;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255,90,0,0.30) 0%, rgba(255,120,0,0.10) 40%, transparent 72%);
  z-index: 0;
  filter: blur(32px);
  pointer-events: none;
  animation: hsGlowPulse 5s ease-in-out infinite;
}

/* Ground shadow */
.hs-bike-ground {
  position: absolute;
  bottom: -4%;
  left: 5%;
  right: 5%;
  height: 18%;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255,90,0,0.18) 0%, rgba(0,0,0,0.50) 38%, transparent 68%);
  z-index: 2;
  pointer-events: none;
  filter: blur(14px);
}

/* Injected by JS: orange under-glow reflection */
.hs-bike-reflect {
  position: absolute;
  bottom: -6%;
  left: 12%;
  right: 12%;
  height: 22%;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,90,0,0.22) 0%, transparent 65%);
  z-index: 3;
  filter: blur(22px);
  pointer-events: none;
  opacity: 0.75;
}

/* Injected by JS: GSAP-driven light sweep */
.hs-sweep {
  position: absolute;
  inset: -10% 0;
  width: 42%;
  background: linear-gradient(
    102deg,
    transparent 0%,
    rgba(255,160,50,0.10) 30%,
    rgba(255,220,140,0.07) 50%,
    rgba(255,160,50,0.10) 70%,
    transparent 100%
  );
  mix-blend-mode: screen;
  z-index: 6;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Decorative arc rings */
.hs-arcs {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-52%);
  width: 60%;
  aspect-ratio: 1;
  z-index: 5;
  pointer-events: none;
}
.hs-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,102,0,0.10);
  animation: hsArcBreathe 10s ease-in-out infinite;
}
.hs-arc:nth-child(2) {
  inset: 14%;
  border-color: rgba(255,102,0,0.07);
  animation-delay: -3.3s;
}
.hs-arc:nth-child(3) {
  inset: 28%;
  border-color: rgba(255,102,0,0.05);
  animation-delay: -6.6s;
}

/* ── Layer 6: Slider controls ── */
#hsControls {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  z-index: 40;
  pointer-events: none;
}

#hsDots {
  display: flex;
  gap: 10px;
  pointer-events: all;
}

.hs-dot {
  width: 26px;
  height: 3px;
  background: rgba(255,255,255,0.22);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.hs-dot.active {
  background: #ff6600;
  width: 40px;
}

#hsArrows {
  display: flex;
  gap: 8px;
  pointer-events: all;
}

#hsPrev,
#hsNext {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s;
}
#hsPrev:hover,
#hsNext:hover {
  background: rgba(255,102,0,0.25);
  border-color: rgba(255,102,0,0.50);
}

/* ── Keyframe animations ── */
@keyframes hsGlowPulse {
  0%, 100% { opacity: 0.70; transform: scaleX(1);    }
  50%       { opacity: 1.00; transform: scaleX(1.08); }
}

@keyframes hsArcBreathe {
  0%, 100% { opacity: 0.50; transform: scale(1);    }
  50%       { opacity: 1.00; transform: scale(1.02); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hs-content   { width: min(480px, 48vw); }
  .hs-bike-zone { width: 58%; right: -1%; }
}

@media (max-width: 860px) {
  .hs-slide   { align-items: flex-start; }
  .hs-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding: clamp(20px, 5vw, 40px) 20px 0 clamp(18px, 5vw, 32px);
  }
  .hs-title     { font-size: clamp(44px, 10vw, 72px); }
  .hs-bike-zone {
    position: absolute;
    inset: 0;
    width: 100%;
    right: 0;
    align-items: flex-end;
    opacity: 0.38;
    z-index: 4;
  }
  .hs-bike-wrap { width: 96%; animation: none; }
  #hsControls   { padding: 0 18px; bottom: 10px; }
  .hs-specs     { grid-template-columns: 1fr 1fr; gap: 6px 8px; }
}

@media (max-width: 600px) {
  .hs-content {
    padding-top: clamp(16px, 4.5vw, 26px);
  }
  .hs-title   { font-size: clamp(38px, 12vw, 62px); }
  .hs-sub     { font-size: 12px; }
  .hs-specs   { gap: 5px 7px; }
  .hs-spec    { padding: 8px 10px; }
  .hs-spec-v  { font-size: 13px; }
  .hs-btns    { gap: 8px; }
  .hs-btn-fill { padding: 11px 18px; font-size: 11px; }
  .hs-btn-line { padding: 10px 14px; font-size: 11px; }
  #hsControls  { bottom: 8px; padding: 0 14px; }
}

@media (max-width: 420px) {
  .hs-title { font-size: clamp(34px, 13vw, 52px); }
  .hs-sub   {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hs-specs { margin-bottom: 8px; }
  .hs-btns  { flex-direction: column; gap: 6px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO PARTS FINDER
═══════════════════════════════════════════════════════════ */
.hero-search-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 60px 6vw 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  pointer-events: none;
}

.hs-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  pointer-events: none;
}

/* The finder form itself */
.hs-form {
  display: flex; align-items: stretch;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 3px;
  overflow: hidden;
  height: 64px;
  pointer-events: all;
}

/* Each labeled field group */
.hs-field-group {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  flex: 1;
  min-width: 0;
  position: relative;
}
.hs-field-keyword { flex: 1.4; }

.hs-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 5px;
  display: block; white-space: nowrap;
}

/* Shared input / select style */
.hs-sel,
.hs-kw-input {
  background: none; border: none; outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  width: 100%; padding: 0;
}
.hs-sel {
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  /* Caret */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.25)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 16px;
}
.hs-sel option { background: #111; color: #fff; }
.hs-kw-input::placeholder { color: rgba(255,255,255,0.22); }

/* Vertical separator */
.hs-sep {
  width: 1px; align-self: center;
  height: 30px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Find Parts button */
.hs-find-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px;
  background: var(--orange);
  color: #fff; border: none; cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.22s;
  flex-shrink: 0; white-space: nowrap;
}
.hs-find-btn:hover { background: #ff8000; }

/* Mobile — stack to 2-field row + button */
@media (max-width: 900px) {
  .hs-heading { display: none; }
  .hs-form { height: 56px; }
  .hs-field-group:nth-child(3),  /* Category */
  .hs-field-group:nth-child(5),  /* sep before keyword */
  .hs-sep:nth-child(6) { display: none; }
  .hs-field-keyword { display: none; }
}
@media (max-width: 600px) {
  .hero-search-bar { padding: 40px 18px 20px; }
  .hs-form { height: 52px; }
  /* Keep only model + button on small screens */
  .hs-field-group:first-child,
  .hs-sep:first-of-type { display: none; }
  .hs-find-btn { padding: 0 20px; font-size: 12px; letter-spacing: 0.12em; }
}

/* ═══════════════════════════════════════════════════════════
   WAVE TRANSITION (kept for safety)
═══════════════════════════════════════════════════════════ */
.wave-transition { position: relative; display: block; overflow: hidden; line-height: 0; }

/* (old placeholder — kept for safety) */
.product-placeholder {
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s;
}
.product-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════════════════════
   GSAP FLOATING ANIMATION (applied via JS)
═══════════════════════════════════════════════════════════ */
.floating { animation: none; /* controlled by GSAP */ }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-left-panel  { width: min(380px, 46vw); }
  .hero-right-panel { width: min(200px, 24vw); }
}

@media (max-width: 900px) {
  .hero-left-panel { width: min(420px, 50vw); }
  .hero-right-panel { width: min(200px, 24vw); }
}

@media (max-width: 768px) {
  /* Override inline styles — !important required since hero uses style="" attributes */
  .hero-left-panel {
    width: calc(100% - 48px) !important;
    left: 24px !important;
    right: 24px !important;
    top: 72px !important;
    bottom: 40px !important;
    justify-content: center !important;
  }
  .hero-right-panel { display: none !important; }

  /* Heading scale */
  h1 { font-size: clamp(52px, 13vw, 80px) !important; line-height: 0.88 !important; }

  /* Full-width hero buttons */
  .hero-left-panel .flex.items-center.gap-4 {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .btn-primary-hero,
  .btn-ghost-hero { justify-content: center; text-align: center; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  #nav { padding-left: 16px !important; padding-right: 16px !important; }
  .hero-left-panel {
    left: 16px !important;
    right: 16px !important;
    width: calc(100% - 32px) !important;
  }
  h1 { font-size: clamp(44px, 12vw, 68px) !important; }
}

/* ═══════════════════════════════════════════════════════════
   E-COMMERCE SECTIONS — EDITORIAL REDESIGN
═══════════════════════════════════════════════════════════ */

/* ── Shared layout ── */
.ec-container { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
.ec-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.ec-reveal.visible { opacity: 1; transform: translateY(0); }

.ec-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.ec-eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}
.ec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9; letter-spacing: -0.02em;
  color: #0a0a0a;
}
.sec-row-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
}
.ec-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #888; text-decoration: none;
  transition: color 0.25s;
  padding-bottom: 3px;
  border-bottom: 1px solid #d5d5d5;
  flex-shrink: 0;
}
.ec-view-all:hover { color: var(--orange); border-color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   PARTS FINDER — standalone section below hero
═══════════════════════════════════════════════════════════ */
.parts-finder-section {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.pf-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}

.pf-form {
  display: flex;
  align-items: stretch;
  height: 72px;
  gap: 0;
}

/* Each field cell */
.pf-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.07);
  min-width: 0;
  background: #111;
  transition: background 0.2s;
}
.pf-field:hover { background: #161616; }
.pf-field-kw { flex: 1.3; }

.pf-field-icon {
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.pf-select,
.pf-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  min-width: 0;
}
.pf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.2)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 18px;
}
.pf-select option { background: #1a1a1a; color: #fff; }
.pf-input::placeholder { color: rgba(255,255,255,0.22); }

.pf-divider {
  display: none; /* border handled by .pf-field */
}

/* Actions block */
.pf-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 0 0 24px;
  flex-shrink: 0;
}

.pf-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 32px;
  height: 72px;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.pf-btn:hover { background: #ff8000; }

.pf-advanced {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.pf-advanced:hover { color: var(--orange); }

/* Responsive */
@media (max-width: 1100px) {
  .pf-container { padding: 0 24px; }
  .pf-field-kw { display: none; }
}
@media (max-width: 768px) {
  .pf-form { height: auto; flex-direction: column; gap: 0; }
  .pf-field {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    height: 52px;
    padding: 0 18px;
  }
  .pf-field:last-of-type { border-bottom: none; }
  .pf-actions {
    padding: 12px 18px;
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  .pf-btn { height: 46px; padding: 0 24px; }
}

/* ═══════════════════════════════════════════════════════════
   BROWSE BY BIKE MODEL
═══════════════════════════════════════════════════════════ */
.model-browse-section {
  background: #0c0c0c;
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.model-browse-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.3);
  align-self: flex-end; padding-bottom: 6px;
}
.model-browse-section .ec-title { color: #fff; }

.model-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.model-card {
  display: block;
  text-decoration: none;
  background: #0c0c0c;
  transition: background 0.28s;
  position: relative;
  overflow: hidden;
}
.model-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--model-color, var(--orange));
  transform: scaleX(0);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.model-card:hover { background: #141414; }
.model-card:hover::before { transform: scaleX(1); }
.model-card:hover .model-icon { color: var(--model-color, var(--orange)); }
.model-card:hover .model-count { color: var(--model-color, var(--orange)); }

.model-card-inner {
  display: flex; flex-direction: column;
  padding: 28px 22px 24px;
  gap: 16px;
  height: 100%;
}

.model-icon {
  width: 64px; height: 32px;
  color: rgba(255,255,255,0.22);
  transition: color 0.28s;
  display: flex; align-items: center;
}
.model-icon svg { width: 100%; height: 100%; }

.model-info { flex: 1; }
.model-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1;
  color: #fff; margin-bottom: 5px;
}
.model-info span {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.28);
  line-height: 1.5; display: block;
}

.model-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  transition: color 0.28s;
}

.model-card-all .model-icon { color: rgba(255,102,0,0.3); }
.model-card-all .model-icon svg { width: 32px; height: 32px; }

@media (max-width: 1100px) {
  .model-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .model-browse-section { padding: 56px 0; }
  .model-browse-sub { display: none; }
}

/* ── Announcement bar ── */
.announcement-bar {
  background: #0a0a0a;
  overflow: hidden; padding: 12px 0;
  border-bottom: 1px solid rgba(255,102,0,0.12);
}
.ann-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 34s linear infinite;
}
.ann-track span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  flex-shrink: 0;
}
.ann-sep { color: rgba(255,102,0,0.25) !important; font-size: 7px !important; letter-spacing: 0 !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Category Cards — newspaper tight-cell grid ── */
#categories { background: #f6f5f3; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #dedad5;
  overflow: hidden;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 26px;
  background: #f6f5f3;
  border: none;
  border-right: 1px solid #dedad5;
  border-bottom: 1px solid #dedad5;
  border-radius: 0;
  text-decoration: none; color: #0a0a0a;
  position: relative; overflow: hidden;
  min-height: 190px;
  transition: background 0.28s;
}
/* Remove double borders on last cells */
.cat-card:nth-child(4n)   { border-right: none; }
.cat-card:nth-child(n+5)  { border-bottom: none; }

/* Sliding dark fill on hover */
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: #0a0a0a;
  transform: translateY(101%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.cat-card:hover::before { transform: translateY(0); }
.cat-card::after { display: none; }

.cat-card:hover .cat-icon-wrap { color: var(--orange); }
.cat-card:hover .cat-text h3,
.cat-card:hover .cat-text p,
.cat-card:hover .cat-arrow { color: rgba(255,255,255,0.9); }
.cat-card:hover .cat-arrow { color: var(--orange) !important; }

.cat-icon-wrap {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border-radius: 0;
  color: #aaa;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  transition: color 0.28s;
}
.cat-text {
  position: relative; z-index: 1; flex: 1;
}
.cat-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; line-height: 1.1;
  color: #0a0a0a; margin: 0 0 5px;
  transition: color 0.28s;
}
.cat-text p {
  font-size: 11px; color: #aaa;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.06em;
  transition: color 0.28s;
}
.cat-arrow {
  margin-top: auto; margin-left: 0;
  font-size: 20px; color: #ccc;
  padding-top: 18px;
  position: relative; z-index: 1;
  transition: color 0.28s, transform 0.28s;
}
.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* ── Product Tabs — underline style ── */
.prod-tabs {
  display: flex; gap: 0;
  margin-bottom: 36px;
  border-bottom: 1px solid #e8e8e8;
}
.prod-tab {
  padding: 10px 22px;
  background: none; border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #aaa; cursor: pointer; transition: all 0.22s;
  border-radius: 0;
}
.prod-tab:hover { color: #333; }
.prod-tab.tab-active {
  color: #0a0a0a; background: none;
  border-bottom-color: var(--orange);
}

/* ── Product Grid — cell-based ── */
#products { background: #fff; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #ebebeb;
  overflow: hidden;
}
.prod-card {
  background: #fff;
  border: none;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-radius: 0; overflow: hidden;
  transition: background 0.25s;
  position: relative;
}
.prod-card:nth-child(4n) { border-right: none; }
.prod-card:nth-last-child(-n+4) { border-bottom: none; }
.prod-card:hover { background: #fafafa; box-shadow: none; transform: none; border-color: #ebebeb; }
.prod-card:hover .prod-img-icon { opacity: 1; transform: scale(1.06) translateY(-3px); }
.prod-card:hover .prod-name { color: #ff6600; }
/* Card overlay link — covers the card; Add to Cart button sits above via z-index */
.prod-card-link { position: absolute; inset: 0; z-index: 1; }
.prod-body { position: relative; z-index: 2; }
.prod-wish { z-index: 3 !important; }

.prod-img-wrap {
  position: relative; height: 210px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #fff !important;
}
.prod-img-icon {
  width: 88px; height: 88px;
  position: relative; z-index: 1;
  opacity: 0.68;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.prod-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.16em; padding: 4px 10px;
  border-radius: 2px;
}
.badge-hot  { background: #c00; color: #fff; }
.badge-new  { background: #0a0a0a; color: #fff; }
.badge-sale { background: var(--orange); color: #fff; }
.badge-best { background: #222; color: #fff; }

.prod-wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.85); border: none;
  border-radius: 50%; font-size: 13px; color: #ccc;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.prod-wish:hover, .prod-wish.wished { color: #e00; }

.prod-body { padding: 16px 18px 18px; }

/* Specs/condition strip below image */
.prod-spec-strip {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  background: #fafafa;
}
.prod-spec-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 7px 12px;
  border-right: 1px solid #f0f0f0;
  flex: 1;
  text-align: center;
}
.prod-spec-item:last-child { border-right: none; }
.prod-spec-key {
  font-family: 'Rajdhani', sans-serif;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #bbb; margin-bottom: 2px;
}
.prod-spec-val {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; color: #333;
}

.prod-brand {
  display: block; font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 5px;
}
.prod-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: #0a0a0a; line-height: 1.38; margin-bottom: 7px;
}
.prod-stars { font-size: 11px; color: #f59e0b; margin-bottom: 9px; }
.prod-rcount { color: #ccc; font-family: 'Inter', sans-serif; font-size: 10px; margin-left: 4px; }
.prod-pricing { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; }
.price-was {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: #ccc; text-decoration: line-through;
}
.price-now {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.02em; color: #0a0a0a; line-height: 1;
}

/* Compatibility chip */
.prod-fits {
  display: inline-flex; align-items: center; gap: 5px;
  margin-bottom: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #888;
}
.prod-fits::before {
  content: '';
  display: block; width: 5px; height: 5px;
  border-radius: 50%; background: #d0d0d0;
  flex-shrink: 0;
}
.prod-fits.fits-ok { color: #16803c; }
.prod-fits.fits-ok::before { background: #16803c; }

.btn-add-cart {
  width: 100%; display: flex; align-items: center;
  justify-content: center; gap: 7px;
  padding: 11px 16px;
  background: #0a0a0a; color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; border-radius: 0;
  cursor: pointer; transition: background 0.22s;
}
.btn-add-cart:hover { background: var(--orange); }
.btn-add-cart.added { background: #15803d !important; }
.btn-add-cart { position: relative; z-index: 3; }

.btn-ec-primary {
  display: inline-block; padding: 14px 42px;
  background: transparent; color: #0a0a0a;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1.5px solid #0a0a0a; border-radius: 2px;
  text-decoration: none; transition: all 0.25s;
}
.btn-ec-primary:hover { background: #0a0a0a; color: #fff; }

/* ── Flash Sale — raw industrial ── */
#flash-sale {
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}
#flash-sale::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
}

.flash-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 24px;
}
.flash-left { flex: 1; min-width: 200px; }
.flash-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.flash-fire { display: none; }

/* Raw countdown — no border box */
.countdown-box {
  display: flex; align-items: flex-start; gap: 4px;
  background: none; border: none; border-radius: 0; padding: 0;
}
.countdown-unit {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.countdown-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px; font-weight: 900; line-height: 0.88;
  color: #fff; min-width: 76px; text-align: center;
}
.countdown-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-top: 8px;
}
.countdown-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900;
  color: var(--orange); line-height: 0.88; margin-top: 2px;
}

.sale-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.sale-card {
  background: #111;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-radius: 0; overflow: hidden;
  transition: background 0.25s;
  position: relative;
}
.sale-card:last-child { border-right: none; }
.sale-card:hover { background: #171717; box-shadow: none; transform: none; border-color: rgba(255,255,255,0.05); }
.sale-card:hover .sale-name { color: #ff6600; }
.sale-card-link { position: absolute; inset: 0; z-index: 1; }
.sale-body { position: relative; z-index: 2; }

.sale-img {
  position: relative; height: 175px;
  display: flex; align-items: center; justify-content: center;
  background: #fff !important;
}
.sale-pct {
  position: absolute; top: 0; right: 0;
  background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900;
  padding: 8px 14px; border-radius: 0;
  letter-spacing: -0.01em;
}
.sale-body { padding: 16px 20px 20px; }
.sale-brand {
  display: block; font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,102,0,0.65); margin-bottom: 5px;
}
.sale-name {
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 600; color: #fff; line-height: 1.32; margin-bottom: 8px;
}
.sale-pricing { display: flex; align-items: baseline; gap: 9px; margin-bottom: 12px; }
.sale-now {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 900;
  letter-spacing: -0.02em; color: var(--orange); line-height: 1;
}
.sale-progress-wrap { margin-bottom: 14px; }
.sale-progress {
  height: 2px; background: rgba(255,255,255,0.06);
  border-radius: 0; overflow: hidden; margin-bottom: 6px;
}
.sale-progress::after {
  content: ''; display: block; height: 100%;
  width: calc(var(--sold) * 1%);
  background: var(--orange); border-radius: 0;
}
.sale-sold-txt {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.sale-card .btn-add-cart { background: rgba(255,255,255,0.05); }
.sale-card .btn-add-cart:hover { background: var(--orange); }

/* ── Trust Strip — ruled lines ── */
.trust-strip {
  background: #fff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 32px;
  border-right: 1px solid #ebebeb;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
}
.trust-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a0a0a; margin-bottom: 2px; line-height: 1;
}
.trust-item p {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: #aaa; line-height: 1.4;
}

/* ── New Arrivals — editorial dark cells ── */
#new-arrivals { background: #fff; }

.arrivals-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr 3fr;
  gap: 0;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
.arrival-card {
  background: #0e0e0e;
  border-radius: 0; overflow: hidden;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s;
}
.arrival-card:last-child { border-right: none; }
.arrival-card:hover { background: #151515; box-shadow: none; transform: none; }
.arrival-card:hover h3 { color: #ff6600; }
.arrival-card-link { position: absolute; inset: 0; z-index: 1; }
.arrival-info, .arrival-info-sm { position: relative; z-index: 2; }

.arrival-wide { display: flex; flex-direction: row; }
.arrival-img {
  flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 250px;
  background: #fff !important;
}
.arrival-wide .arrival-img { width: 52%; height: auto; min-height: 270px; }
.arrival-icon { width: 100px; height: 100px; opacity: 0.55; }

.arrival-info {
  padding: 28px 24px;
  display: flex; flex-direction: column;
}
.arrival-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.05;
  color: #fff; margin: 6px 0 12px;
}
.arrival-desc {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.3); line-height: 1.75; flex: 1;
}
.arrival-info-sm { padding: 20px 18px; }
.arrival-info-sm h3 {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  color: #fff; margin: 5px 0 10px; line-height: 1.32;
}

.btn-sm-cart {
  padding: 8px 14px;
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Rajdhani', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0; cursor: pointer; transition: all 0.22s;
}
.btn-sm-cart:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-sm-cart { position: relative; z-index: 3; }

/* ── Reviews — editorial ── */
#reviews { background: #f6f5f3; }

.reviews-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.overall-rating {
  display: flex; align-items: center; gap: 28px;
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 0; padding: 24px 32px;
  flex-shrink: 0;
}
.or-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 88px; font-weight: 900;
  letter-spacing: -0.04em; color: #0a0a0a; line-height: 0.88;
}
.or-stars { font-size: 15px; color: #f59e0b; margin-bottom: 4px; }
.or-right p {
  font-size: 11px; color: #aaa; margin-bottom: 12px;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0.06em;
}
.or-bar-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 5px;
  font-size: 10px; font-family: 'Rajdhani', sans-serif; color: #bbb;
  letter-spacing: 0.06em;
}
.or-bar {
  flex: 1; height: 3px; background: #eee; border-radius: 0; overflow: hidden; min-width: 80px;
}
.or-bar > div { height: 100%; background: var(--orange); border-radius: 0; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid #e0ddd9; overflow: hidden;
}
.review-card {
  background: #fff; border: none;
  border-right: 1px solid #e0ddd9;
  border-radius: 0; padding: 32px 28px;
  transition: background 0.25s;
}
.review-card:last-child { border-right: none; }
.review-card:hover { background: #fafaf9; box-shadow: none; transform: none; border-color: #e0ddd9; }

.rv-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rv-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #0a0a0a; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rv-top > div strong {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; color: #0a0a0a;
}
.rv-top > div p { font-size: 11px; color: #bbb; margin-top: 2px; }
.rv-stars { margin-left: auto; font-size: 12px; color: #f59e0b; flex-shrink: 0; }

.rv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.05;
  color: #0a0a0a; margin-bottom: 12px;
}
.rv-body {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: #777; line-height: 1.78; margin-bottom: 20px;
}
.rv-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid #eee;
}
.rv-product {
  font-family: 'Rajdhani', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.16em;
  color: var(--orange); text-transform: uppercase;
}
.rv-date { font-size: 11px; color: #ccc; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.06em; }

/* ── Newsletter — full-bleed orange ── */
.newsletter-section {
  background: var(--orange);
  border-top: none;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Oversized ghost text for texture */
.newsletter-section::after {
  content: '10%';
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: min(26vw, 320px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  color: rgba(0,0,0,0.07);
  pointer-events: none;
  white-space: nowrap;
}

.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.nl-text .ec-eyebrow { color: rgba(255,255,255,0.55); }
.nl-text .ec-eyebrow::before { background: rgba(255,255,255,0.55); }
.nl-text .ec-title { color: #fff; }

.nl-input-wrap {
  display: flex; gap: 0;
  border: none; overflow: hidden;
  max-width: 480px; width: 100%;
}
.nl-input {
  flex: 1; padding: 16px 22px;
  background: rgba(0,0,0,0.18);
  border: none; outline: none;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: #fff;
}
.nl-input::placeholder { color: rgba(255,255,255,0.38); }
.nl-btn {
  padding: 16px 28px;
  background: #0a0a0a; color: #fff;
  border: none; cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.22s; white-space: nowrap;
}
.nl-btn:hover { background: #222; }
.nl-fine {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.38); margin-top: 10px;
}

/* ── Footer ── */
.footer-dark { background: #0a0a0a; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; text-decoration: none;
}
.footer-brand-desc {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.28); line-height: 1.9; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-soc {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: all 0.22s; text-decoration: none;
}
.footer-soc:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-links-col h4 {
  font-family: 'Rajdhani', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.38); text-decoration: none;
  transition: color 0.22s;
}
.footer-links-col a:hover { color: var(--orange); }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.fc-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.32); line-height: 1.5;
}
.footer-nl p {
  font-family: 'Rajdhani', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 10px;
}
.footer-nl-form {
  display: flex; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0; overflow: hidden;
}
.footer-nl-form input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.04); border: none; outline: none;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.2); }
.footer-nl-form button {
  padding: 10px 14px; background: var(--orange); color: #fff;
  border: none; cursor: pointer; font-size: 14px; transition: background 0.2s;
}
.footer-nl-form button:hover { background: #ff8800; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding: 20px 0;
}
.footer-bottom-left p {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.18); margin-bottom: 6px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--orange); }
.footer-payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  padding: 5px 10px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px; font-size: 10px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.28);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — E-COMMERCE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .ec-container { padding: 0 32px; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-card:nth-child(3n) { border-right: none; }
  .prod-card:nth-child(4n) { border-right: 1px solid #ebebeb; }
  .arrivals-grid { grid-template-columns: 1fr 1fr; }
  .arrival-wide { flex-direction: column; }
  .arrival-wide .arrival-img { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .sale-grid { grid-template-columns: repeat(2, 1fr); }
  .sale-card:nth-child(2n) { border-right: none; }
  .sale-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.05); }
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card:nth-child(4n)  { border-right: 1px solid #dedad5; }
  .cat-card:nth-child(2n)  { border-right: none; }
  .cat-card:nth-child(n+5) { border-bottom: 1px solid #dedad5; }
  .cat-card:nth-child(n+7) { border-bottom: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card:nth-child(4n) { border-right: 1px solid #ebebeb; }
  .prod-card:nth-child(2n) { border-right: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid #ebebeb; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:nth-child(2n) { border-right: none; }
  .review-card:nth-child(-n+2) { border-bottom: 1px solid #e0ddd9; }
  .arrivals-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ec-container { padding: 0 24px; }
  #categories, #new-arrivals { padding: 60px 0; }
  #products { padding-top: 60px; padding-bottom: 72px; }
  #flash-sale { padding: 60px 0; }
  #reviews { padding: 60px 0; }
  .newsletter-section { padding: 64px 0; }
  .flash-header { flex-direction: column; align-items: flex-start; }
  .countdown-val { font-size: 52px; min-width: 58px; }
  .countdown-sep { font-size: 38px; }
  .reviews-header { flex-direction: column; }
  .overall-rating { padding: 20px 22px; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .newsletter-section::after { right: -5%; font-size: 50vw; opacity: 0.05; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .sec-row-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); }
  .arrival-wide { flex-direction: column; }
  .arrival-wide .arrival-img { width: 100%; }
}
@media (max-width: 560px) {
  .ec-container { padding: 0 14px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card:nth-child(n) { border-right: none; border-bottom: 1px solid #dedad5; }
  .cat-card:last-child   { border-bottom: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card:nth-child(4n) { border-right: 1px solid #ebebeb; }
  .prod-card:nth-child(2n) { border-right: none; }
  .prod-card:nth-child(n) { border-bottom: 1px solid #ebebeb; }
  .prod-card:nth-last-child(-n+2) { border-bottom: none; }
  .sale-grid { grid-template-columns: repeat(2, 1fr); }
  .sale-card { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .sale-card:nth-child(2n) { border-right: none; }
  .sale-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05); }
  .sale-card:nth-last-child(-n+2) { border-bottom: none; }
  .arrivals-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid #ebebeb; }
  .trust-item:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { border-right: none; border-bottom: 1px solid #e0ddd9; }
  .review-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 8px 16px; }
  .footer-payments { flex-wrap: wrap; gap: 6px; }
  .footer-contact-items { gap: 10px; }
  .footer-nl-form { flex-direction: row; }
  .countdown-val { font-size: 42px; min-width: 48px; }
  .countdown-sep { font-size: 30px; }
  .newsletter-section::after { display: none; }
  .nl-input-wrap { flex-direction: column; }
  .nl-btn { width: 100%; text-align: center; justify-content: center; }
  .sec-row-header { gap: 8px; margin-bottom: 24px; }
  .ec-title { font-size: clamp(28px, 8vw, 44px); }
}
