/* =========================================================
   Al Musawat BIKE — Premium Motorcycle Showroom
   Handcrafted stylesheet · Vanilla CSS3
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --black: #111111;
  --charcoal: #1b1b1b;
  --charcoal-2: #232323;
  --accent: #ff6a00;
  --accent-hover: #ff8a1d;
  --accent-glow: rgba(255, 106, 0, 0.35);
  --bg: #f8f9fa;
  --bg-soft: #f2f3f5;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6b72;
  --text-dim: #9a9aa1;
  --border: #ececee;
  --border-strong: #e0e0e4;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(17, 17, 17, 0.06);
  --shadow: 0 20px 45px -20px rgba(17, 17, 17, 0.18);
  --shadow-lg: 0 40px 80px -30px rgba(17, 17, 17, 0.35);

  --ff-head: "Sora", "Manrope", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-accent { color: var(--accent); }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; color: #fff; }
.loader__logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff3d00);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 40px var(--accent-glow);
  animation: pulse 1.6s var(--ease) infinite;
}
.loader__mark {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.loader__bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}
.loader__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: slide 1.4s linear infinite;
}
.loader__text {
  margin-top: 1rem;
  font-family: var(--ff-head);
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
@keyframes slide { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes pulse { 50% { transform: scale(1.05); box-shadow: 0 0 60px var(--accent-glow); } }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 20px 40px -30px rgba(0, 0, 0, 0.2);
  padding: 0.7rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  transition: color 0.3s;
}
.header.is-scrolled .brand { color: var(--black); }
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ff3d00);
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  box-shadow: 0 8px 20px -8px var(--accent-glow);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__text strong {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand__text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.brand--light { color: #fff; }

.nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header.is-scrolled .nav a { color: var(--text); }
.header.is-scrolled .nav a:hover { color: var(--black); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header.is-scrolled .nav-toggle { color: var(--black); border-color: var(--border-strong); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem;
  --pad-x: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease),
    background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { opacity: 1; }
.btn--sm { --pad-y: 0.65rem; --pad-x: 1.2rem; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--accent-glow);
}
.btn--primary:hover { box-shadow: 0 20px 40px -12px var(--accent-glow); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--charcoal); }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1fbf5b; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 106, 0, 0.15), transparent 50%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.7) 40%, rgba(17, 17, 17, 0.95) 100%);
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  animation: floatUp linear infinite;
  filter: blur(0.5px);
}
@keyframes floatUp {
  0% { transform: translateY(20vh) scale(0.5); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

.hero__content { position: relative; z-index: 2; max-width: 900px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}
.eyebrow--dark {
  background: var(--bg-soft);
  border-color: var(--border-strong);
  color: var(--text-muted);
}
.eyebrow--light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}
.eyebrow i { color: var(--accent); }
.hero__title { color: #fff; margin-bottom: 1.4rem; }
.hero__sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 640px;
  margin-bottom: 2.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 3.5rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stat { color: #fff; }
.stat__num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.03em;
  color: #fff;
}
.stat span:last-of-type {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.4rem;
}
.stat p {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  z-index: 2;
}
.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 3px;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--black);
  color: #fff;
  overflow: hidden;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
}
.marquee__track span { color: rgba(255, 255, 255, 0.85); white-space: nowrap; }
.marquee__track i { color: var(--accent); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section basics ---------- */
.section { padding: 6rem 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--black); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255, 255, 255, 0.7); }

.section__head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section__head--left { text-align: left; margin: 0 0 2.5rem; }
.section__head h2 { margin: 0.7rem 0 0.9rem; }
.section__head p { font-size: 1.05rem; }
.section__foot { text-align: center; margin-top: 3rem; }

.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Feature cards ---------- */
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 106, 0, 0.02));
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  transition: transform 0.4s var(--ease-out);
}
.feature:hover .feature__icon { transform: rotate(-6deg) scale(1.06); }
.feature h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }

