/* =============================================================
   HOMEPAGE
   ============================================================= */

/* ===== HERO ===== */
.tgvc-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 125px);
  min-height: 420px;
  max-height: 860px;
  overflow: hidden;
}
.tgvc-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.tgvc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,48,66,0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 60px 60px;
}
.tgvc-hero__text {
  max-width: 1320px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
}
.tgvc-hero__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #fdca21;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  margin: 0 0 140px;
  white-space: nowrap;
}
.tgvc-hero__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  margin: 0 0 12px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.tgvc-hero__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  margin: 0;
}
.tgvc-hero__tagline strong { font-weight: 600; }

/* Hero responsive */
@media (max-width: 768px) {
  .tgvc-hero {
    height: 56vw;
    min-height: 280px;
    max-height: 440px;
  }
  .tgvc-hero__overlay {
    padding: 24px 20px 32px;
    align-items: flex-end;
  }
  .tgvc-hero__heading {
    font-size: clamp(18px, 5vw, 26px);
    white-space: normal;
    margin: 0 0 16px;
    line-height: 1.25;
  }
  .tgvc-hero__body { display: none; }
  .tgvc-hero__tagline { display: none; }
}
@media (max-width: 480px) {
  .tgvc-hero {
    height: 64vw;
    min-height: 240px;
  }
  .tgvc-hero__heading {
    font-size: clamp(16px, 5.5vw, 22px);
  }
}

/* ===== MOBILE FIXED BOTTOM TABS ===== */
.mob-bottom-tabs {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.mob-bottom-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  gap: 3px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mob-bottom-tab svg { width: 22px; height: 22px; display: block; }
.mob-tab-quote { background: #0185ff; color: #fff; }
.mob-tab-quote svg { fill: #fff; }
.mob-tab-contact { background: var(--navy); color: #fff; }
@media (max-width: 920px) {
  .mob-bottom-tabs { display: flex; }
}


/* =============================================================
   HOMEPAGE: EXPLORE OUR RANGE — spotlight design
   ============================================================= */
.hp-range { background: var(--cream); padding: 64px 0 72px; }

.tgvc-showcase { max-width: 1260px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.tgvc-showcase *, .tgvc-showcase *::before, .tgvc-showcase *::after { box-sizing: border-box; }

/* Header */
.tgvc-showcase-header { text-align: center; margin-bottom: 36px; }
.tgvc-showcase-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 42px); font-weight: 700; color: var(--navy);
  line-height: 1.15; margin: 0 0 10px; letter-spacing: -0.01em;
}
.tgvc-showcase-header p {
  font-size: 17px; color: var(--mid-grey);
  line-height: 1.55; max-width: 600px; margin: 0 auto;
}

/* Tabs */
.tgvc-tabs2 {
  display: flex; justify-content: center; gap: 5px; margin-bottom: 36px;
  background: #e8eaed; border-radius: 14px; padding: 5px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.tgvc-tab2 {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600; padding: 10px 28px;
  border: none; background: transparent; color: var(--mid-grey);
  cursor: pointer; border-radius: 10px;
  transition: all 0.25s ease; letter-spacing: 0.01em;
}
.tgvc-tab2.active { background: var(--navy); color: #fff; box-shadow: 0 2px 12px rgba(20,48,66,0.22); }
.tgvc-tab2:not(.active):hover { background: rgba(20,48,66,0.06); color: var(--navy); }

/* Panels */
.tgvc-panel { display: none; }
.tgvc-panel.active { display: block; animation: tgvcFadeUp 0.35s ease; }
@keyframes tgvcFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Spotlight layout */
.tgvc-spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; min-height: 440px; margin-bottom: 28px;
}

/* Image */
.tgvc-spot-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; background: #e5e9ed;
}
.tgvc-spot-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.35s ease;
}

/* Info panel */
.tgvc-spot-info { display: flex; flex-direction: column; justify-content: center; padding: 8px 0; }
.tgvc-spot-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue); margin-bottom: 8px;
  font-family: var(--font-body);
}
.tgvc-spot-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.4vw, 36px); font-weight: 700;
  color: var(--navy); line-height: 1.15; margin: 0 0 4px;
}
.tgvc-spot-tagline {
  font-size: 14px; font-weight: 400; color: var(--mid-grey);
  margin: 0 0 14px;
}
.tgvc-spot-desc {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.65; color: #3a5568; margin: 0 0 18px;
}
.tgvc-spot-desc strong { color: var(--navy); font-weight: 600; }

