/* ================================================================
   RETINA VISOR — Main Stylesheet
   Design: dark luxury · dark-professional · spacious
   Approach: desktop-first responsive
   All colours/fonts from CSS custom properties (set inline by base.py)
   ================================================================ */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-text);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--color-primary); }
ul, ol { list-style: none; }
button, input, select, textarea {
    font-family: inherit; font-size: inherit; color: inherit;
    border: none; outline: none; background: none;
}
button { cursor: pointer; }
address { font-style: normal; }
details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; content: ''; }

/* ── Layout Wrap ───────────────────────────────────────────────── */
.rv-wrap,
.lx-wrap {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Main Area ─────────────────────────────────────────────────── */
.rv-main { min-height: 55vh; }
.sun-wrap { min-height: 55vh; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.rv-topbar {
    background: var(--color-secondary);
    color: rgba(255,255,255,.92);
    overflow: hidden;
}
.rv-topbar-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .55rem 0;
    gap: 2rem;
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.rv-topbar-msg { margin: 0; opacity: .9; }

/* ================================================================
   HEADER
   ================================================================ */
.rv-header {
    background: var(--color-header-footer);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.rv-header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 0;
    min-height: 62px;
}
.rv-header-inner--lean { justify-content: center; }

/* ── Hamburger ─────────────────────────────────────────────────── */
.rv-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 102;
}
.rv-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.rv-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rv-menu-toggle.active span:nth-child(2) { opacity: 0; }
.rv-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Brand / Logo ──────────────────────────────────────────────── */
.rv-brand-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    flex-shrink: 0;
}
.rv-brand-link:hover { color: #fff; opacity: .88; }
.rv-brand-img { height: auto; max-height: 46px; width: auto; }
.rv-brand-wordmark {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
    white-space: nowrap;
}

/* ── Header Actions ────────────────────────────────────────────── */
.rv-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* ── Locale Picker ─────────────────────────────────────────────── */
.rv-locale-picker { position: relative; }
.rv-locale-trigger {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    padding: .4rem .65rem;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    transition: background .25s ease;
}
.rv-locale-trigger:hover { background: rgba(255,255,255,.16); }
.rv-locale-flag { width: 20px; height: 15px; border-radius: 3px; object-fit: cover; }
.rv-locale-label { display: none; }
.rv-locale-chevron { transition: transform .25s ease; flex-shrink: 0; }
.rv-locale-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    min-width: 190px;
    overflow: hidden;
    z-index: 115;
}
.rv-locale-menu.open,
.rv-locale-menu.show { display: block; }
.rv-locale-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    color: #222;
    font-size: .85rem;
    transition: background .2s ease;
}
.rv-locale-item:hover { background: #f0f0f0; color: #222; }

/* ── Country Geo Banner ────────────────────────────────────────── */
.country-banner {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: calc(100% - 2rem);
    max-width: 460px;
}
.country-banner.show { display: block; }
.rv-geo-notice {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,.22);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}
.rv-geo-flag { width: 34px; height: 25px; border-radius: 4px; object-fit: cover; }
.rv-geo-msg {
    flex: 1;
    font-size: .9rem;
    color: #222;
    min-width: 140px;
    margin: 0;
}
.rv-geo-buttons { display: flex; gap: .6rem; width: 100%; }
.rv-geo-btn {
    flex: 1;
    padding: .6rem 1rem;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    text-align: center;
    transition: opacity .25s ease;
    color: #222;
}
.rv-geo-btn:hover { opacity: .82; }
.rv-geo-confirm { background: var(--color-primary); color: #fff; }
.rv-geo-dismiss { background: #e8e8e8; color: #222; }

/* ── Cart Icon ─────────────────────────────────────────────────── */
.rv-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 4px;
    transition: color .25s ease;
}
.rv-cart-link:hover { color: var(--color-accent); }
.rv-cart-count {
    position: absolute;
    top: -5px;
    right: -7px;
    background: var(--color-primary);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.rv-topnav {
    background: var(--color-header-footer);
    border-top: 1px solid rgba(255,255,255,.06);
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    z-index: 101;
    overflow-y: auto;
    transition: left .35s cubic-bezier(.4,0,.2,1);
    padding: 5rem 0 2rem;
}
.rv-topnav.open { left: 0; }
.rv-topnav .rv-wrap { padding: 0; }
.rv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 100;
    backdrop-filter: blur(2px);
}
.rv-overlay.open,
.rv-overlay.show { display: block; }

.rv-topnav-link {
    display: block;
    padding: .85rem 1.75rem;
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s ease, background .2s ease;
}
.rv-topnav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.rv-topnav-parent { display: flex; align-items: center; justify-content: space-between; }
.rv-topnav-static { cursor: default; }
.rv-topnav-caret { margin-left: auto; transition: transform .25s ease; flex-shrink: 0; }
.rv-topnav-dropdown { position: relative; }
.rv-topnav-submenu {
    display: none;
    background: rgba(0,0,0,.2);
}
.rv-topnav-dropdown.open .rv-topnav-submenu { display: block; }
.rv-topnav-dropdown.open .rv-topnav-caret { transform: rotate(180deg); }
.rv-topnav-sublink {
    display: block;
    padding: .65rem 1.75rem .65rem 2.5rem;
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    transition: color .2s ease, background .2s ease;
}
.rv-topnav-sublink:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ================================================================
   VEHICLE FINDER BAR
   ================================================================ */
.rv-vehicle-bar {
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: .7rem 0;
}
.rv-vehicle-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
}
.rv-vehicle-prompt {
    font-weight: 600;
    font-size: .85rem;
    color: var(--color-accent);
    white-space: nowrap;
}
.rv-vehicle-selects {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    flex: 1;
    min-width: 0;
}
.rv-vehicle-select {
    flex: 1;
    min-width: 110px;
    padding: .5rem .7rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    color: var(--color-text);
    font-size: .82rem;
    cursor: pointer;
    transition: border-color .25s ease;
    appearance: auto;
}
.rv-vehicle-select:focus { border-color: var(--color-primary); }
.rv-vehicle-select:disabled { opacity: .4; cursor: not-allowed; }
.rv-vehicle-submit {
    padding: .5rem 1.25rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background .25s ease, opacity .25s ease;
}
.rv-vehicle-submit:hover { opacity: .85; }
.rv-vehicle-submit:disabled { opacity: .35; cursor: not-allowed; }

