/*!
 * MobileRanks Theme v8.1.0 — Phone Page CSS (STANDALONE, new HTML)
 * Scoped under .v8-app. Written for v8 components; no legacy selectors.
 */

.v8-app {
  --v8-bg:        #f4f6fb;
  --v8-surface:   #ffffff;
  --v8-surface-2: #f8fafc;
  --v8-border:    #e5e9f2;
  --v8-border-2:  #eef1f7;
  --v8-text:      #0f172a;
  --v8-text-2:    #475569;
  --v8-muted:     #64748b;
  --v8-brand:     #ff6a00;
  --v8-brand-2:   #ff8a3d;
  --v8-info:      #2563eb;
  --v8-success:   #16a34a;
  --v8-danger:    #dc2626;
  --v8-radius:    18px;
  --v8-radius-sm: 12px;
  --v8-shadow:    0 1px 2px rgba(15,23,42,.04), 0 8px 24px -12px rgba(15,23,42,.08);
  --v8-shadow-lg: 0 4px 12px rgba(15,23,42,.06), 0 24px 48px -20px rgba(15,23,42,.14);
  --v8-font:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --v8-display:   "Poppins", var(--v8-font);
  background: var(--v8-bg);
  color: var(--v8-text);
  font-family: var(--v8-font);
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: 60px;
}
.v8-app *, .v8-app *::before, .v8-app *::after { box-sizing: border-box; }
.v8-app img { max-width: 100%; height: auto; }

.v8-wrap { max-width: 1240px; margin: 0 auto; padding: 20px 16px 40px; }

/* Breadcrumb */
.v8-crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 12px; color: var(--v8-muted);
  margin: 0 0 16px; padding: 10px 16px;
  background: var(--v8-surface); border: 1px solid var(--v8-border);
  border-radius: 999px; box-shadow: var(--v8-shadow);
}
.v8-crumb a { color: var(--v8-text-2); text-decoration: none; font-weight: 500; }
.v8-crumb a:hover { color: var(--v8-brand); }
.v8-crumb__sep { color: var(--v8-border); }
.v8-crumb__current { color: var(--v8-text); font-weight: 600; }

/* Layout grid */
.v8-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 24px; align-items: start; }
@media (max-width: 1024px) { .v8-grid { grid-template-columns: 1fr; } }
.v8-main { min-width: 0; display: flex; flex-direction: column; gap: 20px; }

/* Buttons */
.v8-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-family: var(--v8-font); font-weight: 600; font-size: 14px;
  line-height: 1.2; text-decoration: none;
  border: 1px solid var(--v8-border); background: var(--v8-surface); color: var(--v8-text);
  cursor: pointer; transition: all .18s ease;
}
.v8-btn:hover { border-color: var(--v8-brand); color: var(--v8-brand); text-decoration: none; }
.v8-btn--primary {
  background: linear-gradient(135deg, var(--v8-brand), var(--v8-brand-2));
  color: #fff; border-color: transparent;
  box-shadow: 0 6px 16px -6px rgba(255,106,0,.55);
}
.v8-btn--primary:hover { color: #fff; filter: brightness(1.05); border-color: transparent; }
.v8-btn--ghost { background: transparent; }
.v8-btn--light { background: #fff; color: var(--v8-text); }
.v8-btn--light:hover { color: var(--v8-brand); }
.v8-btn--dark  { background: var(--v8-text); color: #fff; border-color: transparent; }
.v8-btn--dark:hover { color: #fff; filter: brightness(1.1); border-color: transparent; }
.v8-btn--sm { padding: 6px 12px; font-size: 12px; }
.v8-btn--block { display: flex; width: 100%; }

/* Chips */
.v8-chip {
  display: inline-flex; align-items: center;
  padding: 3px 10px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 999px; background: var(--v8-surface-2); color: var(--v8-text-2);
  border: 1px solid var(--v8-border-2);
}
.v8-chip--brand { background: var(--v8-brand); color: #fff; border-color: transparent; }
.v8-chip--muted { background: transparent; color: var(--v8-muted); }

/* Icons */
.v8-i { display: inline-block; vertical-align: middle; }

/* -------- HERO -------- */
.v8-hero {
  background:
    radial-gradient(1200px 400px at -10% -30%, rgba(255,106,0,.07), transparent 60%),
    radial-gradient(900px 400px at 110% -20%, rgba(37,99,235,.06), transparent 60%),
    var(--v8-surface);
  border: 1px solid var(--v8-border);
  border-radius: var(--v8-radius);
  box-shadow: var(--v8-shadow);
  padding: 28px;
}
.v8-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) { .v8-hero__grid { grid-template-columns: 1fr; } .v8-hero { padding: 18px; } }
.v8-hero__gallery { margin: 0; }
.v8-hero__stage {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fafbfd 0%, #eef2fa 100%);
  border: 1px solid var(--v8-border-2);
  border-radius: 16px;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.v8-hero__stage:focus-visible { outline: 2px solid var(--v8-brand); outline-offset: 2px; }
.v8-hero__stage img { max-height: 88%; max-width: 88%; width: auto; height: auto; object-fit: contain; transition: opacity .18s ease; }
.v8-hero__stage--empty { color: var(--v8-muted); }
.v8-hero__thumbs {
  display: flex; gap: 10px; margin: 12px 0 0; padding: 0;
  list-style: none; overflow-x: auto; scrollbar-width: none;
}
.v8-hero__thumbs::-webkit-scrollbar { display: none; }
.v8-hero__thumb {
  width: 68px; height: 68px; flex: 0 0 auto;
  border-radius: 12px; border: 2px solid var(--v8-border-2);
  background: var(--v8-surface); padding: 6px; cursor: pointer;
  transition: all .18s ease;
}
.v8-hero__thumb img { width: 100%; height: 100%; object-fit: contain; }
.v8-hero__thumb.is-active,
.v8-hero__thumb:hover { border-color: var(--v8-brand); transform: translateY(-1px); }

.v8-hero__meta { display: flex; flex-direction: column; gap: 14px; }
.v8-hero__crumbs { display: flex; flex-wrap: wrap; gap: 6px; }
.v8-hero__title {
  font-family: var(--v8-display); font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15;
  letter-spacing: -0.02em; margin: 0; color: var(--v8-text);
}
.v8-hero__tagline { margin: 0; color: var(--v8-text-2); font-size: 15px; }

.v8-hero__rating {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "num bar" "num lbl";
  gap: 4px 14px; align-items: center;
  padding: 14px 16px;
  background: var(--v8-surface-2); border-radius: 14px;
  border: 1px solid var(--v8-border-2);
}
.v8-hero__ratingnum {
  grid-area: num;
  font-family: var(--v8-display); font-weight: 800;
  font-size: 40px; line-height: 1; color: var(--v8-brand);
}
.v8-hero__ratingnum small { font-size: 14px; color: var(--v8-muted); font-weight: 600; margin-left: 2px; }
.v8-hero__ratingbar {
  grid-area: bar;
  height: 8px; background: var(--v8-border-2);
  border-radius: 999px; overflow: hidden;
}
.v8-hero__ratingbar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--v8-brand), var(--v8-brand-2));
  border-radius: 999px;
}
.v8-hero__ratinglabel { grid-area: lbl; font-size: 12px; color: var(--v8-muted); text-transform: uppercase; letter-spacing: .08em; }

.v8-hero__pricecard {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 14px;
  color: #fff;
}
.v8-hero__price { display: flex; flex-direction: column; gap: 2px; }
.v8-hero__price-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.v8-hero__price-value { font-family: var(--v8-display); font-weight: 800; font-size: 24px; color: #fff; }
.v8-hero__price-value .mr-money { color: #fff; }
.v8-hero__ctas { display: flex; flex-wrap: wrap; gap: 8px; }
.v8-hero__ctas .v8-btn--ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.v8-hero__ctas .v8-btn--ghost:hover { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }

/* Quick specs strip */
.v8-quick {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px;
}
.v8-quick__item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: var(--v8-surface-2);
  border: 1px solid var(--v8-border-2); border-radius: 12px;
}
.v8-quick__icon {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 10px; display: grid; place-items: center;
  background: #fff; color: var(--v8-brand);
  border: 1px solid var(--v8-border-2);
}
.v8-quick__item strong { display: block; font-size: 14px; color: var(--v8-text); font-weight: 700; }
.v8-quick__item span { display: block; font-size: 11px; color: var(--v8-muted); text-transform: uppercase; letter-spacing: .06em; }

/* -------- STICKY NAV -------- */
.v8-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border: 1px solid var(--v8-border); border-radius: 999px;
  box-shadow: var(--v8-shadow);
  padding: 6px;
  margin: 6px 0 0;
}
.v8-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
}
.v8-nav__list::-webkit-scrollbar { display: none; }
.v8-nav a {
  display: block; padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--v8-text-2); text-decoration: none; white-space: nowrap;
  transition: all .2s ease;
}
.v8-nav a:hover { background: var(--v8-surface-2); color: var(--v8-text); }
.v8-nav a.is-active {
  background: linear-gradient(135deg, var(--v8-brand), var(--v8-brand-2));
  color: #fff; box-shadow: 0 4px 10px -4px rgba(255,106,0,.5);
}

