/* ============================================================
   Car-lungi — Production Stylesheet v5
   Redesign: fixed footer 5-col, trust strip flex, size grid
             responsive centering, install step videos, hamburger,
             video modal, full mobile polish.
   ============================================================ */

:root {
  --brand:      #C8102E;
  --brand-dark: #9B0C24;
  --brand-soft: #FFF1F2;
  --ink:        #1A1A1A;
  --ink-2:      #444;
  --muted:      #777;
  --line:       #E5E5E0;
  --bg:         #FAFAF7;
  --surface:    #FFFFFF;
  --success:    #1B8754;
  --success-bg: #E8F5EE;
  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --container:  1180px;
  --radius:     12px;
  --radius-lg:  16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(var(--container), 92vw); margin-inline: auto; }
.muted  { color: var(--muted); }
.small  { font-size: 13px; }
.accent { color: var(--brand); }

/* ============================================================ URGENCY BAR */
.urgency-bar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
}
.urgency-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.urgency-bar strong { color: #fff; }
.urgency-bar a { color: #FFB4B4; text-decoration: underline; margin-left: 6px; }
.urgency-bar .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 0; gap: 20px;
}
.brandmark { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brandmark img { height: 56px; width: auto; border-radius: 4px; }

.main-nav {
  display: flex; gap: 22px; align-items: center;
  flex: 1; justify-content: center;
}
.main-nav a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  padding: 6px 2px; transition: color .15s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--brand); }
.main-nav a.active { color: var(--brand); border-bottom-color: var(--brand); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta .phone-link { white-space: nowrap; }
#cl-country-select { max-width: 138px; }
@media (max-width: 1280px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 13px; }
  #cl-country-select { max-width: 64px; }
  .header-cta .phone-link span { display: none; }
}
.phone-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
}
.phone-link svg { color: var(--brand); }

.hamburger {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 8px;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--brand); color: #fff !important;
  padding: 13px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  border: none; transition: all .18s ease;
  box-shadow: 0 4px 14px rgba(200,16,46,.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,16,46,.35);
}
.btn-sm { padding: 8px 16px; font-size: 13px; box-shadow: none; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink) !important;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  border: 1.5px solid var(--ink); transition: all .18s ease;
}
.btn-secondary:hover { background: var(--ink); color: #fff !important; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink) !important;
  padding: 13px 22px; border-radius: 10px;
  font-weight: 500; font-size: 14px;
  border: 1px solid var(--line); transition: all .15s;
}
.btn-outline:hover { background: var(--ink); color: #fff !important; border-color: var(--ink); }

.play-tri {
  display: inline-block; width: 0; height: 0;
  border-left: 9px solid var(--brand);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.play-tri-lg {
  display: inline-block; width: 0; height: 0;
  border-left: 22px solid var(--brand);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}

/* ============================================================ PILLS & TAGS */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  background: #F1F1ED; color: var(--ink-2);
}
.pill-alert { background: var(--brand-soft); color: var(--brand); }
.pill .dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

.kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--brand); text-transform: uppercase; margin-bottom: 10px;
}