.rv-vehicle-chosen {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
}
.rv-vehicle-name { font-size: .9rem; color: var(--color-accent); font-weight: 500; }
.rv-vehicle-controls { display: flex; gap: .5rem; }
.rv-vehicle-reset {
    padding: .45rem .85rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    font-size: .8rem;
    color: var(--color-text);
    background: rgba(255,255,255,.04);
    transition: border-color .25s ease;
}
.rv-vehicle-reset:hover { border-color: var(--color-primary); }

/* ================================================================
   SHARED — CATEGORY CARDS (rv-card, used across pages)
   ================================================================ */
.rv-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    color: var(--color-text);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.rv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
    border-color: rgba(255,255,255,.12);
    color: var(--color-text);
}
.rv-card-visual {
    aspect-ratio: var(--category-image-ratio);
    overflow: hidden;
    background: rgba(255,255,255,.03);
}
.rv-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.rv-card:hover .rv-card-visual img { transform: scale(1.06); }
.rv-card-visual--blank {
    background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
}
.rv-card-title {
    display: block;
    padding: .75rem .85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    text-transform: capitalize;
}

/* ================================================================
   VARIANT TYPE HIGHLIGHTS
   ================================================================ */
.rv-type-mesh { color: #2ecc71; font-weight: 600; }
.rv-type-acrylic { color: #3498db; font-weight: 600; }
.rv-type-shade { color: #9b59b6; font-weight: 600; }

/* ================================================================
   SHARED — PRICE GROUP
   ================================================================ */
.rv-price-group { display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }
.rv-price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,.35);
    font-size: .84rem;
}
.rv-price-current {
    font-weight: 700;
    font-size: .98rem;
    color: var(--color-primary);
}

/* ================================================================
   SHARED — FAQ BLOCK
   ================================================================ */
.rv-faq-block { padding: 3rem 0; }
.rv-faq-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.rv-faq-entry {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    margin-bottom: .6rem;
    overflow: hidden;
    transition: border-color .25s ease;
}
.rv-faq-entry[open] { border-color: var(--color-primary); }
.rv-faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6rem;
    transition: background .2s ease;
}
.rv-faq-question:hover { background: rgba(255,255,255,.03); }
.rv-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.rv-faq-entry[open] .rv-faq-question::after { content: '\2212'; }
.rv-faq-answer {
    padding: 0 1.25rem 1.15rem;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
}

/* ── Shipping Table ────────────────────────────────────────────── */
.rv-shipping-table-wrap { overflow-x: auto; margin-top: .85rem; }
.rv-shipping-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}
.rv-shipping-table th,
.rv-shipping-table td {
    padding: .55rem .7rem;
    border: 1px solid rgba(255,255,255,.08);
    text-align: left;
}
.rv-shipping-table th {
    background: rgba(255,255,255,.04);
    font-weight: 600;
    color: var(--color-text);
}

/* ================================================================
   HOMEPAGE — HERO
   ================================================================ */
.lx-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.lx-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 100%);
    z-index: 1;
}
.lx-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.lx-hero__eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: .25rem;
}
.lx-hero__heading {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    max-width: 680px;
}
.lx-hero__tagline {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    max-width: 540px;
}
.lx-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}
.lx-hero__proof {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}
.lx-hero__stars { color: var(--color-accent); font-size: 1.1rem; letter-spacing: 2px; }
.lx-hero__metric {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.lx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .85rem 2.2rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: all .3s ease;
}
.lx-btn--gold {
    background: var(--color-primary);
    color: #fff;
}
.lx-btn--gold:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.lx-btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.3);
}
.lx-btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    color: #fff;
}
.lx-btn--lg {
    padding: 1rem 2.8rem;
    font-size: 1.05rem;
}

/* ================================================================
   HOMEPAGE — CREDENTIALS STRIP
   ================================================================ */
.lx-credentials {
    background: var(--color-secondary);
    color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.lx-credentials__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem 2rem;
    font-size: .82rem;
}
.lx-credentials__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 500;
    opacity: .85;
}
.lx-credentials__icon { flex-shrink: 0; color: var(--color-accent); }

/* ================================================================
   HOMEPAGE — BRAND NARRATIVE
   ================================================================ */