/* ---------- Inventory ---------- */
.bike {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bike:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.bike__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #eaeaec; }
.bike__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.bike:hover .bike__media img { transform: scale(1.08); }
.bike__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bike__fav {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  display: grid; place-items: center;
  transition: color 0.25s, transform 0.25s;
}
.bike__fav:hover { color: var(--accent); transform: scale(1.1); }
.bike__body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.bike__title {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.bike__title h3 { font-size: 1.15rem; }
.bike__price { color: var(--accent); font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.bike__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}
.bike__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.bike__meta i { color: var(--accent); width: 14px; }
.bike__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.4rem;
}
.bike__loc { font-size: 0.82rem; color: var(--text-dim); display: inline-flex; align-items: center; gap: 0.35rem; }
.bike__cta {
  color: var(--black); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: color 0.25s, gap 0.3s;
}
.bike__cta:hover { color: var(--accent); gap: 0.6rem; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.steps li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.steps__num {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 106, 0, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}
.steps li h3 { margin-bottom: 0.35rem; }

/* ---------- Sell ---------- */
.sell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 4rem;
}
.sell__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.sell__list li { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,0.85); }
.sell__list i {
  color: var(--accent);
  background: rgba(255, 106, 0, 0.14);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem;
}
.sell__visual { position: relative; }
.sell__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sell__badge {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 40px -15px var(--accent-glow);
}
.sell__badge strong { font-family: var(--ff-head); font-size: 1.4rem; }
.sell__badge span { font-size: 0.85rem; max-width: 130px; line-height: 1.3; }

/* ---------- Services ---------- */
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -50% -50% auto auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}
.service-card h3 { margin-bottom: 0.4rem; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.about__visual { position: relative; }
.about__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__pill {
  position: absolute;
  bottom: 1.2rem; right: -1rem;
  background: var(--card);
  color: var(--black);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.about__pill i { color: var(--accent); }
.about__copy p { margin-top: 1rem; font-size: 1.02rem; }

.owner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.owner img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.owner strong { display: block; font-family: var(--ff-head); font-size: 1rem; }
.owner span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonials { padding-bottom: 3rem; }
.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: auto;
  display: flex; flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 0.15em; }
.review__text { color: var(--text); font-size: 1rem; line-height: 1.65; }
.review__author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.review__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review__author strong { display: block; font-family: var(--ff-head); font-size: 0.95rem; }
.review__author span { font-size: 0.82rem; color: var(--text-muted); }
.swiper-pagination-bullet { background: var(--border-strong); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--accent); width: 24px; border-radius: 999px; }