/* -------- GENERIC SECTION / CARD -------- */
.v8-section, .v8-card {
  background: var(--v8-surface);
  border: 1px solid var(--v8-border);
  border-radius: var(--v8-radius);
  box-shadow: var(--v8-shadow);
  padding: 24px;
  color: var(--v8-text);
  overflow: hidden;
}
.v8-section__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--v8-border-2);
}
.v8-section__icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,106,0,.1), rgba(255,138,61,.15));
  color: var(--v8-brand);
}
.v8-section__eyebrow {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--v8-brand); font-weight: 700;
}
.v8-section__title {
  font-family: var(--v8-display); font-weight: 700; font-size: 20px;
  color: var(--v8-text); margin: 0; line-height: 1.2;
}
.v8-section__body > * + * { margin-top: 14px; }

/* Prose */
.v8-prose { color: var(--v8-text-2); font-size: 15px; line-height: 1.7; }
.v8-prose p { margin: 0 0 12px; }
.v8-prose strong { color: var(--v8-text); }
.v8-prose a { color: var(--v8-info); }

/* Definition list (spec rows) */
.v8-dl { margin: 0; padding: 0; border: 1px solid var(--v8-border-2); border-radius: 12px; overflow: hidden; }
.v8-dl__row {
  display: grid; grid-template-columns: 40% 1fr;
  border-top: 1px solid var(--v8-border-2);
}
.v8-dl__row:first-child { border-top: 0; }
.v8-dl dt { padding: 12px 14px; background: var(--v8-surface-2); color: var(--v8-text-2); font-weight: 600; font-size: 13px; margin: 0; }
.v8-dl dd { padding: 12px 14px; color: var(--v8-text); font-size: 14px; margin: 0; word-break: break-word; }

/* -------- SPEC GRID -------- */
.v8-specgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.v8-specblock { min-width: 0; }
.v8-specblock__title {
  font-family: var(--v8-display); font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--v8-brand); margin: 0 0 10px;
}