.lx-narrative {
    padding: 5rem 0;
}
.lx-narrative__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lx-narrative__copy { display: flex; flex-direction: column; gap: 1rem; }
.lx-narrative__intro {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-primary);
}
.lx-narrative__heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}
.lx-narrative__body {
    font-size: .95rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
}
.lx-narrative__metrics {
    display: flex;
    gap: 2.5rem;
    margin-top: .5rem;
}
.lx-metric { display: flex; flex-direction: column; }
.lx-metric__value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}
.lx-metric__label {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lx-narrative__visual { width: 100%; }
.lx-narrative__visual img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

/* ================================================================
   HOMEPAGE — COLLECTION / BROWSE BY MAKE
   ================================================================ */
.lx-collection {
    padding: 5rem 0;
    background: rgba(255,255,255,.02);
}
.lx-collection__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}
.lx-collection__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
}
.lx-collection__link {
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--color-primary);
    transition: text-decoration .2s ease;
}
.lx-collection__link:hover { text-decoration: underline; color: var(--color-primary); }
.lx-collection__mosaic {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

/* ================================================================
   HOMEPAGE — PILLARS (WHY CHOOSE US)
   ================================================================ */
.lx-pillars {
    padding: 5rem 0;
}
.lx-pillars__heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 3rem;
}
.lx-pillars__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.lx-pillar {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.lx-pillar:hover {
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    transform: translateY(-3px);
}
.lx-pillar__icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.lx-pillar__title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}
.lx-pillar__desc {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

/* ================================================================
   HOMEPAGE — SOCIAL PROOF / TESTIMONIALS
   ================================================================ */
.lx-social-proof {
    padding: 5rem 0;
    background: rgba(255,255,255,.02);
}
.lx-social-proof__top {
    text-align: center;
    margin-bottom: 2.5rem;
}
.lx-social-proof__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .75rem;
}
.lx-social-proof__aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .88rem;
    color: rgba(255,255,255,.55);
}
.lx-social-proof__stars { color: var(--color-accent); font-size: 1.1rem; letter-spacing: 2px; }
.lx-social-proof__count { font-weight: 500; }
.lx-social-proof__mark {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-secondary);
    padding: .15rem .5rem;
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lx-social-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.lx-testimonial {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 1.75rem;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.lx-testimonial:hover {
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.lx-testimonial__rating {
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: .75rem;
}
.lx-testimonial__quote {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}
.lx-testimonial__footer {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: .8rem;
}
.lx-testimonial__author {
    font-weight: 600;
    color: var(--color-text);
    font-style: normal;
}
.lx-testimonial__badge {
    color: #2ecc71;
    font-size: .74rem;
}

/* ================================================================
   HOMEPAGE — TRUST STRIP
   ================================================================ */
.lx-trust-strip {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.lx-trust-strip__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 3rem;
}
.lx-trust-strip__item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
}
.lx-trust-strip__icon { color: var(--color-primary); flex-shrink: 0; }

/* ================================================================
   HOMEPAGE — GUARANTEE
   ================================================================ */
.lx-guarantee {
    padding: 3.5rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.lx-guarantee__icon { color: var(--color-primary); flex-shrink: 0; }
.lx-guarantee__content { flex: 1; }
.lx-guarantee__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .35rem;
}
.lx-guarantee__text {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}

/* ================================================================
   HOMEPAGE — END CTA
   ================================================================ */
.lx-endcap {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255,255,255,.02);
}
.lx-endcap__heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .6rem;
}
.lx-endcap__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ================================================================
   BREADCRUMBS (shared patterns)
   ================================================================ */
.lx-breadcrumbs {
    padding: 1rem 0;
}
.lx-breadcrumbs__path {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
}
.lx-breadcrumbs__node {
    color: rgba(255,255,255,.4);
    transition: color .2s ease;
}
.lx-breadcrumbs__node:hover { color: var(--color-primary); }
.lx-breadcrumbs__node--active {
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* PDP breadcrumbs */
.pdp-breadcrumbs {
    padding: 1rem 0;
    font-size: .82rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
}
.pdp-crumb-link { color: rgba(255,255,255,.4); }
.pdp-crumb-link:hover { color: var(--color-primary); }
.pdp-crumb-div { color: rgba(255,255,255,.2); margin: 0 .15rem; }
.pdp-crumb-current { color: rgba(255,255,255,.7); font-weight: 500; }

/* Contact breadcrumbs */
.ct-crumbs {
    padding: 1rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
}
.ct-crumbs a { color: rgba(255,255,255,.4); }
.ct-crumbs a:hover { color: var(--color-primary); }
.ct-crumbs-div { color: rgba(255,255,255,.2); margin: 0 .15rem; }

/* Car selector breadcrumb */
.rcs-breadcrumb {
    padding: 1rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
}
.rcs-breadcrumb a { color: rgba(255,255,255,.4); }
.rcs-breadcrumb a:hover { color: var(--color-primary); }

/* Order tracking breadcrumb */
.ot-crumb-bar {
    padding: 1rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
}
.ot-crumb-bar a { color: rgba(255,255,255,.4); }
.ot-crumb-bar a:hover { color: var(--color-primary); }
.ot-crumb-div { color: rgba(255,255,255,.2); margin: 0 .15rem; }

/* Legacy breadcrumb (cart/checkout) */
.breadcrumb {
    padding: 1rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.4); }
.breadcrumb a:hover { color: var(--color-primary); }

/* ================================================================
   CATEGORY PAGES
   ================================================================ */
/* ── Page Intro (make-level) ───────────────────────────────────── */
.lx-page-intro {
    padding: 2rem 0;
    text-align: center;
}
.lx-page-intro__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}
.lx-page-intro__count {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
}
.lx-make-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-bottom: 3rem;
}

/* ── Hero Split (model-level) ──────────────────────────────────── */
.lx-hero-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
}
.lx-hero-split__visual { flex: 0 0 380px; }
.lx-hero-split__img {
    border-radius: 14px;
    width: 100%;
    height: auto;
}
.lx-hero-split__content { flex: 1; }
.lx-hero-split__heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}
.lx-hero-split__rule {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border: none;
    margin: .75rem 0;
}
.lx-hero-split__text {
    font-size: .95rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* ── Hero Centered (year-level) ────────────────────────────────── */
.lx-hero-centered {
    text-align: center;
    padding: 2.5rem 0;
    max-width: 640px;
    margin: 0 auto;
}
.lx-hero-centered__heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}
.lx-hero-centered__rule {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border: none;
    margin: .75rem auto;
}
.lx-hero-centered__text {
    font-size: .95rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* ── Subcategories ─────────────────────────────────────────────── */
.lx-subs { padding: 2rem 0; }
.lx-subs__heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}
.lx-subs__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.lx-subs__item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    transition: border-color .3s ease, background .3s ease, transform .2s ease;
}
.lx-subs__item:hover {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.05);
    transform: translateX(4px);
    color: var(--color-text);
}
.lx-subs__thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.lx-subs__label {
    font-weight: 600;
    font-size: .92rem;
    flex: 1;
    color: var(--color-text);
}
.lx-subs__arrow {
    color: rgba(255,255,255,.25);
    flex-shrink: 0;
    transition: color .2s ease;
}
.lx-subs__item:hover .lx-subs__arrow { color: var(--color-primary); }