/* ---------- Stats band ---------- */
.stats-band { padding: 4rem 0; }
.stat-band { text-align: center; color: #fff; }
.stat-band .stat__num { font-size: clamp(2.4rem, 4vw, 3.2rem); }
.stat-band p { color: rgba(255,255,255,0.6); font-size: 0.9rem; letter-spacing: 0.04em; margin-top: 0.4rem; }

/* ---------- Compare ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare__col {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--card);
}
.compare__col ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.8rem; }
.compare__col li { display: flex; align-items: center; gap: 0.8rem; font-size: 1rem; }
.compare__col--bad h3 { color: var(--text-muted); }
.compare__col--bad li { color: var(--text-muted); }
.compare__col--bad i { color: #d63838; background: rgba(214,56,56,0.1); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; }
.compare__col--good {
  background: var(--black);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.compare__col--good::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.35), transparent 65%);
}
.compare__col--good h3 { color: #fff; position: relative; }
.compare__col--good li { color: rgba(255,255,255,0.9); position: relative; }
.compare__col--good i { color: var(--accent); background: rgba(255,106,0,0.16); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.75rem; }

/* ---------- Gallery ---------- */
.gallery {
  columns: 3;
  column-gap: 1rem;
}
.gallery figure {
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
  transition: transform 0.7s var(--ease-out);
}
.gallery figure::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(17,17,17,0) 40%, rgba(17,17,17,0.55));
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 2rem;
  animation: fadeIn 0.3s var(--ease);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: #fff; font-size: 1.6rem;
  background: rgba(255,255,255,0.1);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ---------- FAQ ---------- */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.faq { display: grid; gap: 0.8rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq details[open] { border-color: transparent; box-shadow: var(--shadow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  color: var(--accent);
  background: rgba(255, 106, 0, 0.1);
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.35s var(--ease-out);
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.contact__map { grid-column: 1 / -1; }
.contact__map iframe {
  width: 100%; height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact__list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 1rem; }
.contact__list li { display: flex; align-items: center; gap: 1rem; }
.contact__list i {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--accent); display: grid; place-items: center;
  font-size: 1rem;
}
.contact__list span { display: block; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.contact__list strong { display: block; font-family: var(--ff-head); font-size: 1.02rem; color: var(--black); }
.contact__quick { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.contact__form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.contact__form h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}
.form-note {
  color: #2f9e56;
  background: rgba(47, 158, 86, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  margin-top: 2rem;
}
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer a { color: rgba(255, 255, 255, 0.7); transition: color 0.25s; }
.footer a:hover { color: var(--accent); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { max-width: 320px; color: rgba(255,255,255,0.6); margin: 1rem 0 1.5rem; }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.hours li { display: flex; justify-content: space-between; }
.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Mobile bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.7rem;
  gap: 0.5rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .sell, .about, .contact, .faq-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery { columns: 2; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
}

@media (max-width: 720px) {
  .section { padding: 4.5rem 0; }
  .nav {
    position: fixed;
    inset: 74px 1rem auto 1rem;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    align-items: stretch;
  }
  .nav.is-open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav a {
    color: var(--text) !important;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__actions .btn { display: none; }

  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .contact__form { padding: 1.8rem; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero { padding-top: 7rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .scroll-indicator { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   PREMIUM APP LAYER — filters, modals, booking, showcase
   ========================================================= */

body.is-locked { overflow: hidden; }
:where(.btn) { touch-action: manipulation; }

.btn--ghost-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost-dark:hover { background: #fff; border-color: var(--black); }

.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

/* ---------- Toasts ---------- */
.toasts {
  position: fixed;
  z-index: 4000;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 0.5rem;
  width: min(92vw, 380px);
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--black);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px);
  transition: 0.3s var(--ease-out);
}
.toast.is-in { opacity: 1; transform: translateY(0); }
.toast i { color: var(--accent); }

/* ---------- Filters ---------- */
.filters {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.filters__search {
  position: relative;
  margin-bottom: 0.9rem;
}
.filters__search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}
.filters__search input {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font: inherit;
  background: var(--bg-soft);
}
.filters__search input:focus { outline: 2px solid var(--accent); background: #fff; }
.filters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.7rem;
  align-items: end;
}
.fsel { display: grid; gap: 0.3rem; min-width: 0; }
.fsel span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.fsel select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
}
.filters__reset { height: 42px; }

.inv-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.inv-count { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }
.pill {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.pill.is-hidden { display: none; }

/* ---------- Bike card extras ---------- */
.bike { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.bike__fav.is-active { color: var(--accent); }
.bike__compare {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 3;
  cursor: pointer;
}
.bike__compare input { position: absolute; opacity: 0; pointer-events: none; }
.bike__compare span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  transition: 0.25s var(--ease);
}
.bike__compare.is-active span,
.bike__compare:hover span { background: var(--accent); }
button.bike__cta {
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0;
}

/* ---------- Skeletons / empty ---------- */
.skeleton-card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0 0 1rem;
  overflow: hidden;
}
.sk {
  background: linear-gradient(90deg, #eee 25%, #f6f6f6 37%, #eee 63%);
  background-size: 400% 100%;
  animation: sk 1.3s ease infinite;
}
.sk--img { height: 200px; }
.sk--line { height: 14px; margin: 1rem 1rem 0; border-radius: 6px; }
.sk--short { width: 50%; }
@keyframes sk { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}
.empty-state i { font-size: 2.2rem; color: var(--text-dim); }
.empty-state h3 { margin: 0.8rem 0 0.3rem; font-family: var(--ff-head); }
.empty-state p { color: var(--text-muted); margin-bottom: 1rem; }
.empty-state--sm { padding: 2.2rem 1rem; }

/* ---------- Layers (modals / drawers) ---------- */
.layer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(0.5rem, 2vw, 2rem);
  background: rgba(10, 10, 12, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  overflow-y: auto;
}
.layer.is-open { opacity: 1; }
.layer__panel {
  width: min(1180px, 100%);
  max-height: calc(100dvh - 2rem);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.layer__panel--mid { width: min(760px, 100%); }
.layer__panel--wide { width: min(1100px, 100%); }
.layer--drawer { place-items: stretch end; padding: 0; }
.layer__panel--drawer {
  width: min(420px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 0;
}
.layer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 4;
}
.layer__bar strong { font-family: var(--ff-head); }
.layer__bar-actions { display: flex; gap: 0.4rem; }
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: #fff;
  cursor: pointer;
  color: var(--text);
  transition: 0.25s var(--ease);
}
.icon-btn:hover { background: var(--black); color: #fff; border-color: var(--black); }
.icon-btn.is-active { color: var(--accent); border-color: var(--accent); }
.icon-btn--close:hover { background: var(--accent); border-color: var(--accent); }
.layer__body { padding: clamp(1rem, 2.4vw, 1.75rem); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.layer__foot {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--card);
}
.layer__sticky {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem calc(0.9rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--card);
}
.layer__sticky-info strong { display: block; font-family: var(--ff-head); font-size: 1.25rem; }
.layer__sticky-info span { font-size: 0.8rem; color: var(--text-muted); }
.layer__sticky-cta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.crumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); min-width: 0; }
.crumbs i { font-size: 0.6rem; }
.crumbs strong { color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Bike modal ---------- */
.bm { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(1rem, 2.5vw, 2rem); }
.bm__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
}
.bm__stage img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease-out); }
.bm__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 0.6rem; }
.bm__thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.bm__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bm__thumb.is-active { border-color: var(--accent); }
.bm__head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; }
.bm__head h2 { font-family: var(--ff-head); font-size: clamp(1.35rem, 3vw, 2rem); margin: 0.35rem 0 0.2rem; }
.bm__price { color: var(--accent); font-weight: 700; font-size: 1.3rem; margin: 0; }
.bm__actions { display: flex; gap: 0.45rem; }
.bm__desc { color: var(--text-muted); margin-top: 1rem; }

.tabs { position: relative; display: flex; gap: 0.25rem; overflow-x: auto; margin: 1.25rem 0 1rem; border-bottom: 1px solid var(--border); scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.tab.is-active { color: var(--text); }
.tabs__ink { position: absolute; bottom: -1px; left: 0; height: 2px; background: var(--accent); transition: 0.35s var(--ease-out); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.6rem; }
.spec-cell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  display: grid;
  gap: 0.15rem;
}
.spec-cell i { color: var(--accent); }
.spec-cell span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.spec-cell strong { font-size: 0.95rem; }

.spec-table, .cmp-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--card); }
.spec-table th, .spec-table td, .cmp-table th, .cmp-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}
.spec-table th { width: 45%; color: var(--text-muted); font-weight: 600; }

.feature-check { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.5rem; }
.feature-check li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}
.feature-check i { color: var(--accent); }