/* ============================================================ HERO */
.hero { padding: 48px 0 56px; background: var(--bg); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05; letter-spacing: -.5px;
  margin: 14px 0 18px; color: var(--ink); font-weight: 700;
}
.hero-sub {
  font-size: 17px; color: var(--ink-2);
  line-height: 1.6; margin: 0 0 22px; max-width: 480px;
}
.trust-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px; font-size: 13px; color: var(--ink-2); margin-bottom: 26px;
}
.trust-row strong { color: var(--ink); }
.trust-row .stars { color: #F5A623; letter-spacing: 1px; }
.dot-sep { color: var(--muted); }
.hero-cta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hero-foot { font-size: 12px; color: var(--muted); margin: 14px 0 0; }

/* ============================================================ HERO SLIDER */
.hero-media { width: 100%; }
.slider {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: #1a1a1a;
}
.hero-slider {
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.slider .slides { display: flex; height: 100%; transition: transform .45s ease; }
.hero-slider .slide {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.s-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--ink);
  border: none; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: all .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.s-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.s-prev { left: 12px; }
.s-next { right: 12px; }
.dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: none; padding: 0; transition: all .2s;
}
.dots button.active { background: #fff; width: 22px; border-radius: 999px; }

/* ============================================================ TRUST STRIP — FIXED (flex, not grid) */
.trust-strip { background: var(--ink); color: #fff; padding: 22px 0; }
.trust-strip .container {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
}
.trust-item {
  text-align: center;
  flex: 0 0 20%; padding: 6px 12px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block; font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.trust-item span { font-size: 12px; color: rgba(255,255,255,.6); }

/* ============================================================ SECTION HEADS */
.section-head { margin-bottom: 32px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700; line-height: 1.2;
  margin: 0 0 10px; color: var(--ink);
}
.section-head p { margin: 0; font-size: 15px; max-width: 600px; }
.section-head.center p { margin: 0 auto; }

/* ============================================================ FEATURES */
.features { padding: 64px 0; background: var(--surface); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; transition: all .15s;
}
.feature:hover { border-color: var(--brand); transform: translateY(-2px); }
.feature h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; color: var(--ink); }
.feature p  { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ============================================================ SIZE FINDER — FIXED */
.size-finder { padding: 64px 0; background: var(--bg); }
/* Use flex so the last card(s) can be centred on smaller viewports */
.size-grid {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  margin-bottom: 20px;
}
.size-card {
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px 18px 18px;
  text-align: center; position: relative;
  transition: all .2s ease;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
  /* 5 cards fit in a row: (100% - 4×16px gap) / 5 */
  flex: 0 0 calc(20% - 13px); min-width: 155px;
}
.size-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(200,16,46,.12);
}
.size-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-soft), var(--surface));
}
.size-tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .6px;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap;
}
.size-icon  { font-size: 32px; margin-bottom: 8px; }
.size-card h3 { margin: 0 0 4px; font-size: 16px; font-weight: 600; }
.size-models  { font-size: 11px; color: var(--muted); margin: 0 0 10px; min-height: 28px; }
.size-meta    { font-size: 11px; color: var(--ink-2); margin-bottom: 10px; }
.size-price   { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.size-card.featured .size-price { color: var(--brand); }
.size-cta     { font-size: 13px; font-weight: 600; color: var(--brand); margin-top: auto; }
.size-foot    { text-align: center; font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.7; }
.link-strong  { color: var(--brand); font-weight: 600; }
.link-strong:hover { text-decoration: underline; }

/* ============================================================ INSTALL VIDEO — REDESIGNED */
.install-section { padding: 72px 0; background: var(--surface); }

/* Featured main video */
.install-featured { margin: 0 auto 28px; max-width: 420px; } /* portrait for Shorts */
.featured-video   { margin: 0 auto; max-width: 420px; }      /* legacy compat */

.video-shell {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: #1A1A1A;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  cursor: pointer;
}
/* Shorts are portrait — override aspect ratio for the featured player */
.install-featured .video-shell { aspect-ratio: 9/16; }
.video-poster {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.75);
  transition: transform .4s ease, filter .3s ease;
}
.video-shell:hover .video-poster { transform: scale(1.03); filter: brightness(.65); }

/* Play buttons — three sizes */
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%; background: rgba(255,255,255,.95);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .15s ease;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-play.lg { width: 88px; height: 88px; }
.video-play.lg .play-tri { border-left-width: 18px; border-top-width: 11px; border-bottom-width: 11px; }
/* default (no size class) — medium */
.video-play:not(.lg):not(.sm) { width: 64px; height: 64px; }
.video-play.sm { width: 48px; height: 48px; }
.video-play.sm .play-tri { border-left-width: 10px; border-top-width: 7px; border-bottom-width: 7px; }

.video-chip {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.75); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  padding: 5px 10px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
}
.rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FF3030; animation: pulse 1.5s infinite;
}
.video-caption {
  position: absolute; bottom: 18px; left: 20px; right: 20px; color: #fff;
}
.video-caption h3 { margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.video-caption .muted { color: rgba(255,255,255,.75); font-size: 13px; }

/* Step videos — 3-column grid */
.install-steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; max-width: 960px; margin: 0 auto 24px;
}
.install-step-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.install-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.step-video {
  aspect-ratio: 16/9; border-radius: 0;
  box-shadow: none;
}
.step-label { padding: 16px; }
.step-badge {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .8px;
  padding: 3px 8px; border-radius: 4px;
  margin-bottom: 8px; text-transform: uppercase;
}
.step-label h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--ink); }
.step-label p  { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.5; }