/* ── Products Grid ─────────────────────────────────────────────── */
.lx-products { padding: 2rem 0; }
.lx-products__duo {
    display: grid;
    grid-template-columns: repeat(var(--products-per-row, 4), 1fr);
    gap: 1.25rem;
}
.lx-prod-tile {
    display: block;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    overflow: hidden;
    color: var(--color-text);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lx-prod-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
    border-color: rgba(255,255,255,.12);
    color: var(--color-text);
}
.lx-prod-tile__link {
    display: block;
    color: inherit;
}
.lx-prod-tile__link:hover { color: inherit; }
.lx-prod-tile__figure {
    aspect-ratio: var(--image-ratio);
    overflow: hidden;
    background: rgba(255,255,255,.03);
}
.lx-prod-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.lx-prod-tile:hover .lx-prod-tile__img { transform: scale(1.05); }
.lx-prod-tile__badge {
    display: inline-block;
    padding: .25rem .6rem;
    background: var(--color-primary);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 4px;
    position: absolute;
    top: .75rem;
    left: .75rem;
}
.lx-prod-tile__info { padding: 1rem; }
.lx-prod-tile__name {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lx-prod-tile__excerpt {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    line-height: 1.45;
    margin-bottom: .4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lx-prod-tile__stars {
    color: var(--color-accent);
    font-size: .82rem;
    letter-spacing: 1px;
    margin-bottom: .4rem;
}
.lx-prod-tile__pricing { margin-bottom: .5rem; }
.lx-prod-tile__ship {
    font-size: .74rem;
    color: #2ecc71;
    font-weight: 500;
    margin-bottom: .6rem;
}
.lx-prod-tile__cart {
    display: block;
    width: 100%;
    padding: .6rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: .82rem;
    text-align: center;
    transition: background .25s ease;
}
.lx-prod-tile__cart:hover { background: var(--color-secondary); color: #fff; }

/* ── Category Assurance Strip ──────────────────────────────────── */
.lx-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.lx-assurance__item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.lx-assurance__icon { color: var(--color-primary); flex-shrink: 0; width: 24px; height: 24px; }
.lx-assurance__text { font-weight: 500; }

/* ── Related Links ─────────────────────────────────────────────── */
.lx-related { padding: 2rem 0; }
.lx-related__heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}
.lx-related__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.lx-related__tag {
    display: inline-block;
    padding: .45rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    transition: border-color .25s ease, color .25s ease;
}
.lx-related__tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ================================================================
   PRODUCT DETAIL PAGE (PDP)
   ================================================================ */
.pdp-showcase {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 1.5rem 0;
}

/* ── Gallery ───────────────────────────────────────────────────── */
.pdp-gallery { flex: 1.1; position: sticky; top: 80px; }
.pdp-gallery-frame { margin: 0; position: relative; }
.pdp-gallery-img {
    border-radius: 14px;
    width: 100%;
    height: auto;
}
.pdp-gallery-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.pdp-badge-rated {
    display: inline-block;
    padding: .3rem .7rem;
    background: var(--color-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 6px;
}

/* ── Product Info Sidebar ──────────────────────────────────────── */
.pdp-info { flex: 0.9; }
.pdp-info-header { margin-bottom: 1rem; }
.pdp-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: .5rem;
}
.pdp-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem;
}
.pdp-stars {
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 2px;
}
.pdp-stock-indicator {
    font-size: .78rem;
    font-weight: 600;
    color: #2ecc71;
}

/* ── Pricing ───────────────────────────────────────────────────── */
.pdp-price-block { margin-bottom: 1rem; }
.pdp-price-block .rv-price-current { font-size: 1.6rem; }
.pdp-price-block .rv-price-old { font-size: 1rem; }

/* ── Short Description ─────────────────────────────────────────── */
.pdp-short-desc {
    font-size: .95rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Variant Selector ──────────────────────────────────────────── */
.pdp-variant-block { margin-bottom: 1.25rem; }
.pdp-variant-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .5rem;
}
.pdp-vcard-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.pdp-vcard {
    flex: 1;
    min-width: 100px;
    padding: .75rem .85rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(255,255,255,.03);
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
    text-align: center;
}
.pdp-vcard:hover { border-color: rgba(255,255,255,.2); }
.pdp-vcard--active {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.06);
}
.pdp-vcard-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .2rem;
}
.pdp-vcard-price {
    font-size: .78rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* ── Add to Cart ───────────────────────────────────────────────── */
.pdp-action-area { margin-bottom: 1rem; }
.pdp-cart-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}
.pdp-cart-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.pdp-cart-btn:active { transform: translateY(0); }
.pdp-cart-feedback {
    text-align: center;
    font-size: .85rem;
    color: #2ecc71;
    font-weight: 600;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .3s ease, max-height .3s ease;
}
.pdp-cart-feedback.show { opacity: 1; max-height: 40px; padding: .4rem 0; }

/* ── Delivery Strip ────────────────────────────────────────────── */
.pdp-delivery-strip {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 1rem 0;
}
.pdp-delivery-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.pdp-delivery-item svg { color: var(--color-primary); flex-shrink: 0; }

