/* ==========================================================================
   Home page only
   ========================================================================== */

/* Kit picker: transparent vehicle renders on the studio backdrop
   (the way Storyteller shows its colour options) */
.kit-stage__media {
  aspect-ratio: 16 / 9;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kit-img {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.55));
}

.specs-card img { mix-blend-mode: normal; max-width: 560px; }


/* ==========================================================================
   Dark sections — no light sand on the home page
   ========================================================================== */
.st-products { background-color: #5a2d17; background-size: cover; }
.st-tech { background-color: #3b1d10; background-size: cover; }
.st-tech .st-feature p { color: rgba(255, 255, 255, 0.86); }

/* ==========================================================================
   5. Performance — Storyteller "product-mode-beast-performance"
   2-col grid: [heading + text | image] [image | text] [text | text];
   text blocks top-aligned, images contained, 80px column gap.
   ========================================================================== */
.perf { padding: 0; background-color: #211a15; }

.perf__content {
  width: 100%;
  max-width: 1736px;
  margin: 0 auto;
  padding: clamp(110px, 12vw, 200px) clamp(20px, 8.4vw, 228px) clamp(110px, 12vw, 200px);
}

.perf__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 5.5vw, 80px);
  row-gap: clamp(36px, 5vw, 73px);
}

.perf__heading.st-h2 { margin-bottom: clamp(26px, 3.4vw, 58px); color: #fff; }

.perf__block { display: flex; flex-direction: column; gap: 12px; }
.perf__block .ico { width: 35px; height: 35px; }

.perf__block h3 {
  margin: 0;
  font-family: var(--st-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--st-orange);
}

.perf__block p { margin: 0; font-size: 16px; line-height: 1.5; color: rgba(255, 255, 255, 0.86); }

.perf__img { width: 100%; max-height: 480px; overflow: hidden; }
.perf__img img { display: block; width: 100%; height: 100%; aspect-ratio: 14 / 10; object-fit: cover; }

@media (max-width: 750px) {
  .perf__cols { display: flex; flex-direction: column; row-gap: 45px; }
  .perf__block { gap: 6px; }
  .perf__block h3 { font-weight: 700; }
  .perf__img--last-mobile { order: 999; }
}

/* ==========================================================================
   9. Fitment — Storyteller "product-masonry" (6-col span grid, no gaps,
   orange "More photos" button, video block 1fr 1fr)
   ========================================================================== */
.st-container--wide { width: min(1464px, 100% - 2 * var(--gutter)); }

.st-fitment { background-color: #121110; }

.masonry-head { margin-bottom: clamp(40px, 5vw, 72px); }

.masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 260px);
  grid-auto-flow: dense;
  gap: 0;
}

.masonry__item { grid-column-end: span var(--c, 2); grid-row-end: span var(--r, 1); overflow: hidden; }
.masonry__item[hidden] { display: none; }
.masonry__item img { width: 100%; height: 100%; object-fit: cover; background: #2a211a; transition: transform 0.8s ease; }
.masonry__item:hover img { transform: scale(1.03); }

.masonry-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  margin-top: clamp(35px, 4vw, 60px);
}

.masonry-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  justify-content: center;
  padding: 20px 50px;
  border: 0;
  border-radius: 20px;
  background: var(--st-orange);
  color: #fff;
  font-family: var(--st-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.masonry-more:hover { background: var(--st-orange-dark); }

.masonry-more span {
  display: inline-block;
  padding: 4px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: translateY(-2px) rotate(45deg);
}

.video-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 4.5vw, 66px);
  width: 100%;
}

.video-block__content { display: flex; flex-direction: column; gap: 22px; }
.video-block__content > p { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.88); }

.st-features--2 { grid-template-columns: 1fr 1fr; gap: 28px 36px; margin-top: 10px; }
.st-features--2 .st-feature h3 { margin-top: 8px; font-size: 17px; }
.st-features--2 .st-feature p { font-size: 15px; line-height: 1.55; }

/* ---------- YouTube — click-to-load (no iframe until played) ---------- */
.yt {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yt img,
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }

.yt__play {
  position: absolute;
  right: clamp(22px, 2.8vw, 40px);
  bottom: clamp(22px, 2.8vw, 40px);
  width: clamp(56px, 5.5vw, 80px);
  height: clamp(56px, 5.5vw, 80px);
  border: 0;
  border-radius: 50%;
  background: var(--st-orange);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}

.yt__play:hover { transform: scale(1.1); opacity: 0.9; }
.yt.is-playing .yt__play,
.yt.is-playing img { display: none; }

@media (max-width: 991px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .masonry__item { grid-column-end: span 1; grid-row-end: span 1; }
  .masonry__item:first-child { grid-column-end: span 2; grid-row-end: span 2; }
  .video-block { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .masonry-more { min-width: 0; padding: 16px 28px; font-size: 14px; border-radius: 15px; }
  .st-features--2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Specs + dimensions on dark
   ========================================================================== */
.st-specs--dark { color: #fff; background-color: #7b3717; }
.st-specs--dark .specs-card__title,
.st-specs--dark .st-fine { color: #fff; }
.st-specs--dark .st-fine { opacity: 0.8; }
.st-specs--dark .specs-card__price span { color: rgba(255, 255, 255, 0.5); }
.st-specs--dark .st-accordion details { border-color: rgba(255, 255, 255, 0.25); }
.st-specs--dark .st-accordion details > :not(summary),
.st-specs--dark .spec-list dt { color: rgba(255, 255, 255, 0.92); }
.st-btn--ghost-light { color: #fff; box-shadow: inset 0 0 0 1.5px #fff; background: transparent; }
.st-btn--ghost-light:hover { background: #fff; color: #1b1b1b; }
.st-dims { background-color: #2b1f19; background-size: cover; }

/* ==========================================================================
   Watch + follow — Intercept YouTube + Instagram
   ========================================================================== */
.social { background-color: #0f0d0b; background-size: cover; }

.st-eyebrow--left { text-align: left; }

.social__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.social__head .st-h2 { margin: 0; }
.social__head--ig { margin-top: clamp(70px, 8vw, 120px); }

.social__videos {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
}

.yt-list { display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; list-style: none; }

.yt-list__item {
  display: grid;
  grid-template-columns: 46% 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font: 500 15px/1.4 var(--st-body);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.yt-list__item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 3px; }
.yt-list__item:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.yt-list__item.is-active { background: rgba(223, 88, 40, 0.18); color: #fff; box-shadow: inset 3px 0 0 var(--st-orange); }

.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }

.ig-grid a { position: relative; display: block; aspect-ratio: 1; overflow: hidden; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.ig-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(223, 88, 40, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='.6' fill='%23fff'/%3E%3C/svg%3E") center / 38px no-repeat;
  opacity: 0;
  transition: opacity 0.3s;
}

.ig-grid a:hover::after { opacity: 1; }
.ig-grid a:hover img { transform: scale(1.05); }

@media (max-width: 991px) {
  .social__videos { grid-template-columns: 1fr; }
  .yt-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .yt-list__item { grid-template-columns: 1fr; gap: 8px; font-size: 13px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .social__head .st-h2 { font-size: clamp(14px, 4.3vw, 24px); white-space: nowrap; }
  .social__head { flex-direction: column; align-items: flex-start; }
  .yt-list { grid-template-columns: 1fr; }
  .yt-list__item { grid-template-columns: 40% 1fr; }
}

/* ==========================================================================
   14. FAQ — Storyteller specs accordion (cream text, orange chevrons,
   22px DM Sans, divider under each header) on a dark background
   ========================================================================== */
.st-faq { background-color: #211a15; }

.faq {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.faq__intro { position: sticky; top: 120px; }
.faq__intro > p:not(.st-eyebrow) { margin: 0; font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); }

.faq__help {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid rgba(162, 128, 82, 0.6);
}

.faq__help strong { font-family: var(--st-head); font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; }
.faq__help a:not(.st-btn) { color: var(--st-orange); font-size: 15px; }
.faq__help .st-btn { margin-top: 10px; }

.faq__list .faq-cat {
  margin: 48px 0 12px;
  font-family: var(--st-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a28052;
}

.faq__list .faq-cat:first-child { margin-top: 0; }

.faq__list details { color: #f1ebd4; }

.faq__list summary {
  position: relative;
  padding: 14px 0 18px 50px;
  border-bottom: 2px solid rgba(162, 128, 82, 0.45);
  font-family: var(--st-body);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s, border-color 0.2s;
}

.faq__list summary::-webkit-details-marker { display: none; }

.faq__list summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 26px;
  height: 17px;
  background: url("../images/storyteller/bg/icon-arrow-bottom.svg") center / contain no-repeat;
  transition: transform 0.4s ease;
}

.faq__list summary:hover { color: #fff; }
.faq__list details[open] summary { border-color: var(--st-orange); }
.faq__list details[open] summary::before { transform: rotate(180deg); }

.faq__list details > p {
  margin: 0;
  padding: 18px 0 26px 50px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(241, 235, 212, 0.85);
}

.faq__list a { color: var(--st-orange); }

@media (max-width: 991px) {
  .faq { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
}

/* ==========================================================================
   VS table — mark + value on one line, Titan Shield column highlighted
   ========================================================================== */
.vs__table td { white-space: nowrap; }
.vs__table .vs__mark { display: inline-block; margin: 0 6px 0 0; vertical-align: middle; }
.vs__table .vs__val { vertical-align: middle; }
.vs__table .vs__val { display: inline; font-size: 13px; }
.vs__table tr > :nth-child(2) { background: rgba(223, 88, 40, 0.16); }
.vs__table tbody tr > td:nth-child(2) .vs__val { font-weight: 700; color: #fff; }
.vs__table tbody tr:hover { background: rgba(255, 255, 255, 0.05); }

/* ==========================================================================
   Kit picker — buy row + trust badges
   ========================================================================== */
.kit-buy { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 8px; }
.kit-buy__add svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.kit-buy__custom { font-weight: 700; font-size: 15px; color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.kit-buy__custom:hover { color: var(--st-orange); border-color: var(--st-orange); }

.kit-trust {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.kit-trust li { display: flex; align-items: center; gap: 8px; }
.kit-trust .ico { width: 22px; height: 22px; }

@media (max-width: 600px) {
  .kit-buy .st-btn { width: 100%; }
  .kit-trust { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Contrast fixes on dark sections
   ========================================================================== */
.st-tech .st-stat { color: #fff; }

.st-cta-card::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0) 78%);
}

.st-cta-card__kicker { color: #ff7a45; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6); }

/* ==========================================================================
   7. Technology v2 — Curv explainer, 70 mph abrasion chart, stat row
   ========================================================================== */
.tech2 { background-color: #0f0d0c; background-size: cover; }

.tech2__intro { max-width: 860px; }
.tech2__lead { margin: 0; font-size: clamp(18px, 1.4vw, 21px); line-height: 1.65; color: rgba(255, 255, 255, 0.92); }

.tech2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(20px, 2vw, 28px);
  margin-top: clamp(40px, 4vw, 64px);
}

.tech2__test,
.tech2__last {
  margin: 0;
  padding: clamp(24px, 2.4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 17, 15, 0.78);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.tech2 h3 { margin: 0 0 8px; font-family: var(--font-body); font-size: clamp(20px, 1.6vw, 24px); font-weight: 700; color: #fff; }
.tech2__test figcaption p { margin: 0 0 28px; font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.7); }

/* Bars: one series → one neutral hue, Curv emphasised in brand orange */
.abr { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }

.abr__row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 16px;
}

.abr__name { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.abr__track { position: relative; height: 14px; }

.abr__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--v) / 30 * 100%);
  border-radius: 0 4px 4px 0;
  background: #8a8580;
  transform-origin: left;
  transition: transform 1.1s var(--ease-out);
}

[data-reveal]:not(.is-in) .abr__bar { transform: scaleX(0); }
.abr__row.is-curv .abr__bar { background: #ff6226; }
.abr__row.is-curv .abr__name { color: #fff; }

.abr__val { font-size: 16px; font-weight: 700; color: #fff; }
.abr__val em { font-style: normal; font-size: 13px; font-weight: 400; color: rgba(255, 255, 255, 0.6); }

.abr__axis {
  display: flex;
  justify-content: space-between;
  margin: 14px 166px 0 186px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.vs-list { display: grid; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; }
.vs-list li { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.vs-list li:first-child { border-top: 0; padding-top: 4px; }
.vs-list__vs { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.vs-list strong { font-size: 18px; font-weight: 600; color: #fff; }

.tech2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(20px, 2vw, 28px) 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 17, 15, 0.78);
}

.tech2__stats li { display: flex; flex-direction: column; gap: 8px; padding: clamp(22px, 2.2vw, 34px); }
.tech2__stats li + li { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.tech2__stats strong { font-family: var(--font-head); font-size: clamp(26px, 2.6vw, 40px); font-weight: 900; line-height: 1; color: #fff; }
.tech2__stats span { font-size: 15px; color: rgba(255, 255, 255, 0.7); }

@media (max-width: 991px) {
  .tech2__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .abr__row { grid-template-columns: 1fr auto; gap: 6px 12px; }
  .abr__name { grid-column: 1; }
  .abr__val { grid-column: 2; grid-row: 1; text-align: right; }
  .abr__track { grid-column: 1 / -1; }
  .abr__axis { margin: 12px 0 0; }
  .tech2__stats { grid-template-columns: 1fr; }
  .tech2__stats li + li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}

@media (prefers-reduced-motion: reduce) { .abr__bar { transition: none; } [data-reveal]:not(.is-in) .abr__bar { transform: none; } }

/* ==========================================================================
   Reviews (Judge.me content)
   ========================================================================== */
.rv {
  background: linear-gradient(110deg, rgba(14, 12, 11, .9), rgba(14, 12, 11, .78)), url("../images/storyteller/bg/GXV-Hilt-Torsion-BG.avif") center / cover;
}

.rv__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: clamp(34px, 4vw, 56px); }
.rv__intro { max-width: 650px; }
.rv__head .st-h2 { margin: 0; }
.rv__subhead { max-width: 54ch; margin: 14px 0 0; color: rgba(255, 255, 255, .78); font-size: 16px; line-height: 1.55; }
.rv__score { display: flex; align-items: center; gap: 18px; padding: 8px 0 8px 24px; border: 0; border-left: 2px solid var(--st-orange); background: transparent; }
.rv__score strong { font-family: var(--font-head); font-size: clamp(48px, 5vw, 66px); font-weight: 900; line-height: .95; color: var(--st-orange); }
.rv__score > span { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.rv__score small { font-size: 13px; color: rgba(255, 255, 255, .88); }
.rv__score .rv__source { color: var(--st-cream); font-size: 11px; }

.rv-stars { display: inline-flex; gap: 3px; }
.rv-stars i { width: 18px; height: 18px; background: rgba(255, 255, 255, 0.28); -webkit-mask: url("../icons/vs/star_orange.svg") center / contain no-repeat; mask: url("../icons/vs/star_orange.svg") center / contain no-repeat; }
.rv-stars i.on { background: var(--st-orange); }

.rv__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(16px, 2vw, 26px); }

.rv-feature,
.rv-card {
  border: 0;
  background: transparent;
}

.rv-feature { display: flex; flex-direction: column; overflow: hidden; }
.rv-feature__photos { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; aspect-ratio: 16 / 9; }
.rv-feature__photos img { width: 100%; height: 100%; object-fit: cover; }
.rv-feature__photos img:first-child { grid-row: span 2; }
.rv-feature__photos img:nth-child(4) { grid-column: 2 / span 2; }
.rv-feature__body { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px 0 0; }
.rv-feature__tag { margin: 0; color: var(--st-orange); font: 700 11px/1.2 var(--font-label); letter-spacing: .12em; text-transform: uppercase; }
.rv-feature__text { margin: 0; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.62; color: rgba(255, 255, 255, .94); }

.rv__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; align-content: start; border-top: 1px solid rgba(230, 223, 210, .35); }
.rv-card { display: flex; flex-direction: column; gap: 14px; padding: 22px 0; border-bottom: 1px solid rgba(230, 223, 210, .35); }
.rv-card:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(230, 223, 210, .25); }
.rv-card__text { flex: 1; margin: 0; font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, 0.92); }

.rv-card__who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13px; }
.rv-card__who > span:nth-child(2) { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
.rv-card__who strong { color: #fff; }
.rv-card__who em { font-style: normal; font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.rv-card__who em::before { content: "✓ "; }
.rv-card__who time { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.rv-avatar { display: grid; place-items: center; flex: none; width: 32px; height: 32px; border-radius: 0; background: transparent; color: var(--st-orange); font: 800 17px/1 var(--font-head); }

.rv__cta { margin-top: clamp(28px, 3vw, 44px); text-align: center; }

.kit-rating { display: inline-flex; align-items: center; gap: 10px; margin: -8px 0 16px; font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.kit-rating:hover span { text-decoration: underline; }
.kit-rating .rv-stars i { width: 15px; height: 15px; }

@media (max-width: 991px) {
  .rv__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .rv__cards { grid-template-columns: 1fr; }
  .rv-card:nth-child(even) { padding-left: 0; border-left: 0; }
  .rv-feature__photos { aspect-ratio: 4 / 3; }
  .rv__score { width: 100%; }
}
.rv__grid { align-items: start; }
.rv__cards { align-content: start; }
.rv-card__text { flex: none; }
.rv-feature__photos { aspect-ratio: 16 / 8; }

/* ==========================================================================
   Quick shop — 3 kits directly under the hero
   ========================================================================== */
.qs { position: relative; z-index: 1; padding: clamp(44px, 5vw, 72px) 0 clamp(56px, 6vw, 90px); background: #0f0d0c; color: #fff; }
.qs__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 40px; margin-bottom: 28px; }
.qs__title { margin: 0; font-family: var(--font-head); font-size: clamp(24px, 2.4vw, 34px); font-weight: 900; text-transform: uppercase; }
.qs__head p { max-width: 520px; margin: 0; font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.8); }

.qs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.qs-card { position: relative; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, 0.14); background: #171412; transition: border-color 0.2s; }
.qs-card:hover,
.qs-card.is-popular { border-color: rgba(255, 255, 255, 0.45); }

.qs-card__tag { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 5px 10px; background: #fff; color: #0d1012; font-size: 12px; font-weight: 700; }

.qs-card__img { display: block; aspect-ratio: 16 / 10; background: radial-gradient(90% 90% at 50% 40%, #3a322b 0%, #1a1613 100%); }
.qs-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform 0.5s ease; }
.qs-card:hover .qs-card__img img { transform: scale(1.04); }

.qs-card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px; }
.qs-card__name { margin: 0; font-size: 20px; font-weight: 700; }
.qs-card__name small { display: block; margin-top: 4px; font-size: 14px; font-weight: 400; color: rgba(255, 255, 255, 0.7); }
.qs-card__fits { flex: 1; margin: 0; font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); }
.qs-card__price { display: flex; align-items: baseline; gap: 10px; margin: 4px 0 6px; }
.qs-card__price strong { font-size: 26px; color: #fff; }
.qs-card__price s { font-size: 16px; color: rgba(255, 255, 255, 0.55); }
.qs-card__btns { display: flex; align-items: center; gap: 18px; }
.qs-card__btns .st-btn { flex: 1; }
.qs-card__more { font-size: 15px; color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 991px) {
  .qs__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 6px; margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter); }
  .qs-card { flex: 0 0 min(82%, 340px); scroll-snap-align: start; }
}
.qs-card__img { position: relative; overflow: hidden; }
.qs-card__img img { position: absolute; inset: 0; }