/* -------- AI CARD -------- */
.v8-ai {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border: 0; color: #fff;
  box-shadow: 0 12px 32px -12px rgba(37,99,235,.5);
}
.v8-ai__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.v8-ai__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #fff; }
.v8-ai__eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.75); font-weight: 700; }
.v8-ai__title { font-family: var(--v8-display); font-weight: 700; font-size: 22px; color: #fff; margin: 2px 0 0; }
.v8-ai__lead { color: rgba(255,255,255,.94); font-size: 15px; line-height: 1.65; margin: 0 0 14px; }
.v8-ai__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.v8-ai__col { background: rgba(255,255,255,.08); border-radius: 12px; padding: 14px 16px; }
.v8-ai__col h3 { display: flex; align-items: center; gap: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 6px; color: #fff; }
.v8-ai__col p { margin: 0; color: rgba(255,255,255,.9); font-size: 14px; }
.v8-ai__col--good { background: rgba(34,197,94,.18); }
.v8-ai__col--bad  { background: rgba(239,68,68,.18); }
.v8-ai__advice { margin-top: 14px; padding: 12px 14px; background: rgba(255,255,255,.12); border-radius: 10px; font-size: 14px; }

/* -------- VERDICT CARD -------- */
.v8-verdict {
  background: linear-gradient(135deg, #065f46 0%, #16a34a 100%);
  border: 0; color: #fff;
  box-shadow: 0 12px 32px -12px rgba(22,163,74,.45);
}
.v8-verdict__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.v8-verdict__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.14); }
.v8-verdict__eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); font-weight: 700; }
.v8-verdict__title { font-family: var(--v8-display); font-weight: 700; font-size: 22px; color: #fff; margin: 2px 0 0; }
.v8-verdict__score {
  margin-left: auto;
  font-family: var(--v8-display); font-weight: 800; font-size: 30px; color: #fff;
  background: rgba(255,255,255,.15); padding: 6px 14px; border-radius: 999px;
}
.v8-verdict__score small { font-size: 14px; color: rgba(255,255,255,.7); }
.v8-verdict__body { color: rgba(255,255,255,.94); line-height: 1.7; }
.v8-verdict__body p { margin: 0 0 12px; }

/* -------- CAMERA -------- */
.v8-lensgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.v8-lens {
  padding: 18px; text-align: center;
  background: linear-gradient(180deg, var(--v8-surface-2), #fff);
  border: 1px solid var(--v8-border-2);
  border-radius: 14px;
}
.v8-lens__glass {
  width: 60px; height: 60px; margin: 0 auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #333, #000);
  display: grid; place-items: center; color: rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.1), 0 4px 12px rgba(0,0,0,.2);
}
.v8-lens h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--v8-brand); font-weight: 800; margin: 0 0 4px; }
.v8-lens p { font-size: 13px; color: var(--v8-text); margin: 0; line-height: 1.5; }

.v8-panel { padding: 14px 16px; background: var(--v8-surface-2); border: 1px solid var(--v8-border-2); border-radius: 12px; }
.v8-panel h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--v8-brand); margin: 0 0 8px; font-weight: 800; }
.v8-panel p { margin: 0; color: var(--v8-text-2); }
.v8-panel--muted { background: transparent; }

/* -------- BATTERY -------- */
.v8-battery { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center; }
@media (max-width: 640px) { .v8-battery { grid-template-columns: 1fr; } }
.v8-battery__big {
  padding: 24px; text-align: center;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0; border-radius: 14px;
}
.v8-battery__mah { font-family: var(--v8-display); font-weight: 800; font-size: 40px; color: #065f46; line-height: 1; }
.v8-battery__mah small { font-size: 14px; margin-left: 4px; color: #047857; font-weight: 700; }
.v8-battery__big span { display: block; margin-top: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #065f46; font-weight: 700; }

/* -------- BENCHMARKS -------- */
.v8-bench { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.v8-bench__cell {
  padding: 16px; text-align: center;
  background: var(--v8-surface-2); border: 1px solid var(--v8-border-2); border-radius: 12px;
}
.v8-bench__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--v8-muted); font-weight: 700; margin-bottom: 6px; }
.v8-bench__cell strong { display: block; font-family: var(--v8-display); font-weight: 800; font-size: 22px; color: var(--v8-text); }
.v8-bench__cell small { display: block; margin-top: 4px; font-size: 11px; color: var(--v8-muted); }

/* -------- RATING SCORECARD -------- */
.v8-rating { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center; }
@media (max-width: 640px) { .v8-rating { grid-template-columns: 1fr; } }
.v8-rating__hero {
  position: relative; padding: 22px; text-align: center;
  background: linear-gradient(180deg, var(--v8-surface-2), #fff);
  border: 1px solid var(--v8-border-2); border-radius: 14px;
}
.v8-rating__num { font-family: var(--v8-display); font-weight: 800; font-size: 48px; color: var(--v8-brand); line-height: 1; }
.v8-rating__num small { font-size: 16px; color: var(--v8-muted); font-weight: 600; margin-left: 2px; }
.v8-rating__ring {
  width: 100px; height: 100px; margin: 12px auto 0; border-radius: 50%;
  background: conic-gradient(var(--v8-brand) calc(var(--v8-p, 0) * 1%), var(--v8-border-2) 0);
  display: grid; place-items: center;
}
.v8-rating__ring span {
  width: 78px; height: 78px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; font-size: 11px; color: var(--v8-muted); text-transform: uppercase; letter-spacing: .06em;
}
.v8-rating__ring span::after { content: "Overall"; }
.v8-rating__list { list-style: none; margin: 0; padding: 0; }
.v8-rating__list li {
  display: grid; grid-template-columns: 130px 1fr 40px; gap: 12px; align-items: center;
  padding: 8px 0; border-bottom: 1px dashed var(--v8-border-2);
}
.v8-rating__list li:last-child { border-bottom: 0; }
.v8-rating__label { font-weight: 600; font-size: 13px; color: var(--v8-text); }
.v8-rating__bar { height: 8px; background: var(--v8-border-2); border-radius: 999px; overflow: hidden; }
.v8-rating__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--v8-brand), var(--v8-brand-2)); border-radius: 999px; }
.v8-rating__val { text-align: right; font-weight: 700; font-family: var(--v8-display); color: var(--v8-brand); }

/* -------- AWARD -------- */
.v8-award {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, #78350f 0%, #b45309 100%);
  color: #fff; border: 0;
}
.v8-award__medal {
  width: 64px; height: 64px; flex: 0 0 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.4), inset 0 0 0 3px rgba(255,255,255,.2);
}
.v8-award__eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); font-weight: 700; }
.v8-award__title { font-family: var(--v8-display); font-weight: 800; font-size: 22px; margin: 2px 0 4px; color: #fff; }
.v8-award p { margin: 0; color: rgba(255,255,255,.9); font-size: 14px; }

/* -------- PRICES -------- */
.v8-pricegrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.v8-pricegrid__cell {
  padding: 16px; text-align: center;
  background: var(--v8-surface-2); border: 1px solid var(--v8-border-2); border-radius: 12px;
}
.v8-pricegrid__cell span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--v8-muted); font-weight: 700; }
.v8-pricegrid__cell strong { display: block; font-family: var(--v8-display); font-weight: 800; font-size: 26px; color: var(--v8-text); margin: 6px 0 4px; }
.v8-pricegrid__cell small { display: block; font-size: 12px; color: var(--v8-muted); }