.install-foot { text-align: center; font-size: 14px; color: var(--ink-2); margin: 16px 0 0; }

/* ============================================================ HOW IT WORKS */
.how-it-works { padding: 64px 0; background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step  { text-align: center; padding: 24px 16px; position: relative; }
.step-num {
  position: absolute; top: 0; right: 50%;
  transform: translate(60px, -8px);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; border: 3px solid var(--bg);
}
.step-icon {
  width: 88px; height: 88px; margin: 0 auto 16px;
  background: var(--brand-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 38px;
}
.step h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
.step p  { margin: 0; color: var(--ink-2); font-size: 14px; }

/* ============================================================ GALLERY */
.gallery-section { padding: 64px 0; background: var(--surface); }
#installs-slider {
  aspect-ratio: auto; height: auto;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 16px;
  overflow: hidden;
}
#installs-slider .slides { display: flex; gap: 14px; padding: 0; }
#installs-slider .slide {
  flex: 0 0 auto; /* JS sets exact px width */
  aspect-ratio: 4/3; height: auto;
  object-fit: cover; border-radius: 10px;
  background: #f0efe9; border: 1px solid var(--line);
}
#installs-slider .s-prev { left: 6px; }
#installs-slider .s-next { right: 6px; }
#installs-slider .dots   { bottom: 8px; }