/* Spec pills */
.tgvc-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 22px;
}
.tgvc-spec {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; background: #f0f2f5;
  border-radius: 8px; font-size: 12.5px; color: var(--navy);
  font-weight: 500; border: 1px solid rgba(20,48,66,0.08);
  font-family: var(--font-body);
}
.tgvc-spec svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.45; }

/* CTA buttons */
.tgvc-spot-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.tgvc-cta {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 12px 28px; border-radius: 8px; text-decoration: none;
  text-align: center; transition: all 0.2s ease;
  border: 2px solid transparent; display: inline-block;
}
.tgvc-cta-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.tgvc-cta-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); box-shadow: 0 4px 16px rgba(43,152,255,0.28); }
.tgvc-cta-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.tgvc-cta-ghost:hover { background: var(--navy); color: #fff; }

/* Thumbnail strip */
.tgvc-thumbs {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.tgvc-thumb {
  cursor: pointer; border-radius: 12px; overflow: hidden; width: 130px;
  transition: all 0.25s ease; border: 3px solid transparent;
  opacity: 0.5; position: relative;
}
.tgvc-thumb.active { border-color: var(--blue); opacity: 1; box-shadow: 0 4px 16px rgba(43,152,255,0.2); }
.tgvc-thumb:not(.active):hover { opacity: 0.8; }
.tgvc-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.tgvc-thumb-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,48,66,0.9), transparent);
  padding: 20px 6px 7px; font-size: 11px; font-weight: 700;
  color: #fff; text-align: center; letter-spacing: 0.02em;
  font-family: var(--font-body);
}

/* Side options intro */
.tgvc-side-intro {
  text-align: center; max-width: 780px; margin: 0 auto 28px;
  padding: 14px 20px; background: #eef1f4; border-radius: 10px;
  border-left: 4px solid var(--blue);
}
.tgvc-side-intro p { font-size: 15px; line-height: 1.6; color: #3a5568; margin: 0; }
.tgvc-side-intro strong { color: var(--navy); font-weight: 600; }

/* Bottom action bar */
.tgvc-bottom-bar { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .tgvc-spotlight { grid-template-columns: 1fr; gap: 20px; min-height: auto; }
  .tgvc-spot-title { font-size: 28px; }
  .tgvc-thumb { width: 110px; }
}
@media (max-width: 600px) {
  .tgvc-showcase-header h2 { font-size: 26px; }
  .tgvc-tab2 { font-size: 13px; padding: 8px 16px; }
  .tgvc-spot-title { font-size: 24px; }
  .tgvc-specs { grid-template-columns: repeat(2, 1fr); }
  .tgvc-spec { font-size: 12px; padding: 6px 10px; }
  .tgvc-spot-ctas { flex-direction: column; }
  .tgvc-cta { width: 100%; text-align: center; }
  .tgvc-bottom-bar { flex-direction: column; align-items: center; }
  .tgvc-bottom-bar .tgvc-cta { width: 280px; }
  .tgvc-thumb { width: 85px; }
}

/* Why Choose Us, How We Work styles now in global.css */


/* =============================================================
   HOMEPAGE: MAKE AN INFORMED DECISION — BLOG CAROUSEL
   ============================================================= */
.hp-blog { background: var(--navy); padding: 64px 0 56px; }
.hp-blog-inner { max-width: 1320px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

.hp-blog-header { text-align: center; margin-bottom: 40px; }
.hp-blog-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 10px; }
.hp-blog-heading { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 42px); font-weight: 700; color: #fff; margin: 0 0 12px; line-height: 1.2; }
.hp-blog-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto; }