/* ── Specs Panel ───────────────────────────────────────────────── */
.pdp-specs-panel {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
}
.pdp-specs-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .75rem;
}
.pdp-specs-table { width: 100%; }
.pdp-spec-row {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.04);
    padding: .5rem 0;
}
.pdp-spec-row:last-child { border-bottom: none; }
.pdp-spec-label {
    width: 40%;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
}
.pdp-spec-value {
    flex: 1;
    font-size: .82rem;
    color: var(--color-text);
}

/* ── Assurance Strip ───────────────────────────────────────────── */
.pdp-assurance-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0;
}
.pdp-assurance-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .7rem;
    background: rgba(255,255,255,.04);
    border-radius: 20px;
    font-size: .74rem;
    color: rgba(255,255,255,.5);
}
.pdp-assurance-item svg { flex-shrink: 0; }

/* ── Full Description ──────────────────────────────────────────── */
.pdp-full-description {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.pdp-section-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}
.pdp-prose {
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
}
.pdp-prose p { margin-bottom: .85rem; }

/* ── Related Products ──────────────────────────────────────────── */
.pdp-related-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.pdp-related-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .75rem;
}
.pdp-related-tile {
    flex: 0 0 240px;
    scroll-snap-align: start;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pdp-related-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.pdp-related-img-wrap {
    aspect-ratio: var(--image-ratio);
    overflow: hidden;
    background: rgba(255,255,255,.03);
}
.pdp-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.pdp-related-tile:hover .pdp-related-img { transform: scale(1.05); }
.pdp-related-details { padding: .85rem; }
.pdp-related-name {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .3rem;
}

/* ── PDP Subcats / Also Like ───────────────────────────────────── */
.pdp-subcats {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.pdp-cat-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.pdp-also-like {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.ct-wrap { padding: 1rem 0; }
.ct-banner {
    text-align: center;
    padding: 2rem 0 1.5rem;
}
.ct-banner-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}
.ct-banner-sub {
    font-size: .95rem;
    color: rgba(255,255,255,.5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.ct-expert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.ct-expert-icon { color: var(--color-primary); flex-shrink: 0; }
.ct-expert-body {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

.ct-panels {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    padding: 1.5rem 0;
}
.ct-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.ct-tile {
    padding: 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    transition: border-color .25s ease;
}
.ct-tile:hover { border-color: rgba(255,255,255,.1); }
.ct-tile-head {
    font-weight: 700;
    font-size: .95rem;
    color: var(--color-text);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.ct-tile p {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .35rem;
    line-height: 1.5;
}
.ct-tile a {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-primary);
}
.ct-tile a:hover { text-decoration: underline; }
.ct-tile address {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
}

/* ── Contact Form ──────────────────────────────────────────────── */
.ct-form-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.ct-field { display: flex; flex-direction: column; gap: .35rem; }
.ct-field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
}
.ct-field label small {
    font-weight: 400;
    color: rgba(255,255,255,.35);
}
.ct-field input,
.ct-field textarea,
.ct-field select {
    padding: .7rem .85rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: var(--color-text);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.ct-field input:focus,
.ct-field textarea:focus,
.ct-field select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary), .12);
}
.ct-field textarea { resize: vertical; min-height: 110px; }
.ct-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.ct-submit {
    padding: .85rem 2.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease;
    align-self: flex-start;
}
.ct-submit:hover { background: var(--color-secondary); transform: translateY(-1px); }
.ct-form-ok {
    font-size: .85rem;
    color: #2ecc71;
    font-weight: 600;
    min-height: 1.2em;
}

/* ── Contact Pledges ───────────────────────────────────────────── */
.ct-pledges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.ct-pledge {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}
.ct-pledge strong { color: var(--color-text); display: block; margin-bottom: .3rem; }

.ct-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
}
.ct-meta-box {
    padding: 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
}
.ct-meta-box strong {
    display: block;
    color: var(--color-text);
    margin-bottom: .35rem;
    font-size: .92rem;
}

/* ================================================================
   CAR SELECTOR PAGE
   ================================================================ */
.rcs-hero-panel {
    text-align: center;
    padding: 3rem 0 2rem;
}
.rcs-hero-panel h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .5rem;
}
.rcs-hero-tagline {
    font-size: .95rem;
    color: rgba(255,255,255,.5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}
.rcs-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0;
}
.rcs-stat { text-align: center; }
.rcs-stat-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}
.rcs-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.rcs-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.rcs-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}
.rcs-trust-icon { color: var(--color-primary); flex-shrink: 0; }

.rcs-directory { padding: 2.5rem 0; }
.rcs-directory-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.rcs-directory-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
}
.rcs-directory-count {
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.rcs-make-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.rcs-make-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    transition: border-color .3s ease, transform .2s ease, box-shadow .2s ease;
}
.rcs-make-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    color: var(--color-text);
}
.rcs-make-media {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,.05);
}
.rcs-make-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rcs-make-initial {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.rcs-make-label {
    flex: 1;
    font-weight: 600;
    font-size: .9rem;
    color: var(--color-text);
}
.rcs-make-arrow {
    color: rgba(255,255,255,.25);
    flex-shrink: 0;
    transition: color .2s ease;
}
.rcs-make-card:hover .rcs-make-arrow { color: var(--color-primary); }

.rcs-bottom-cta {
    text-align: center;
    padding: 3rem 0 2rem;
}
.rcs-cta-link {
    display: inline-block;
    padding: .75rem 2rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    transition: background .25s ease, transform .15s ease;
}
.rcs-cta-link:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================================
   ORDER TRACKING PAGE
   ================================================================ */
.ot-wrapper { padding: 1rem 0; }
.ot-headline-block {
    text-align: center;
    padding: 2.5rem 0 1.5rem;
}
.ot-headline-block h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .4rem;
}
.ot-tagline {
    font-size: .92rem;
    color: rgba(255,255,255,.5);
}
.ot-card {
    max-width: 440px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
}
.ot-card-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .35rem;
}
.ot-card-input {
    width: 100%;
    padding: .7rem .85rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: var(--color-text);
    transition: border-color .25s ease;
}
.ot-card-input:focus { border-color: var(--color-primary); }
.ot-field-row {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.25rem;
}
.ot-action-btn {
    width: 100%;
    padding: .85rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: background .25s ease;
}
.ot-action-btn:hover { background: var(--color-secondary); }
.ot-alert-box {
    font-size: .85rem;
    color: #e74c3c;
    min-height: 1.2em;
    margin-top: .5rem;
}