.v8-deals { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.v8-deals__row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--v8-border-2); border-radius: 12px;
  background: var(--v8-surface);
  transition: border-color .18s ease, transform .18s ease;
}
.v8-deals__row:hover { border-color: var(--v8-brand); transform: translateX(2px); }
.v8-deals__store { font-weight: 700; color: var(--v8-text); }
.v8-deals__price { font-weight: 700; color: var(--v8-brand); }
@media (max-width: 560px) {
  .v8-deals__row { grid-template-columns: 1fr; text-align: center; }
}

.v8-note { font-size: 13px; color: var(--v8-muted); margin: 12px 0 0; }
.v8-note a { color: var(--v8-info); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.v8-note a:hover { text-decoration: underline; }

/* -------- MEDIA -------- */
.v8-mediagrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.v8-mediagrid__cell {
  aspect-ratio: 1 / 1; background: #fff; border: 1px solid #E5E7EB; border-radius: 10px;
  overflow: hidden; margin: 0; position: relative;
}
.v8-mediagrid__btn {
  display: block; width: 100%; height: 100%; padding: 0; margin: 0;
  border: 0; background: transparent; cursor: zoom-in;
}
.v8-mediagrid__btn:focus-visible { outline: 2px solid var(--v8-brand); outline-offset: 2px; }
.v8-mediagrid__cell img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.v8-mediagrid__cell:hover img { transform: scale(1.04); }
.v8-mediagrid__btn.is-active { box-shadow: inset 0 0 0 2px var(--v8-brand); border-radius: 10px; }
.v8-videoframe { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 14px; margin-top: 14px; }
.v8-videoframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* -------- COLORS -------- */
.v8-colors { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.v8-colors li { display: flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border: 1px solid var(--v8-border-2); border-radius: 999px; background: var(--v8-surface); font-size: 13px; }
.v8-colors__dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--v8-border); }

/* -------- CHECKLIST -------- */
.v8-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; }
.v8-checklist li { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--v8-surface-2); border: 1px solid var(--v8-border-2); border-radius: 10px; font-size: 14px; color: var(--v8-text); }
.v8-checklist li .v8-i { color: var(--v8-success); flex: 0 0 14px; }

/* Tags */
.v8-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-top: 6px; }
.v8-tags__label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--v8-muted); font-weight: 700; }
.v8-tag { padding: 4px 12px; background: rgba(255,106,0,.08); color: var(--v8-brand); border: 1px solid rgba(255,106,0,.2); border-radius: 999px; font-size: 12px; font-weight: 600; }

/* -------- FAQ -------- */
.v8-section__sub { display: block; color: var(--v8-text-2); font-size: 14px; margin: 4px 0 0; }
.v8-faq { display: flex; flex-direction: column; gap: 8px; }
.v8-faq__item {
  border: 1px solid var(--v8-border-2); border-radius: 12px; background: var(--v8-surface);
  overflow: hidden; transition: border-color .18s ease;
}
.v8-faq__item + .v8-faq__item { margin-top: 0; }
.v8-faq__item[open] { border-color: var(--v8-brand); }
.v8-faq__q {
  cursor: pointer; padding: 14px 16px;
  font-weight: 700; color: var(--v8-text); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.v8-faq__q::-webkit-details-marker { display: none; }
.v8-faq__q::marker { content: ""; }
.v8-faq__qtext { flex: 1; }
.v8-faq__chevron {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--v8-brand); transition: transform .2s ease;
}
.v8-faq__item[open] .v8-faq__chevron { transform: rotate(180deg); }
.v8-faq__answer {
  padding: 0 16px 14px;
  border-top: 1px solid var(--v8-border-2);
  color: var(--v8-text-2);
}
.v8-faq__answer p { margin: 12px 0 0; }
.v8-faq__answer p:first-child { margin-top: 12px; }

/* -------- REFERENCES -------- */
.v8-refs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.v8-refs__item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--v8-border-2); border-radius: 12px;
  background: var(--v8-surface); transition: border-color .18s ease;
}
.v8-refs__item:hover { border-color: var(--v8-brand); }
.v8-refs__logo {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe); color: var(--v8-info);
  border: 1px solid var(--v8-border-2);
}
.v8-refs__body strong { display: block; font-weight: 600; color: var(--v8-text); font-size: 14px; line-height: 1.4; }
.v8-refs__body small { display: block; font-size: 12px; color: var(--v8-muted); margin-top: 2px; }

/* -------- RELATED GRID -------- */
.v8-relgrid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.v8-relgrid a { display: block; text-decoration: none; }
.v8-relgrid figure {
  margin: 0; padding: 14px; text-align: center;
  background: var(--v8-surface); border: 1px solid var(--v8-border-2);
  border-radius: 12px; transition: all .2s ease;
}
.v8-relgrid figure:hover { border-color: var(--v8-brand); transform: translateY(-2px); box-shadow: var(--v8-shadow); }
.v8-relgrid img {
  width: 100%; height: auto; aspect-ratio: 1 / 1;
  object-fit: contain; object-position: center;
  background: #fff; border-radius: 8px;
  padding: 6%; box-sizing: border-box;
  margin: 0 auto 8px; display: block;
}
.v8-relgrid figcaption { font-size: 13px; font-weight: 600; color: var(--v8-text); line-height: 1.3; }