.emi { display: grid; gap: 1rem; }
.emi__controls { display: grid; gap: 0.9rem; }
.emi__controls label, .range-row {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.emi__controls b, .range-row b { color: var(--text); float: right; }
input[type="range"] { width: 100%; accent-color: var(--accent); }
.emi__result, .tool-out {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 0.2rem;
}
.emi__result span, .tool-out span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); }
.emi__result strong, .tool-out strong { font-family: var(--ff-head); font-size: clamp(1.5rem, 4vw, 2rem); color: var(--accent); }
.emi__result small, .tool-out small { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

.seller { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; }
.seller__head { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.9rem; }
.seller__head strong { display: block; font-family: var(--ff-head); }
.seller__head span { font-size: 0.82rem; color: var(--text-muted); }
.seller ul { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.seller ul i { color: var(--accent); width: 18px; }
.seller__cta { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- Booking ---------- */
.stepper { display: flex; list-style: none; margin: 0; padding: 0.9rem 1rem; gap: 0.4rem; background: var(--card); border-bottom: 1px solid var(--border); overflow-x: auto; }
.stepper__item {
  flex: 1 1 0;
  min-width: 92px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.stepper__item span {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 0.78rem;
  flex: 0 0 auto;
}
.stepper__item.is-active { color: var(--text); }
.stepper__item.is-active span { background: var(--accent); color: #fff; }
.stepper__item.is-done span { background: var(--black); color: #fff; }
.step-panel { display: none; }
.step-panel.is-active { display: block; }
.field.has-error input, .field.has-error select { border-color: #e23b3b; box-shadow: 0 0 0 3px rgba(226,59,59,0.12); }

.pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.6rem; margin-bottom: 1rem; }
.pay-card {
  border: 1px solid var(--border-strong);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.25s var(--ease);
}
.pay-card i { font-size: 1.4rem; }
.pay-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pay-card.is-active { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

.summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; margin-top: 1rem; }
.summary h4 { margin: 0 0 0.6rem; font-family: var(--ff-head); }
.summary ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.summary li { display: flex; justify-content: space-between; gap: 1rem; }
.summary__total { border-top: 1px solid var(--border); padding-top: 0.6rem; font-size: 1.05rem; }
.summary__total strong { color: var(--accent); }
.summary__note { font-size: 0.78rem; color: var(--text-muted); margin: 0.8rem 0 0; }

.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.success { text-align: center; padding: 1rem 0 0.5rem; }
.success__tick {
  width: 82px; height: 82px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 0 0 12px var(--accent-glow);
}
.success h3 { font-family: var(--ff-head); font-size: 1.6rem; margin: 0 0 0.35rem; }
.success p { color: var(--text-muted); }
.success__box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin: 1.2rem 0;
}
.success__box div { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.8rem; display: grid; gap: 0.2rem; }
.success__box span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.success__cta { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

/* ---------- Compare ---------- */
.compare-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1800;
  background: var(--black);
  color: #fff;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
  padding-bottom: env(safe-area-inset-bottom);
}
.compare-bar.is-visible { transform: translateY(0); }
.compare-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.85rem 1rem; }
.compare-bar__left { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; min-width: 0; }
.compare-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.12); border-radius: 999px; padding: 0.3rem 0.7rem; font-size: 0.78rem; }
.chip button { background: none; border: 0; color: inherit; cursor: pointer; font-size: 1rem; line-height: 1; }
.compare-bar .btn--ghost-dark { color: #fff; border-color: rgba(255,255,255,0.3); }
.compare-bar .btn--ghost-dark:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cmp-scroll { overflow-x: auto; }
.cmp-table { min-width: 620px; }
.cmp-table thead th { text-align: center; }
.cmp-table thead img { width: 100%; max-width: 140px; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); display: block; margin: 0 auto 0.4rem; }
.cmp-table tbody th { color: var(--text-muted); font-weight: 600; }
.cmp-table td { text-align: center; }
.cmp-table tr.is-diff td { background: rgba(255, 106, 0, 0.07); font-weight: 600; }

/* ---------- Favorites drawer ---------- */
.fav-item { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.fav-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }
.fav-item strong { display: block; font-size: 0.95rem; }
.fav-item span { font-size: 0.82rem; color: var(--text-muted); }
.fav-item__actions { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.fav-item__actions button { border: 0; background: none; font: inherit; font-size: 0.8rem; font-weight: 600; color: var(--accent); cursor: pointer; padding: 0; }
.fav-item__actions button[data-fav-remove] { color: var(--text-muted); }

/* ---------- Showcase ---------- */
.showcase { position: relative; background: var(--black); color: #fff; overflow: hidden; }
.showcase__bg {
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255,106,0,0.22), transparent 70%);
  pointer-events: none;
}
.section__head--light h2, .section__head--light p { color: #fff; }
.section__head--light p { color: rgba(255,255,255,0.68); }
.showcase-swiper { padding: 1rem 0 3rem; overflow: visible; }
.showcase__slide { width: min(560px, 84vw); }
.showcase__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #000;
}
.showcase__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.swiper-slide-active .showcase__card img { transform: scale(1.06); }
.showcase__glow { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.88)); }
.showcase__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1rem, 3vw, 2rem); }
.showcase__brand { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.showcase__meta h3 { font-family: var(--ff-head); font-size: clamp(1.3rem, 3.4vw, 2.2rem); margin: 0.3rem 0 0.6rem; }
.showcase__specs { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-bottom: 0.7rem; }
.showcase__specs span { display: grid; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.showcase__specs b { font-size: 1rem; color: #fff; letter-spacing: 0; text-transform: none; }
.showcase__price { font-family: var(--ff-head); font-size: 1.3rem; color: var(--accent); margin: 0 0 0.8rem; }
.showcase__nav { display: flex; justify-content: center; gap: 0.6rem; margin-top: 0.5rem; }
.showcase__nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.showcase__nav button:hover { background: var(--accent); border-color: var(--accent); }
.showcase-swiper .swiper-pagination-bullet { background: #fff; }
.showcase-swiper .swiper-pagination-bullet-active { background: var(--accent); }

/* ---------- Recently viewed ---------- */
.section--tight { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.recent-row { display: flex; gap: 0.8rem; overflow-x: auto; padding-bottom: 0.6rem; scroll-snap-type: x mandatory; }
.recent-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: 0.3s var(--ease-out);
}
.recent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.recent-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.recent-card span { display: grid; padding: 0.7rem 0.85rem; font-size: 0.82rem; color: var(--text-muted); }
.recent-card strong { font-size: 0.92rem; color: var(--text); }

/* ---------- Brands ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8rem; }
.brand-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: 0.3s var(--ease-out);
}
.brand-tile i { font-size: 1.5rem; color: var(--accent); }
.brand-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* ---------- Tools ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }
.tool-card { border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: 0.9rem; align-content: start; }
.tool-card h3 { font-family: var(--ff-head); font-size: 1.4rem; margin: 0; }

/* ---------- Awards ---------- */
.award { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem 1.2rem; text-align: center; }
.award i { font-size: 1.8rem; color: var(--accent); }
.award h3 { font-family: var(--ff-head); font-size: 1.05rem; margin: 0.7rem 0 0.2rem; color: #fff; }
.award p { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--black); color: #fff; }
.cta-banner__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: center; }
.cta-banner h2 { font-family: var(--ff-head); font-size: clamp(1.5rem, 3.5vw, 2.3rem); margin: 0 0 0.4rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0; }
.news-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.news-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.9rem; margin-bottom: 2rem; }
.ccard {
  border-radius: var(--radius);
  padding: 1.2rem;
  display: grid;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--text);
  transition: 0.3s var(--ease-out);
}
.ccard i { font-size: 1.3rem; color: var(--accent); margin-bottom: 0.3rem; }
.ccard strong { font-family: var(--ff-head); }
.ccard span { font-size: 0.85rem; color: var(--text-muted); word-break: break-word; }
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ---------- Floating actions ---------- */
.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 1700;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}
.fab {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--black);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: 0.25s var(--ease);
}
.fab:hover { transform: translateY(-3px); background: var(--accent); }
.fab--wa { background: #25d366; }
.fab--call { background: var(--charcoal-2); }
.fab--top { opacity: 0; pointer-events: none; transform: scale(0.8); }
.fab--top.is-visible { opacity: 1; pointer-events: auto; transform: scale(1); }

/* ---------- Quick inquiry ---------- */
.quick-inquiry {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 1700;
  width: min(320px, calc(100vw - 2rem));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform 0.45s var(--ease-out);
}
.quick-inquiry.is-open { transform: translateY(0); }
.quick-inquiry h4 { font-family: var(--ff-head); margin: 0 0 0.2rem; }
.quick-inquiry p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 0.7rem; }
.quick-inquiry form { display: grid; gap: 0.5rem; }
.quick-inquiry input { padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); font: inherit; }
.quick-inquiry__close { position: absolute; top: 0.5rem; right: 0.6rem; border: 0; background: none; cursor: pointer; color: var(--text-dim); }