.ot-promise-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 0;
}
.ot-promise-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.ot-promise-icon { color: var(--color-primary); flex-shrink: 0; }
.ot-promise-text { font-weight: 500; }

.ot-support-row {
    text-align: center;
    padding: 1rem 0 2rem;
}
.ot-support-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-primary);
}
.ot-support-link:hover { text-decoration: underline; }

/* ================================================================
   404 PAGE
   ================================================================ */
.nf-wrapper { padding: 1rem 0; }
.nf-spotlight {
    text-align: center;
    padding: 4rem 0 2.5rem;
}
.nf-error-badge {
    display: block;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: .2;
    line-height: 1;
    margin-bottom: .75rem;
}
.nf-headline {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .6rem;
}
.nf-detail {
    font-size: .95rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.nf-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.nf-btn-primary {
    display: inline-block;
    padding: .75rem 2rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: background .25s ease;
}
.nf-btn-primary:hover { background: var(--color-secondary); color: #fff; }
.nf-btn-outline {
    display: inline-block;
    padding: .75rem 2rem;
    border: 2px solid rgba(255,255,255,.15);
    color: var(--color-text);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: border-color .25s ease, background .25s ease;
}
.nf-btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.04);
    color: var(--color-text);
}

.nf-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.06);
    margin: 2rem auto;
    max-width: 200px;
}

.nf-explore { padding: 1.5rem 0; }
.nf-explore-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.5rem;
}
.nf-cat-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.nf-assist {
    text-align: center;
    padding: 2.5rem 0 1rem;
}
.nf-assist-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: .4rem;
}
.nf-assist-copy {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
}
.nf-assist-copy a { color: var(--color-primary); font-weight: 600; }
.nf-assist-copy a:hover { text-decoration: underline; }

/* ================================================================
   STATIC PAGES
   ================================================================ */
.sp-trail { padding: 1rem 0; }
.sp-trail-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
}
.sp-trail-item { color: rgba(255,255,255,.4); }
.sp-trail-link { color: rgba(255,255,255,.4); }
.sp-trail-link:hover { color: var(--color-primary); }
.sp-trail-current { color: rgba(255,255,255,.7); font-weight: 500; }

.sp-document {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0 3rem;
}
.sp-document-header { margin-bottom: 2rem; }
.sp-document-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}
.sp-document-rule {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border: none;
    margin: .75rem 0 0;
}
.sp-document-content {
    font-size: .95rem;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
}
.sp-document-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 2rem 0 .6rem;
}
.sp-document-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 1.5rem 0 .5rem;
}
.sp-document-content p { margin-bottom: .85rem; }
.sp-document-content ul,
.sp-document-content ol { margin: .85rem 0; padding-left: 1.5rem; }
.sp-document-content ul { list-style: disc; }
.sp-document-content ol { list-style: decimal; }
.sp-document-content li { margin-bottom: .4rem; }
.sp-document-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sp-document-content a:hover { color: var(--color-accent); }
.sp-document-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
}
.sp-document-content th,
.sp-document-content td {
    padding: .6rem .85rem;
    border: 1px solid rgba(255,255,255,.08);
    text-align: left;
    font-size: .88rem;
}
.sp-document-content th {
    background: rgba(255,255,255,.04);
    font-weight: 600;
    color: var(--color-text);
}

.sp-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.sp-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}
.sp-trust-icon { color: var(--color-primary); flex-shrink: 0; }
.sp-trust-label { /* inherits from .sp-trust-item */ }

/* ================================================================
   CART PAGE (JS-rendered classes from main.js)
   ================================================================ */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cart-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    align-items: center;
}
.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}
.cart-item-details { flex: 1; }
.cart-item-details h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}
.cart-item-attr {
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 4px;
}
.cart-item-price {
    font-weight: 600;
    color: var(--color-primary);
}
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    overflow: hidden;
}
.qty-btn {
    background: rgba(255,255,255,.06);
    border: none;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: background .2s ease;
}
.qty-btn:hover { background: rgba(255,255,255,.12); }
.qty-value {
    width: 38px;
    text-align: center;
    font-weight: 600;
    font-size: .95rem;
    color: var(--color-text);
}
.cart-item-line-total {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-primary);
}
.cart-remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: .85rem;
    text-decoration: underline;
}
.cart-remove-btn:hover { color: #c0392b; }

.cart-summary {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 420px;
    margin-left: auto;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--color-text);
}
.cart-total-row {
    border-top: 2px solid rgba(255,255,255,.1);
    padding-top: 12px;
    margin-top: 8px;
    font-size: 1.15rem;
}
.cart-discount-row {
    color: var(--color-accent);
    font-weight: 600;
}
.cart-empty {
    text-align: center;
    padding: 4rem;
    color: rgba(255,255,255,.4);
    font-size: 1.1rem;
}
.cart-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}
#cart-container {
    min-height: 120px;
    margin-bottom: 1.5rem;
}

/* Shared Buttons (cart/checkout) */
.btn {
    display: inline-block;
    padding: .7rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all .25s ease;
}
.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
    border: none;
}
.btn-secondary:hover { opacity: .85; }
.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255,255,255,.15);
}
.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.04);
}