/* -------- COMPARE CTA -------- */
.v8-compare {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff; border: 0;
}
.v8-compare__eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--v8-brand); font-weight: 700; }
.v8-compare__title { font-family: var(--v8-display); font-weight: 700; font-size: 20px; color: #fff; margin: 4px 0; }
.v8-compare p { color: rgba(255,255,255,.8); margin: 0; }

/* -------- NEWSLETTER -------- */
.v8-newsletter {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  background: linear-gradient(135deg, var(--v8-brand) 0%, var(--v8-brand-2) 100%);
  color: #fff; border: 0;
}
@media (max-width: 640px) { .v8-newsletter { grid-template-columns: 1fr; text-align: center; } }
.v8-newsletter__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.18); }
.v8-newsletter__copy h2 { font-family: var(--v8-display); font-weight: 700; font-size: 22px; margin: 0; color: #fff; }
.v8-newsletter__copy p { margin: 4px 0 0; color: rgba(255,255,255,.9); }
.v8-newsletter__form { display: flex; gap: 8px; }
.v8-newsletter__form input {
  min-width: 220px; padding: 12px 16px; border: 0; border-radius: 10px;
  background: rgba(255,255,255,.95); color: var(--v8-text); font-size: 14px;
}
.v8-newsletter__form input:focus { outline: 2px solid #fff; outline-offset: 2px; }

/* -------- SIDEBAR / WIDGETS -------- */
.v8-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; align-self: start; }
@media (max-width: 1024px) { .v8-aside { position: static; } }
.v8-widget {
  background: var(--v8-surface); border: 1px solid var(--v8-border);
  border-radius: var(--v8-radius); box-shadow: var(--v8-shadow);
  padding: 18px;
}
.v8-widget h3 {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--v8-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--v8-text);
  margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--v8-border-2);
}
.v8-widget h3 .v8-i { color: var(--v8-brand); }
.v8-widget ul { list-style: none; margin: 0; padding: 0; }
.v8-widget ul li { padding: 8px 0; border-bottom: 1px dashed var(--v8-border-2); font-size: 14px; }
.v8-widget ul li:last-child { border-bottom: 0; }
.v8-widget a { color: var(--v8-text); text-decoration: none; }
.v8-widget a:hover { color: var(--v8-brand); }
.v8-widget__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.v8-widget__pills li { padding: 0; border: 0; }
.v8-widget__pills a { display: inline-block; padding: 6px 12px; background: var(--v8-surface-2); border: 1px solid var(--v8-border-2); border-radius: 999px; font-size: 12px; font-weight: 600; }
.v8-widget__pills a:hover { background: var(--v8-brand); color: #fff; border-color: transparent; }
.v8-widget__list li a { display: flex; align-items: center; gap: 10px; }
.v8-widget__list img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; object-position: center; flex: 0 0 44px; background: #fff; border: 1px solid var(--v8-border-2); padding: 3px; box-sizing: border-box; }
.v8-widget--price .v8-widget__price { font-family: var(--v8-display); font-weight: 800; font-size: 28px; color: var(--v8-brand); text-align: center; margin: 6px 0 12px; }
.v8-widget--newsletter p { color: var(--v8-text-2); font-size: 13px; margin: 0 0 10px; }
.v8-widget--newsletter input { width: 100%; padding: 10px 12px; border: 1px solid var(--v8-border); border-radius: 10px; margin-bottom: 8px; font-size: 14px; }

/* -------- MOBILE STICKY BAR -------- */
.v8-mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none;
  padding: 10px 14px; gap: 10px; align-items: center; justify-content: space-between;
  background: rgba(15,23,42,.96); color: #fff; backdrop-filter: blur(8px);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,.35);
}
.v8-mobar__title { font-weight: 700; font-size: 13px; }
.v8-mobar__price { font-size: 12px; color: rgba(255,255,255,.75); }
@media (max-width: 768px) { .v8-mobar { display: flex; } .v8-app { padding-bottom: 90px; } }

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Responsive fine polish */
@media (max-width: 640px) {
  .v8-section, .v8-card { padding: 18px; }
  .v8-hero__pricecard { flex-direction: column; align-items: stretch; text-align: center; }
  .v8-hero__ctas { justify-content: center; }
  .v8-verdict__score { margin-left: 0; margin-top: 10px; }
  .v8-verdict__head { flex-wrap: wrap; }
}