/* =========================================================
   RESPONSIVE REFINEMENTS
   ========================================================= */
img, video, iframe, table { max-width: 100%; }
.container { width: 100%; }

@media (max-width: 1024px) {
  .bm { grid-template-columns: 1fr; }
  .layer__panel { max-height: calc(100dvh - 1rem); }
}

@media (max-width: 860px) {
  .layer { padding: 0; }
  .layer__panel { border-radius: 0; width: 100%; height: 100dvh; max-height: 100dvh; }
  .layer__sticky-cta { width: 100%; }
  .layer__sticky-cta .btn { flex: 1 1 auto; justify-content: center; }
  .floating-actions { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
  .compare-bar.is-visible ~ .floating-actions { bottom: calc(9rem + env(safe-area-inset-bottom)); }
  .quick-inquiry { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 720px) {
  .filters { padding: 0.9rem; border-radius: var(--radius); }
  .filters__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters__reset { grid-column: 1 / -1; }
  .fsel select { font-size: 0.85rem; }
  .inv-toolbar { flex-direction: column; align-items: flex-start; }
  .bm__thumbs { grid-template-columns: repeat(3, 1fr); }
  .bm__stage img { transform: none !important; }
  .showcase__slide { width: 88vw; }
  .success__cta .btn { width: 100%; justify-content: center; }
  .layer__foot .btn { flex: 1 1 auto; justify-content: center; }
  .stepper__item span { width: 22px; height: 22px; font-size: 0.7rem; }
  .stepper__item { font-size: 0.72rem; min-width: 78px; }
  .cta-banner__inner { text-align: center; }
  .news-form { justify-content: center; }
  .fav-item { grid-template-columns: 74px minmax(0, 1fr); }
  .fab { width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  .filters__grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .layer__sticky-info strong { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .toast, .layer, .compare-bar, .quick-inquiry, .fab, .bike, .recent-card { transition: none !important; }
  .sk { animation: none; }
}

[hidden] { display: none !important; }

.marquee { overflow: hidden; }
html, body { overflow-x: hidden; max-width: 100%; }