/* ================================================================
   CHECKOUT PAGE
   ================================================================ */
.checkout-layout {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
}
.checkout-form-section { flex: 1.2; }
.checkout-summary-section {
    flex: 0.8;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}
.checkout-form-section h2,
.checkout-summary-section h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 1.75rem;
}
.form-row { display: flex; gap: .85rem; }
.form-row-half { flex-direction: row; }
.form-group { display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
}
.form-input {
    padding: .7rem .85rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: var(--color-text);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255,255,255,.05);
}

.payment-info-text {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1rem;
}
.payment-methods-selection {
    display: flex;
    gap: .85rem;
    margin-bottom: 1.25rem;
}
.btn-payment {
    flex: 1;
    padding: .85rem 1rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(255,255,255,.03);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    color: var(--color-text);
    transition: border-color .25s ease, background .25s ease;
    text-align: center;
}
.btn-payment:hover,
.btn-payment.active {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.06);
}
.payment-icon-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}
.selected-payment-label {
    font-size: .85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: .85rem;
}
.btn-checkout {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .25s ease, transform .15s ease;
}
.btn-checkout:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
}

.checkout-feedback {
    font-size: .85rem;
    color: #2ecc71;
    min-height: 1.2em;
    margin-top: .6rem;
}
.checkout-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 300;
    gap: 1.25rem;
    backdrop-filter: blur(4px);
}
.loading-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(255,255,255,.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: rv-spin .7s linear infinite;
}
@keyframes rv-spin { to { transform: rotate(360deg); } }
.checkout-loading-overlay p {
    font-size: .95rem;
    color: #fff;
    font-weight: 500;
}
.checkout-error {
    background: rgba(231,76,60,.12);
    color: #e74c3c;
    padding: .85rem 1.25rem;
    border-radius: 10px;
    font-size: .85rem;
    margin-top: .85rem;
    border: 1px solid rgba(231,76,60,.2);
}
.checkout-discount-row {
    color: var(--color-accent);
    font-weight: 600;
}
.checkout-grand-total {
    border-top: 2px solid rgba(255,255,255,.1);
    padding-top: 10px;
    margin-top: 6px;
    font-size: 1.1rem;
    color: var(--color-text);
}
#checkout-summary-container {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--color-text);
}

/* Checkout summary items (JS-rendered) */
.checkout-summary-item {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.checkout-summary-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}
.checkout-summary-item-details { flex: 1; }
.checkout-summary-item-name {
    font-weight: 600;
    font-size: .85rem;
    color: var(--color-text);
}
.checkout-summary-item-qty {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
}
.checkout-summary-item-price {
    font-weight: 600;
    font-size: .88rem;
    color: var(--color-primary);
}
.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    color: var(--color-text);
}

/* ================================================================
   FOOTER
   ================================================================ */
.rv-footer {
    background: var(--color-header-footer);
    color: rgba(255,255,255,.75);
    padding: 3.5rem 0 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.rv-footer a { color: rgba(255,255,255,.6); }
.rv-footer a:hover { color: #fff; }

.rv-ftr-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 2.5rem;
}

/* Footer Brand Column */
.rv-ftr-brand-col {}
.rv-ftr-brand-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}
.rv-ftr-logo { max-height: 42px; width: auto; opacity: .85; }
.rv-ftr-brandname {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.rv-ftr-social {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}
.rv-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    transition: background .25s ease;
}
.rv-social-icon:hover { background: rgba(255,255,255,.18); }
.rv-social-icon svg { width: 16px; height: 16px; }