@media print {
  .v8-nav, .v8-mobar, .v8-aside, .v8-hero__ctas, .v8-hero__thumbs { display: none !important; }
  .v8-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   v8.1.0 — Reference-match refinement (blue-forward premium palette).
   Orange is reserved for CTA / buy / price button only.
   Overrides live at the end so token/selector adjustments beat originals.
   ===================================================================== */
.v8-app {
  --v8-brand:     #0A3A8A;   /* primary blue (was orange) */
  --v8-brand-2:   #1976D2;   /* secondary blue */
  --v8-info:      #1976D2;
  --v8-text:      #111827;
  --v8-text-2:    #374151;
  --v8-muted:     #6B7280;
  --v8-border:    #E5E7EB;
  --v8-border-2:  #EEF2F7;
  --v8-bg:        #F8FAFC;
  --v8-surface-2: #F9FAFB;
  --v8-cta:       #FF6A00;   /* orange reserved for CTA */
  --v8-cta-2:     #FF8A3D;
  --v8-radius:    12px;
  --v8-radius-sm: 8px;
  --v8-shadow:    0 1px 2px rgba(17,24,39,.04), 0 8px 20px -12px rgba(17,24,39,.08);
  --v8-shadow-lg: 0 4px 12px rgba(17,24,39,.05), 0 20px 40px -20px rgba(17,24,39,.12);
  font-size: 16px;
}

/* Section headings — unified blue with thin orange accent underline */
.v8-section__title,
.v8-widget h3,
.v8-hero__title,
.v8-ai__title,
.v8-verdict__title,
.v8-compare__title,
.v8-award__title { color: var(--v8-text); }

.v8-section__eyebrow,
.v8-specblock__title,
.v8-lens h4,
.v8-panel h4 {
  color: var(--v8-brand);
}

.v8-section__head {
  position: relative;
  border-bottom: 1px solid var(--v8-border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.v8-section__head::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 48px; height: 2px;
  background: var(--v8-cta);
  border-radius: 2px;
}
.v8-section__icon {
  background: #EFF4FB;
  color: var(--v8-brand);
  border: 1px solid #DDE6F3;
}

/* Card system — unified white/border/radius/shadow */
.v8-section, .v8-card, .v8-widget {
  border-radius: 12px;
  border-color: var(--v8-border);
  box-shadow: var(--v8-shadow);
}
.v8-section:hover, .v8-card:hover, .v8-widget:hover {
  box-shadow: 0 10px 15px rgba(17,24,39,.08);
}

/* Buttons — primary stays orange CTA */
.v8-btn:hover { border-color: var(--v8-brand); color: var(--v8-brand); }
.v8-btn--primary {
  background: linear-gradient(135deg, var(--v8-cta), var(--v8-cta-2));
  box-shadow: 0 6px 16px -6px rgba(255,106,0,.55);
  border-color: transparent; color:#fff;
}
.v8-btn--primary:hover { color:#fff; }
.v8-btn--outline-blue {
  background:#fff; color: var(--v8-brand); border-color: var(--v8-brand);
}

/* Chips / tags — blue neutral, not orange */
.v8-chip--brand { background: var(--v8-brand); color:#fff; }
.v8-tag {
  background: #EFF4FB;
  color: var(--v8-brand);
  border-color: #DDE6F3;
}

/* Breadcrumb — clean rectangular, blue accents */
.v8-crumb {
  border-radius: 8px;
  background: transparent;
  border: 0; box-shadow: none;
  padding: 0 4px 4px;
  font-size: 13px;
}
.v8-crumb a { color: var(--v8-brand); }
.v8-crumb a:hover { color: var(--v8-brand-2); text-decoration: underline; }
.v8-crumb__current { color: var(--v8-text); }
.v8-crumb__sep { color: var(--v8-muted); }

/* Hero refinements */
.v8-hero { padding: 28px; background: var(--v8-surface); }
.v8-hero__stage {
  background: linear-gradient(180deg,#FAFBFD 0%,#F1F5FB 100%);
  border-color: var(--v8-border);
}
.v8-hero__thumb.is-active,
.v8-hero__thumb:hover { border-color: var(--v8-brand); }
.v8-hero__ratingnum { color: var(--v8-brand); }
.v8-hero__ratingbar span {
  background: linear-gradient(90deg, var(--v8-brand), var(--v8-brand-2));
}

/* Hero pricecard — white/blue premium card (was dark) */
.v8-hero__pricecard {
  background: #fff;
  border: 1px solid var(--v8-border);
  color: var(--v8-text);
  box-shadow: none;
}
.v8-hero__price-label { color: var(--v8-muted); }
.v8-hero__price-value { color: var(--v8-brand); }
.v8-hero__price-value .mr-money { color: var(--v8-brand); }
.v8-hero__ctas .v8-btn--ghost {
  color: var(--v8-brand);
  border-color: var(--v8-border);
  background: #fff;
}
.v8-hero__ctas .v8-btn--ghost:hover {
  color: var(--v8-brand-2); background: var(--v8-surface-2); border-color: var(--v8-brand);
}

/* Quick specs — larger blue icons */
.v8-quick__icon {
  color: var(--v8-brand);
  background: #EFF4FB;
  border-color: #DDE6F3;
  width: 42px; height: 42px; flex-basis: 42px;
}

/* Sticky nav — blue active, no orange */
.v8-nav {
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}
.v8-nav a { border-radius: 8px; }
.v8-nav a.is-active {
  background: var(--v8-brand);
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(10,58,138,.4);
}

/* AI Summary — soft blue premium card (not saturated) */
.v8-ai {
  background: linear-gradient(135deg,#F0F6FF 0%,#E6EFFB 100%);
  color: var(--v8-text);
  border: 1px solid #D6E4F5;
  box-shadow: var(--v8-shadow);
}
.v8-ai__icon { background: #fff; color: var(--v8-brand); }
.v8-ai__eyebrow { color: var(--v8-brand); }
.v8-ai__title { color: var(--v8-text); }
.v8-ai__lead { color: var(--v8-text-2); }
.v8-ai__col { background: rgba(255,255,255,.65); color: var(--v8-text); }
.v8-ai__col h3 { color: var(--v8-brand); }
.v8-ai__col p { color: var(--v8-text-2); }
.v8-ai__col--good { background: rgba(22,163,74,.10); }
.v8-ai__col--bad  { background: rgba(220,38,38,.08); }
.v8-ai__advice { background: rgba(255,255,255,.75); color: var(--v8-text); }

/* Verdict — soft green */
.v8-verdict {
  background: linear-gradient(135deg,#F0FDF4 0%,#DCFCE7 100%);
  color: var(--v8-text);
  border: 1px solid #BBF7D0;
  box-shadow: var(--v8-shadow);
}
.v8-verdict__icon { background: #fff; color: #16A34A; }
.v8-verdict__eyebrow { color: #16A34A; }
.v8-verdict__title { color: var(--v8-text); }
.v8-verdict__body { color: var(--v8-text-2); }
.v8-verdict__score {
  background: #fff; color: #16A34A; border: 1px solid #BBF7D0;
}
.v8-verdict__score small { color: #16A34A; opacity:.7; }

/* Spec tables — alternating rows, cleaner borders */
.v8-dl { border-color: var(--v8-border); }
.v8-dl__row { border-top-color: var(--v8-border); }
.v8-dl dt { background: #F9FAFB; color: var(--v8-text-2); font-weight: 600; }
.v8-dl dd { color: var(--v8-text); }
.v8-dl__row:nth-child(even) dd { background: #FCFCFD; }

/* Camera / lens */
.v8-lens h4 { color: var(--v8-brand); }
.v8-panel h4 { color: var(--v8-brand); }

/* Rating — keep single overall in blue, tiny orange bars */
.v8-rating__num { color: var(--v8-brand); }
.v8-rating__ring {
  background: conic-gradient(var(--v8-brand) calc(var(--v8-p, 0) * 1%), var(--v8-border-2) 0);
}
.v8-rating__bar span {
  background: linear-gradient(90deg, var(--v8-brand), var(--v8-brand-2));
}
.v8-rating__val { color: var(--v8-brand); }

/* Benchmarks numbers */
.v8-bench__cell strong { color: var(--v8-text); }
.v8-bench__label { color: var(--v8-muted); }

/* Prices grid / deals — orange only on price value */
.v8-pricegrid__cell strong { color: var(--v8-brand); }
.v8-deals__row:hover { border-color: var(--v8-brand); }
.v8-deals__price { color: var(--v8-cta); }

/* References — professional bibliography */
.v8-refs__item:hover { border-color: var(--v8-brand); background: #FBFCFE; }
.v8-refs__logo { color: var(--v8-brand); background: #EFF4FB; border-color:#DDE6F3; }

/* Related / compare */
.v8-relgrid figure:hover { border-color: var(--v8-brand); }
.v8-compare {
  background: linear-gradient(135deg,#0A3A8A 0%,#1976D2 100%);
  color:#fff;
}
.v8-compare__eyebrow { color: rgba(255,255,255,.85); }
.v8-compare__title { color:#fff; }

/* Newsletter — orange full-width band (matches reference) */
.v8-newsletter {
  background: linear-gradient(135deg, var(--v8-cta) 0%, var(--v8-cta-2) 100%);
}

/* FAQ */
.v8-faq__item[open] { border-color: var(--v8-brand); }
.v8-faq__item summary::after { color: var(--v8-brand); }

/* Sidebar widgets — unified, blue accents, orange only on Check-Best-Price */
.v8-widget { padding: 20px; }
.v8-widget h3 {
  color: var(--v8-text);
  border-bottom-color: var(--v8-border);
  padding-bottom: 12px;
  margin-bottom: 14px;
  position: relative;
}
.v8-widget h3::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 32px; height: 2px; background: var(--v8-cta); border-radius: 2px;
}
.v8-widget h3 .v8-i { color: var(--v8-brand); }
.v8-widget a { color: var(--v8-brand); }
.v8-widget a:hover { color: var(--v8-brand-2); }
.v8-widget ul li { color: var(--v8-text); }
.v8-widget__pills a { background:#fff; color: var(--v8-brand); border-color: var(--v8-border); }
.v8-widget__pills a:hover { background: var(--v8-brand); color:#fff; border-color: transparent; }
.v8-widget--price .v8-widget__price {
  color: var(--v8-brand); text-align:left;
  font-size: 34px;
}
.v8-widget--price .v8-btn--primary { width: 100%; }

/* Award — subtler premium blue-gold */
.v8-award {
  background: linear-gradient(135deg,#0A3A8A 0%,#1976D2 100%);
}

/* Award medal keeps gold */

/* Compare bar */
.v8-mobar { background: rgba(17,24,39,.96); }

/* Body spacing */
.v8-main { gap: 24px; }
.v8-aside { gap: 20px; }

/* Typography scale (reference: H1 ~38 / H2 26 / H3 22 / body 16) */
.v8-hero__title { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; }
.v8-section__title { font-size: 22px; font-weight: 700; }
.v8-widget h3 { font-size: 13px; }
.v8-prose { font-size: 16px; line-height: 1.7; }

/* ============================================================
 * v8.1.1 — QA hotfix additions
 * ============================================================ */

/* Fixed square hero image container — no cropping, always centered */
.v8-app .v8-hero__stage,
.v8-app .v8-hero__image,
.v8-app .v8-hero__media {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.v8-app .v8-hero__stage img,
.v8-app .v8-hero__image img,
.v8-app #v8-hero-img {
  width: 88%;
  height: 88%;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
  box-sizing: border-box;
}

/* Gallery thumbnails — consistent square tiles */
.v8-app .v8-hero__thumbs,
.v8-app .v8-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
}
.v8-app .v8-hero__thumb,
.v8-app .v8-gallery__item {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.v8-app .v8-hero__thumb:hover,
.v8-app .v8-gallery__item:hover { border-color: var(--v8-brand, #0A3A8A); transform: translateY(-1px); }
.v8-app .v8-hero__thumb.is-active { border-color: var(--v8-brand, #0A3A8A); box-shadow: 0 0 0 2px rgba(10,58,138,.15); }
.v8-app .v8-hero__thumb img,
.v8-app .v8-gallery__item img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============================================================
 * v8.4.3 — Premium Media Gallery: hero controls + lightbox
 * ============================================================ */
.v8-hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #0A3A8A;
  border: 1px solid rgba(10,58,138,.15);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  font-size: 24px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; z-index: 3;
  transition: background .15s ease, transform .15s ease;
}
.v8-hero__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.v8-hero__nav:focus-visible { outline: 2px solid var(--v8-brand); outline-offset: 2px; }
.v8-hero__nav--prev { left: 10px; }
.v8-hero__nav--next { right: 10px; }
.v8-hero__nav[hidden] { display: none; }

.v8-hero__counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(15,23,42,.78); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  z-index: 2; pointer-events: none;
}
.v8-hero__zoom {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(15,23,42,.78); color: #fff;
  border: 0; cursor: pointer; z-index: 3;
  display: grid; place-items: center; font-size: 16px;
}
.v8-hero__zoom:hover { background: rgba(15,23,42,.92); }

@media (max-width: 640px) {
  .v8-hero__nav { width: 34px; height: 34px; font-size: 20px; }
}

/* Lightbox */
body.v8-lb-lock { overflow: hidden; }
.v8-lb {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(6,10,20,.94);
  display: none;
  flex-direction: column;
  align-items: stretch; justify-content: stretch;
}
.v8-lb.is-open { display: flex; }
.v8-lb__stage {
  flex: 1; min-height: 0; position: relative;
  display: grid; place-items: center;
  overflow: hidden; touch-action: none;
}
.v8-lb__stage img {
  max-width: 92vw; max-height: 78vh;
  width: auto; height: auto; object-fit: contain;
  transform-origin: center center;
  transition: transform .18s ease;
  cursor: zoom-in; user-select: none; -webkit-user-drag: none;
}
.v8-lb__close, .v8-lb__nav {
  position: absolute; background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; z-index: 10;
  transition: background .15s ease, transform .15s ease;
}
.v8-lb__close:hover, .v8-lb__nav:hover { background: rgba(255,255,255,.28); }
.v8-lb__close:focus-visible, .v8-lb__nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.v8-lb__close {
  top: 16px; right: 16px; width: 44px; height: 44px; font-size: 26px; line-height: 1;
}
.v8-lb__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 32px; }
.v8-lb__nav--prev { left: 16px; }
.v8-lb__nav--next { right: 16px; }
.v8-lb__bar {
  padding: 8px 20px; color: #fff; text-align: center;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.v8-lb__counter { font-size: 13px; font-weight: 600; opacity: .85; letter-spacing: .04em; }
.v8-lb__caption { font-size: 14px; opacity: .95; min-height: 1.2em; }
.v8-lb__thumbs {
  display: flex; gap: 8px; padding: 10px 16px 18px; margin: 0;
  list-style: none; overflow-x: auto; justify-content: center;
  scrollbar-width: thin;
}
.v8-lb__thumbs::-webkit-scrollbar { height: 6px; }
.v8-lb__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 3px; }
.v8-lb__thumb {
  width: 62px; height: 62px; flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,.25); border-radius: 10px;
  background: rgba(255,255,255,.06); padding: 4px; cursor: pointer;
  transition: all .15s ease;
}
.v8-lb__thumb:hover { border-color: rgba(255,255,255,.6); }
.v8-lb__thumb.is-active { border-color: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.3); }
.v8-lb__thumb img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 640px) {
  .v8-lb__close { width: 40px; height: 40px; font-size: 22px; top: 10px; right: 10px; }
  .v8-lb__nav { width: 42px; height: 42px; font-size: 26px; }
  .v8-lb__nav--prev { left: 8px; } .v8-lb__nav--next { right: 8px; }
  .v8-lb__stage img { max-width: 96vw; max-height: 68vh; }
  .v8-lb__thumb { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .v8-hero__nav, .v8-lb__stage img, .v8-lb__close, .v8-lb__nav { transition: none; }
}

/* v9.2.0 — Official Regional MSRP */
.v8-msrp{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 12px}
.v8-msrp__cell{flex:1 1 220px;padding:14px 16px;border:1px solid var(--v8-border,#e5e7eb);border-radius:12px;background:var(--v8-surface,#fff);display:flex;flex-direction:column;gap:4px}
.v8-msrp__label{font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:var(--v8-muted,#6b7280)}
.v8-msrp__value{font-size:22px;font-weight:700;color:var(--v8-fg,#0f172a)}
.v8-msrp__value .mr-money{display:inline-block}
.v8-msrp__avail{color:var(--v8-muted,#6b7280);display:flex;gap:10px;flex-wrap:wrap;margin-top:2px}
.mr-msrp-note{display:block;font-size:12px;color:#8a5a00;background:#fffaf0;border:1px solid #f0c674;border-radius:8px;padding:6px 10px;margin-top:6px}
.mr-msrp-note[hidden]{display:none}
.mr-msrp-note strong{font-weight:700}

/* ============================================================
 * v10.4.8 — Hero Gallery FILMSTRIP (single horizontal strip)
 * Overrides the legacy CSS-grid thumb layout.
 * ============================================================ */
.v8-app .v8-hero__strip,
.v8-hero__strip {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.v8-app .v8-hero__strip-nav,
.v8-hero__strip-nav {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--v8-border-2, #E5E7EB);
  background: #fff; color: var(--v8-brand, #0A3A8A);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: background .15s ease, transform .15s ease, opacity .15s ease;
}
.v8-app .v8-hero__strip-nav:hover,
.v8-hero__strip-nav:hover { background: var(--v8-brand, #0A3A8A); color: #fff; }
.v8-app .v8-hero__strip-nav[disabled],
.v8-hero__strip-nav[disabled] { opacity: .35; cursor: default; }

/* Override the legacy grid rule for thumbs when in filmstrip mode */
.v8-app .v8-hero__thumbs--filmstrip,
.v8-hero__thumbs--filmstrip {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  grid-template-columns: none !important;
}
.v8-hero__thumbs--filmstrip::-webkit-scrollbar { display: none; }
.v8-hero__thumbs--filmstrip > li {
  flex: 0 0 calc((100% - 30px) / 4); /* 4 thumbs, 3 gaps of 10px */
  scroll-snap-align: start;
  min-width: 0;
  list-style: none;
}
.v8-app .v8-hero__thumbs--filmstrip .v8-hero__thumb,
.v8-hero__thumbs--filmstrip .v8-hero__thumb {
  width: 100%; height: auto;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 2px solid var(--v8-border-2, #E5E7EB);
  border-radius: 12px;
  padding: 6px;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.v8-app .v8-hero__thumbs--filmstrip .v8-hero__thumb img,
.v8-hero__thumbs--filmstrip .v8-hero__thumb img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.v8-app .v8-hero__thumbs--filmstrip .v8-hero__thumb:hover,
.v8-hero__thumbs--filmstrip .v8-hero__thumb:hover {
  border-color: var(--v8-brand, #0A3A8A);
  transform: translateY(-1px);
}
.v8-app .v8-hero__thumbs--filmstrip .v8-hero__thumb.is-active,
.v8-hero__thumbs--filmstrip .v8-hero__thumb.is-active {
  border-color: var(--v8-brand, #0A3A8A);
  box-shadow: 0 0 0 2px rgba(10,58,138,.18);
}
@media (max-width: 1024px) {
  .v8-hero__thumbs--filmstrip > li { flex-basis: calc((100% - 20px) / 3); }
}
@media (max-width: 640px) {
  .v8-hero__thumbs--filmstrip > li { flex-basis: calc((100% - 10px) / 2); }
  .v8-app .v8-hero__strip,
  .v8-hero__strip { grid-template-columns: 28px minmax(0,1fr) 28px; gap: 6px; }
  .v8-app .v8-hero__strip-nav,
  .v8-hero__strip-nav { width: 28px; height: 28px; font-size: 18px; }
}
@media print {
  .v8-hero__strip { display: none !important; }
}