/* Carousel wrapper */
.hp-blog-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hp-blog-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.hp-blog-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
/* Desktop: 3 cards at a time */
.hp-blog-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hp-blog-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

/* Arrow buttons */
.hp-blog-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.hp-blog-arrow:hover:not(:disabled) { background: rgba(255,255,255,0.15); border-color: var(--gold); color: var(--gold); }
.hp-blog-arrow:disabled { opacity: 0.25; cursor: default; }

/* Dots */
.hp-blog-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.hp-blog-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hp-blog-dot.active { background: var(--gold); transform: scale(1.3); }

/* Card internals */
.hp-blog-card-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.hp-blog-cat { position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; }
.hp-blog-cat-financial { background: rgba(253,202,33,0.9); color: var(--navy); }
.hp-blog-cat-planning { background: rgba(43,152,255,0.9); color: #fff; }
.hp-blog-cat-buying { background: rgba(32,178,80,0.9); color: #fff; }
.hp-blog-cat-lifestyle { background: rgba(200,80,180,0.9); color: #fff; }
.hp-blog-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.hp-blog-card-date { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.hp-blog-card-title { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 8px; flex: 1; }
.hp-blog-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; margin-bottom: 14px; }
.hp-blog-card-arrow { font-size: 13px; font-weight: 600; color: var(--gold); }

.hp-blog-footer { text-align: center; padding-top: 8px; }
.hp-blog-viewall { display: inline-block; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--gold); border: 1.5px solid rgba(253,202,33,0.4); padding: 12px 32px; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.hp-blog-viewall:hover { background: var(--gold); color: var(--navy); }

/* Mobile carousel: 1 card + partial peek */
@media (max-width: 768px) {
  .hp-blog-heading { font-size: 26px; }
  .hp-blog-track { gap: 14px; }
  .hp-blog-card { flex: 0 0 82%; }
  .hp-blog-arrow { display: none; }
}


/* Ready to Get Started CTA styles now in global.css */


/* =============================================================
   MOBILE HOMEPAGE — .mob-hp-wrap (hidden on desktop)
   ============================================================= */

/* Hidden on desktop by default */
.mob-hp-wrap { display: none; }

@media (max-width: 1024px) {
  /* Hide desktop hero + range grid on tablets & phones */
  .tgvc-hero   { display: none !important; }
  .hp-range    { display: none !important; }

  /* Show mobile homepage */
  .mob-hp-wrap { display: block; }

  /* ── Hero ── */
  .mob-hp-hero { width: 100%; overflow: hidden; position: relative; }
  .mob-hp-hero img {
    width: 100%; height: auto; min-height: 360px;
    object-fit: cover; display: block;
  }
  .mob-hp-hero-overlay {
    position: absolute; top: 0; left: 0; right: 0;
    padding: 6px 18px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);
    text-align: center;
  }
  .mob-hp-hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1.25; margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  /* ── Navy body text ── */
  .mob-hp-body {
    background: var(--navy);
    padding: 18px 20px 20px;
    text-align: center;
  }
  .mob-hp-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px; color: rgba(255,255,255,0.9); line-height: 1.65; margin: 0 0 14px;
  }
  .mob-hp-tagline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 17px; font-weight: 400; color: #fdca21 !important;
    font-style: italic; margin: 0 !important;
  }

  /* ── Range intro ── */
  .mob-hp-intro {
    padding: 22px 20px 14px; text-align: center; background: #fff;
  }
  .mob-hp-intro h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px; font-weight: 700; color: var(--navy); margin: 0 0 6px; letter-spacing: -0.2px;
  }
  .mob-hp-intro p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; color: var(--mid-grey); line-height: 1.5; margin: 0;
  }

  /* ── Category bar ── */
  .mob-hp-catbar {
    display: flex; gap: 0; background: #fff;
    border-top: 1px solid #e9ecef; border-bottom: 1px solid #e9ecef;
    position: sticky; top: 78px; z-index: 100;
    transition: box-shadow 0.3s ease;
  }
  .mob-hp-catbar.sticky { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  .mob-cat-spacer { display: none; }
  .mob-cat-spacer.active { display: block; height: 48px; }
  .mob-cat-btn {
    flex: 1; padding: 13px 0; text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600; color: var(--mid-grey);
    background: transparent; border: none; cursor: pointer;
    position: relative; transition: color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-cat-btn.active { color: var(--navy); }
  .mob-cat-btn.active::after {
    content: ''; position: absolute; bottom: 0;
    left: 20%; right: 20%;
    height: 3px; background: var(--blue);
    border-radius: 3px 3px 0 0;
  }

  /* ── Range sections ── */
  .mob-range-section { display: none; }
  .mob-range-section.active { display: block; }
  .mob-models-container {
    padding: 14px 14px 80px; /* 80px bottom for sticky tab bar */
    display: flex; flex-direction: column; gap: 20px;
    background: #f5f6f7;
  }
  .mob-side-note {
    text-align: center; padding: 0 8px 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: #495057; line-height: 1.6; margin: 0;
  }
  .mob-side-note strong { color: var(--navy); }

  /* ── Model card ── */
  .mob-model-card {
    background: #fff; border: 1px solid #dee2e6;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(20,48,66,0.06), 0 4px 16px rgba(20,48,66,0.12);
  }
  .mob-card-banner {
    background: var(--navy); padding: 10px 16px;
  }
  .mob-card-banner-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px; font-weight: 700; color: #fdca21; letter-spacing: 0.4px;
  }

  /* ── Card hero image ── */
  .mob-model-hero {
    position: relative; width: 100%; aspect-ratio: 16/11;
    overflow: hidden; display: block; text-decoration: none;
  }
  .mob-model-hero img { width: 100%; height: 100%; object-fit: cover; }
  .mob-model-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--navy); color: #fff;
    padding: 5px 12px; border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  }

  /* ── Card body ── */
  .mob-card-body { padding: 16px 16px 8px; }
  .mob-card-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600; color: var(--blue);
    margin: 0 0 9px; letter-spacing: 0.2px;
  }
  .mob-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: #495057; line-height: 1.6; margin: 0 0 12px;
  }

  /* ── Key stats ── */
  .mob-card-stats {
    display: flex; border-top: 1px solid #e9ecef;
    margin: 0 -16px;
  }
  .mob-card-stat {
    flex: 1; text-align: center; padding: 11px 4px;
    border-right: 1px solid #e9ecef;
  }
  .mob-card-stat:last-child { border-right: none; }
  .mob-stat-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.2;
    display: flex; align-items: center; justify-content: center;
    min-height: 22px;
  }
  .mob-stat-val img { height: 20px; width: auto; display: block; }
  .mob-stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; font-weight: 600; color: var(--mid-grey);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 2px; display: block;
  }

  /* ── Specs toggle ── */
  .mob-specs-toggle {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; padding: 12px; margin: 0;
    background: #f8f9fa; border: none;
    border-top: 1px solid #e9ecef; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 600; color: var(--navy);
    -webkit-tap-highlight-color: transparent;
  }
  .mob-specs-toggle:active { background: #e9ecef; }
  .mob-toggle-icon { font-size: 11px; transition: transform 0.3s ease; color: var(--blue); }
  .mob-specs-toggle.open .mob-toggle-icon { transform: rotate(180deg); }

  /* ── Specs panel ── */
  .mob-specs-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
    border-top: 1px solid #e9ecef;
  }
  .mob-specs-panel.open { max-height: 2200px; }
  .mob-specs-inner { padding: 18px 16px; }

  /* ── Spec items ── */
  .mob-spec-item {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 9px 0; border-bottom: 1px solid #e9ecef;
    font-family: 'DM Sans', sans-serif;
  }
  .mob-spec-item:last-child { border-bottom: none; }
  .mob-spec-label { font-size: 13px; font-weight: 600; color: var(--mid-grey); min-width: 100px; flex-shrink: 0; }
  .mob-spec-value { font-size: 14px; color: var(--navy); text-align: right; line-height: 1.5; flex: 1; min-width: 0; }

  /* ── Colour grid ── */
  .mob-color-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 5px; }
  .mob-color-item { display: flex; align-items: center; gap: 7px; }
  .mob-swatch { width: 20px; height: 20px; border-radius: 3px; border: 2px solid #e9ecef; flex-shrink: 0; }
  .mob-color-name { font-family: 'DM Sans', sans-serif; color: var(--navy); font-size: 12px; font-weight: 500; display: block; }
  .mob-ral-code { font-family: 'DM Sans', sans-serif; color: var(--mid-grey); font-size: 11px; display: block; }
  .mob-bespoke { grid-column: 1/-1; text-align: center; color: #fdca21; font-weight: 600; font-size: 12px; margin-top: 3px; font-family: 'DM Sans', sans-serif; }

  /* ── Collapsible (side options / extras) ── */
  .mob-collapsible {
    background: transparent; border: 1px solid var(--light-grey);
    border-radius: 4px; overflow: hidden; margin-top: 6px;
    text-align: left; /* override text-align:right from parent .mob-spec-value */
    width: 100%;
  }
  .mob-collapsible-hdr {
    background: transparent; color: var(--navy);
    padding: 10px 12px; font-weight: 600; font-size: 14px;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: 'DM Sans', sans-serif;
    user-select: none; -webkit-tap-highlight-color: transparent;
  }
  .mob-collapsible-icon { font-size: 12px; transition: transform 0.3s ease; color: var(--blue); }
  .mob-collapsible-body {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 12px;
  }
  .mob-collapsible-body.open { max-height: 500px; padding: 12px; border-top: 1px solid var(--light-grey); }
  .mob-option-list { list-style: none; padding: 0; margin: 0; }
  .mob-option-list li {
    font-family: 'DM Sans', sans-serif; color: var(--dark-text);
    font-size: 14px; padding: 4px 0 4px 14px; position: relative;
  }
  .mob-option-list li::before { content: "–"; position: absolute; left: 0; color: var(--blue); }
  .mob-combo-note { font-family: 'DM Sans', sans-serif; color: var(--mid-grey); font-size: 12px; font-style: italic; margin-top: 6px; }

  /* ── Compare button ── */
  .mob-compare-btn {
    display: block; text-align: center; padding: 11px;
    margin-top: 13px; background: rgba(1,133,255,0.1);
    color: var(--blue); text-decoration: none; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px;
  }

  /* ── Gallery ── */
  .mob-gallery { border-top: 1px solid #e9ecef; padding: 13px 0 13px 16px; }
  .mob-gallery-scroll {
    display: flex; gap: 10px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 16px; scrollbar-width: none;
  }
  .mob-gallery-scroll::-webkit-scrollbar { display: none; }
  .mob-gallery-card {
    flex: 0 0 auto; width: 75vw; max-width: 300px; height: 210px;
    border-radius: 10px; overflow: hidden; scroll-snap-align: start;
  }
  .mob-gallery-card img { width: 100%; height: 100%; object-fit: cover; }
  .mob-swipe-hint {
    font-family: 'DM Sans', sans-serif;
    text-align: center; font-size: 11px; color: #adb5bd;
    padding: 4px 0 2px; font-weight: 400;
  }

  /* ── Card CTAs ── */
  .mob-card-ctas { display: flex; gap: 8px; padding: 4px 16px 16px; }
  .mob-card-cta {
    flex: 1; padding: 12px 8px; border-radius: 8px;
    text-align: center; text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    transition: transform 0.15s ease;
  }
  .mob-card-cta:active { transform: scale(0.97); }
  .mob-cta-pri { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(1,133,255,0.3); }
  .mob-cta-sec { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
}

/* Tablet refinements — constrain mobile content at wider widths */
@media (min-width: 600px) and (max-width: 1024px) {
  .mob-models-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 20px 80px;
  }
  .mob-side-note { grid-column: 1 / -1; }
  .mob-hp-hero img { min-height: 300px; }
  .mob-hp-body { padding: 24px 40px; }
  .mob-hp-intro { padding: 28px 40px 18px; }
  .mob-gallery-card { width: 60vw; max-width: 340px; }
}