/* Footer Contact Column */
.rv-ftr-contact-col {}
.rv-ftr-address { margin-bottom: .6rem; }
.rv-ftr-biz {
    font-weight: 600;
    color: #fff;
    font-size: .88rem;
    margin-bottom: .25rem;
}
.rv-ftr-reach {
    display: flex;
    gap: 1.25rem;
    font-size: .82rem;
    margin-bottom: .5rem;
}
.rv-ftr-email,
.rv-ftr-phone {
    color: rgba(255,255,255,.6);
    transition: color .2s ease;
}
.rv-ftr-email:hover,
.rv-ftr-phone:hover { color: #fff; }
.rv-ftr-hours {
    font-size: .78rem;
    opacity: .5;
}

/* Footer Nav Column */
.rv-ftr-nav-col {}
.rv-ftr-heading {
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}
.rv-ftr-list li { margin-bottom: .45rem; }
.rv-ftr-link {
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    transition: color .2s ease;
}
.rv-ftr-link:hover { color: #fff; }

/* Footer Bottom */
.rv-ftr-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.15rem 0;
    font-size: .74rem;
    opacity: .5;
    text-align: center;
}

/* ================================================================
   RESPONSIVE — TABLET (max-width: 900px)
   ================================================================ */
@media (max-width: 900px) {
    .rv-wrap,
    .lx-wrap { padding: 0 1.25rem; }

    /* Hero */
    .lx-hero { min-height: 400px; }
    .lx-hero__heading { font-size: 2.2rem; }
    .lx-hero__inner { padding: 3rem 1.25rem; }

    /* Narrative */
    .lx-narrative__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lx-narrative__metrics { gap: 1.5rem; }

    /* Collection */
    .lx-collection__mosaic { grid-template-columns: repeat(3, 1fr); }

    /* Pillars */
    .lx-pillars__row { grid-template-columns: 1fr; gap: 1.25rem; }
    .lx-pillar { padding: 1.75rem 1.25rem; }

    /* Social proof */
    .lx-social-proof__grid { grid-template-columns: 1fr; gap: 1rem; }

    /* Category pages */
    .lx-make-mosaic { grid-template-columns: repeat(2, 1fr); }
    .lx-hero-split { flex-direction: column; gap: 1.5rem; }
    .lx-hero-split__visual { flex: none; width: 100%; }
    .lx-products__duo { grid-template-columns: repeat(2, 1fr); }

    /* PDP */
    .pdp-showcase { flex-direction: column; gap: 1.5rem; }
    .pdp-gallery { position: static; }
    .pdp-title { font-size: 1.4rem; }

    /* Contact */
    .ct-panels { grid-template-columns: 1fr; gap: 2rem; }
    .ct-pledges { grid-template-columns: 1fr; }
    .ct-meta-row { grid-template-columns: 1fr; }

    /* Checkout */
    .checkout-layout { flex-direction: column; gap: 2rem; }
    .checkout-summary-section { position: static; }

    /* Footer */
    .rv-ftr-top { grid-template-columns: 1fr; gap: 2rem; }
    .rv-ftr-reach { flex-direction: column; gap: .25rem; }

    /* Car selector */
    .rcs-make-list { grid-template-columns: repeat(2, 1fr); }
    .rcs-stats-row { gap: 1.5rem; }
}

/* ================================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ================================================================ */
@media (max-width: 600px) {
    .rv-wrap,
    .lx-wrap { padding: 0 1rem; }

    /* Hero */
    .lx-hero { min-height: 340px; }
    .lx-hero__heading { font-size: 1.7rem; }
    .lx-hero__tagline { font-size: 1rem; }
    .lx-hero__ctas { flex-direction: column; }
    .lx-hero__ctas .lx-btn { width: 100%; }
    .lx-hero__proof { flex-direction: column; gap: .5rem; }

    /* Collection */
    .lx-collection__mosaic { grid-template-columns: repeat(2, 1fr); gap: .85rem; }

    /* Category */
    .lx-page-intro__title { font-size: 1.5rem; }
    .lx-hero-split__heading { font-size: 1.4rem; }
    .lx-hero-centered__heading { font-size: 1.4rem; }
    .lx-products__duo { grid-template-columns: 1fr; }
    .lx-make-mosaic { grid-template-columns: 1fr; }

    /* PDP */
    .pdp-price-block .rv-price-current { font-size: 1.3rem; }
    .pdp-vcard-row { flex-direction: column; }

    /* Locale label show on bigger screens */
    .rv-locale-label { display: none; }

    /* Contact duo */
    .ct-duo { grid-template-columns: 1fr; }

    /* Checkout form */
    .form-row-half { flex-direction: column; }
    .payment-methods-selection { flex-direction: column; }

    /* Geo */
    .rv-geo-buttons { flex-direction: column; }

    /* Endcap */
    .lx-endcap__heading { font-size: 1.5rem; }

    /* Buttons */
    .lx-btn { padding: .75rem 1.5rem; font-size: .88rem; }
    .lx-btn--lg { padding: .85rem 2rem; font-size: .95rem; }
}

/* ================================================================
   RESPONSIVE — DESKTOP NAV (min-width: 901px)
   ================================================================ */
@media (min-width: 901px) {
    .rv-menu-toggle { display: none; }
    .rv-locale-label { display: inline; }

    .rv-topnav {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        overflow: visible;
        transition: none;
        border-top: 1px solid rgba(255,255,255,.06);
    }
    .rv-topnav .rv-wrap {
        display: flex;
        align-items: center;
        gap: 0;
    }
    .rv-overlay { display: none !important; }

    .rv-topnav-link {
        padding: .65rem 1rem;
        font-size: .85rem;
        white-space: nowrap;
    }

    /* Desktop dropdowns */
    .rv-topnav-dropdown { position: relative; }
    .rv-topnav-submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--color-header-footer);
        border-radius: 0 0 10px 10px;
        box-shadow: 0 12px 36px rgba(0,0,0,.25);
        min-width: 220px;
        z-index: 90;
        padding: .5rem 0;
        border: 1px solid rgba(255,255,255,.06);
        border-top: none;
    }
    .rv-topnav-dropdown:hover .rv-topnav-submenu,
    .rv-topnav-dropdown.open .rv-topnav-submenu {
        display: block;
    }
    .rv-topnav-dropdown:hover .rv-topnav-caret { transform: rotate(180deg); }
    .rv-topnav-sublink {
        padding: .55rem 1.15rem;
        color: rgba(255,255,255,.65);
        font-size: .85rem;
    }
    .rv-topnav-sublink:hover {
        background: rgba(255,255,255,.06);
        color: var(--color-primary);
    }
}

/* ================================================================
   JS-TOGGLED STATE CLASSES
   ================================================================ */
/* Body scroll lock when mobile menu is open */
body.menu-open { overflow: hidden; }

/* Alternative mobile nav open class (used by JS alongside .open) */
.rv-topnav.mobile-open { left: 0; }

/* Checkout empty state (JS-rendered) */
.checkout-empty {
    text-align: center;
    padding: 4rem;
    color: rgba(255,255,255,.4);
    font-size: 1.1rem;
}

/* PDP attribute selector buttons (JS-rendered) */
.attribute-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .75rem;
}
.attribute-btn {
    padding: .5rem 1rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.03);
    color: var(--color-text);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
}
.attribute-btn:hover { border-color: rgba(255,255,255,.2); }
.attribute-btn.active {
    border-color: var(--color-primary);
    background: rgba(255,255,255,.06);
}

/* Auto-year placeholder (JS sets current year) */
.auto-year { /* no special styling needed, inherits context */ }

/* Custom element: marquee-text (announcement bar) */
marquee-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
    .rv-topbar, .rv-header, .rv-topnav, .rv-vehicle-bar, .rv-footer,
    .rv-overlay, .country-banner, .pdp-cart-btn, .rv-cart-link,
    .lx-endcap, .lx-trust-strip { display: none; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}