/* ============================================================ REVIEWS */
.reviews { padding: 64px 0; background: var(--bg); }
.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 12px; font-size: 15px;
}
.rating-summary .stars { color: #F5A623; letter-spacing: 1px; font-size: 17px; }
.rating-summary strong { font-size: 17px; color: var(--ink); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.review-card header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.avatar-coral  { background: #FFE4D6; color: #C8102E; }
.avatar-blue   { background: #E0F2FE; color: #0369A1; }
.avatar-purple { background: #F3E8FF; color: #7C3AED; }
.avatar-amber  { background: #FFF4D6; color: #B8860B; }
.avatar-green  { background: #DCFCE7; color: #15803D; }
.review-card .reviewer { font-size: 14px; font-weight: 600; line-height: 1.2; }
.review-card .small    { font-size: 11px; }
.verified-tag {
  margin-left: auto; font-size: 10px; font-weight: 600;
  color: var(--success); background: var(--success-bg);
  padding: 3px 6px; border-radius: 4px;
}
.review-card .stars { color: #F5A623; letter-spacing: 1px; font-size: 13px; margin-bottom: 8px; display: block; }
.review-card p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ============================================================ FAQ */
.faq { padding: 64px 0; background: var(--surface); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 10px; transition: border-color .15s;
}
.faq details:hover { border-color: var(--brand); }
.faq details[open] { border-color: var(--brand); background: #FFFCFC; }
.faq summary {
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--brand); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p, .faq details ol { margin: 12px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.faq details ol { padding-left: 20px; }

/* ============================================================ CONTACT */
.contact-section { padding: 56px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-card-info {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
}
.contact-phone { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--ink); margin: 6px 0 14px; }
.contact-cta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.contact-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form label { display: block; margin-bottom: 6px; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.contact-form input, .contact-form select {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px; color: var(--ink); padding: 11px 12px;
  font-family: inherit; font-size: 14px; transition: border-color .15s;
}
.contact-form input:focus, .contact-form select:focus { outline: none; border-color: var(--brand); }

/* ============================================================ BIKE GALLERY */
.bike-gallery { display: flex; flex-direction: column; gap: 10px; width: 100%; min-width: 0; }
.bike-gallery-main {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: #f5f4f0; width: 100%;
}
.bike-main-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: opacity .2s;
}
.bike-gallery-thumbs {
  display: flex; gap: 8px; width: 100%; min-width: 0;
}
.bike-thumb {
  flex: 1 1 0; min-width: 0; aspect-ratio: 1;
  border-radius: 8px; object-fit: cover;
  cursor: pointer; opacity: .55; border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.bike-thumb:hover { opacity: .85; }
.bike-thumb.active { opacity: 1; border-color: var(--brand); }

/* Bike install video section */
.bike-install-video { padding: 64px 0; background: var(--surface); }
.bike-video-wrap {
  display: flex; justify-content: center; margin-top: 32px;
}
.bike-video-wrap .video-shell {
  width: min(320px, 80vw);
  aspect-ratio: 9/16;
  border-radius: 16px;
  cursor: pointer;
}

/* Photo gallery section */
.bike-photo-section { padding: 64px 0; background: var(--bg); }
.bike-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.bike-photo-item {
  border-radius: 12px; overflow: hidden;
  background: #f0efe9;
}
.bike-photo-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  aspect-ratio: 4/3;
}
.bike-photo-wide {
  grid-column: span 2;
  grid-row: span 1;
}
.bike-photo-wide img { aspect-ratio: 16/9; }

@media(max-width:768px){
  .bike-photo-grid { grid-template-columns: repeat(2,1fr); }
  .bike-photo-wide { grid-column: span 2; }
}
@media(max-width:480px){
  .bike-gallery-thumbs { gap: 5px; }
  .bike-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ============================================================ FOOTER — FIXED 5 COLUMNS */
.site-footer { background: #0F0F0F; color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.footer-grid {
  display: grid;
  /* 5 columns matching the 5 divs in the HTML */
  grid-template-columns: 1.8fr 1fr 0.8fr 1fr 1.2fr;
  gap: 32px; margin-bottom: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #fff; }
.footer-brand img { height: 36px; width: auto; border-radius: 3px; }
.footer-brand strong { font-size: 16px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 14px; font-weight: 600; }
.site-footer a { display: block; padding: 4px 0; font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.site-footer a:hover { color: var(--brand); }
.site-footer .muted { color: rgba(255,255,255,.45); }
.site-footer .footer-countries a { display: inline; padding: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 12px;
}

/* ============================================================ STICKY MOBILE BAR */
.sticky-mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 12px; gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.sticky-mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.sm-whatsapp { background: #25D366; color: #fff !important; flex: 0 0 auto; width: 46px; padding: 0 !important; }
.sm-call     { background: var(--ink); color: #fff !important; flex: 0 0 auto; }
.sm-buy      { background: var(--brand); color: #fff !important; flex: 1; }

/* ============================================================ VIDEO MODAL */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.video-modal.open { display: flex; }
/* Portrait modal — YouTube Shorts default */
.modal-frame {
  position: relative;
  height: min(88vh, 700px);
  width: auto;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
/* Landscape modal — step videos */
.modal-frame.landscape {
  height: auto;
  width: min(960px, 92vw);
  aspect-ratio: 16/9;
}
/* Iframe must be absolutely positioned to fill 100% of the frame */
.modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; border: none;
  font-size: 28px; line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,.25); }

/* ============================================================ BIKE-LUNGI PROMO */
.bike-promo {
  padding: 56px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff; position: relative; overflow: hidden;
}
.bike-promo-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.bike-promo h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.15; margin: 8px 0 14px; color: #fff;
}
.bike-promo p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.6; margin: 0 0 20px; max-width: 460px; }
.bike-promo-points { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.bike-promo-points span { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500; }
.bike-promo-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bike-price { display: flex; flex-direction: column; }
.bike-price-amount { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: #fff; line-height: 1; }
.bike-price-meta   { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.bike-promo-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.bike-icon-wrap {
  position: relative; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.2) 0%, rgba(200,16,46,0) 70%);
  display: flex; align-items: center; justify-content: center;
}
.bike-icon { font-size: 120px; filter: drop-shadow(0 8px 24px rgba(200,16,46,.4)); }
.bike-spark { position: absolute; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; animation: spark 2s infinite ease-in-out; }
.spark-1 { top: 20%; left: 15%; animation-delay: 0s; }
.spark-2 { top: 25%; right: 18%; animation-delay: .6s; }
.spark-3 { bottom: 25%; left: 20%; animation-delay: 1.2s; }
@keyframes spark { 0%,100%{ transform:scale(1); opacity:.4 } 50%{ transform:scale(1.5); opacity:1 } }

/* ============================================================ PRODUCT PAGE (Bike) */
.breadcrumb-bar {
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 12px 0; font-size: 13px; color: var(--muted);
}
.breadcrumb-bar a { color: var(--ink-2); }
.breadcrumb-bar a:hover { color: var(--brand); }
.breadcrumb-bar span { margin: 0 6px; color: var(--muted); }
.breadcrumb-bar .current { color: var(--ink); font-weight: 500; }

.product-hero { padding: 40px 0 48px; background: var(--bg); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.product-hero-grid > * { min-width: 0; }
.product-info-block h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1; letter-spacing: -.5px;
  margin: 12px 0 14px; color: var(--ink); font-weight: 700;
}
.price-block {
  background: var(--surface); border: 1.5px solid var(--brand);
  border-radius: var(--radius-lg); padding: 18px 22px;
  margin: 20px 0 22px; display: flex; flex-direction: column;
}
.price-current { font-size: 32px; font-weight: 800; color: var(--brand); line-height: 1; }
.price-meta    { font-size: 13px; color: var(--muted); margin-top: 4px; }
.product-key-points {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 8px; font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.product-key-points li { padding-left: 4px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 13px; }
  .phone-link span { display: none; }
  /* Footer: collapse Contact column into grid */
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-grid > div:nth-child(5) { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(5) a { display: inline; margin-right: 16px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy h1 { font-size: 36px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  /* Size cards: 3 per row → last 2 centred by flex */
  .size-card { flex: 0 0 calc(33.33% - 11px); }
  .review-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:nth-child(5) { grid-column: unset; }
  .footer-grid > div:nth-child(5) a { display: block; margin-right: 0; }
  .bike-promo-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .bike-promo p { margin-left: auto; margin-right: auto; }
  .bike-promo-points { justify-content: center; }
  .bike-promo-cta { justify-content: center; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .install-steps-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .urgency-bar { font-size: 12px; padding: 8px 0; }
  .urgency-bar .container { padding: 0 12px; }

  /* Mobile nav */
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    border-top: 1px solid var(--line);
    align-items: stretch; gap: 14px; z-index: 49;
  }
  .hamburger { display: flex; }
  .header-cta .btn-primary { display: none; }
  .nav { gap: 12px; }
  .brandmark img { height: 44px; }

  .hero { padding: 32px 0 40px; }
  .hero-copy h1 { font-size: 30px; line-height: 1.1; }
  .hero-sub { font-size: 15px; }
  .trust-row { font-size: 12px; }
  .trust-row .dot-sep { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta a { width: 100%; justify-content: center; }

  /* Trust strip: 3 columns (3+2, last 2 centred by flex) */
  .trust-item { flex: 0 0 calc(33.33% - 6px); border-right: none; }

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

  /* Size cards: 2 per row */
  .size-card { flex: 0 0 calc(50% - 8px); padding: 20px 12px 14px; }
  .size-tag  { top: -8px; font-size: 9px; padding: 3px 8px; }

  /* Install videos */
  .install-steps-grid { grid-template-columns: 1fr; }
  .video-caption { bottom: 12px; left: 14px; right: 14px; }
  .video-caption h3 { font-size: 15px; }
  .video-play.lg { width: 64px; height: 64px; }
  .play-tri-lg { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; }

  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step-num { transform: translate(48px, -8px); }


  .review-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }

  /* Footer: 2-column, first (brand) full-width */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 76px; }

  .bike-promo-cta { flex-direction: column; align-items: stretch; }
  .bike-promo-cta .btn-primary { width: 100%; justify-content: center; }
  .bike-icon-wrap { width: 160px; height: 160px; }
  .bike-icon { font-size: 80px; }
  .price-current { font-size: 26px; }
}

@media (max-width: 480px) {
  /* Size cards: single column */
  .size-card { flex: 0 0 100%; }
  /* Trust strip: 2 per row */
  .trust-item { flex: 0 0 calc(50% - 4px); }
  .urgency-bar a { display: block; margin: 4px 0 0; }
  #installs-slider .slide { flex: 0 0 100%; }
}

/* ============================================================ ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }


/* ---------- Scrolling notice bar (unauthorised reseller disclaimer) ---------- */
.cl-notice-bar {
  position: relative; overflow: hidden;
  background: #7a0916; color: #fff;
  font-size: 13px; line-height: 1.4; padding: 8px 0;
  z-index: 90;
}
.cl-notice-track {
  display: inline-block; white-space: nowrap;
  padding-left: 100vw;
  animation: cl-marquee 95s linear infinite;
  will-change: transform;
}
.cl-notice-bar:hover .cl-notice-track { animation-play-state: paused; }
.cl-notice-track strong { color: #ffd7d7; }
.cl-notice-track a { color: #fff; text-decoration: underline; }
@keyframes cl-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .cl-notice-track { animation: none; padding-left: 16px; white-space: normal; }
}
