/* ============================================================================
   LS FABRICATION — HOME PAGE (2026 rebuild)              css/home-2026.css
   ----------------------------------------------------------------------------
   Every section is a Divi Section > Row > Code module whose content is one
   [ls_home_*] shortcode (inc/lsfab-home.php). Nothing here depends on Divi's
   per-module design CSS — see the trap documented in the old home.css §0 —
   so all geometry is stated in this sheet, scoped to `.ls-h26`.
   ========================================================================= */

/* 0. DIVI RESET ---------------------------------------------------------- */
.ls-h26.et_pb_section {
    position: relative;
    padding: var(--ls-section-md) 0 !important;
    background-color: var(--ls-bg);
    color: var(--ls-text);
    overflow: hidden;
}
.ls-h26.ls-h26--alt.et_pb_section { background-color: #0d0d0d; }
.ls-h26 .et_pb_row {
    position: relative;
    width: calc(100% - 40px) !important;
    max-width: var(--ls-container) !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
.ls-h26 .et_pb_row::before,
.ls-h26 .et_pb_row::after { display: none !important; }
.ls-h26 .et_pb_column { margin: 0 !important; width: 100% !important; }
.ls-h26 .et_pb_module,
.ls-h26 .et_pb_code,
.ls-h26 .et_pb_code_inner { margin: 0 !important; padding: 0 !important; }
.ls-h26 a { text-decoration: none; }
.ls-h26 img { display: block; max-width: 100%; height: auto; }

/* 1. SHARED OBJECTS ------------------------------------------------------ */
.ls-h26 .ls-h26-h2,
.ls-h26 .ls-h26-hero__h1 { margin: 0; padding: 0; } /* beats type.css `body h2:not(:first-child)` (0,1,2) */
.ls-h26-h2 {
    margin: 0;
    font-family: var(--ls-font-display);
    font-size: var(--ls-h2);
    font-weight: 700;
    line-height: var(--ls-leading-tight);
    color: var(--ls-text);
}
.ls-h26-grad {
    background-image: linear-gradient(90deg, var(--ls-cyan) 0%, #7fa7ff 55%, var(--ls-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ls-h26-sechead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--ls-space-4);
    margin: 0 0 var(--ls-space-5);
}
.ls-h26-sechead__text { display: flex; flex-direction: column; gap: var(--ls-space-2); }
.ls-h26-sechead__text .ls-eyebrow { margin: 0; }
.ls-h26-sechead__tools { display: flex; align-items: center; gap: var(--ls-space-4); flex: 0 0 auto; }
.ls-h26-sechead__count { font-size: var(--ls-small); color: var(--ls-text-soft); white-space: nowrap; }

.ls-h26 .ls-btn--lg { min-height: var(--ls-btn-h-lg); padding: 0 28px; font-size: var(--ls-btn-font-lg); }
.ls-h26 .ls-btn--arrow::after {
    content: "\2192";
    margin-left: 10px;
    display: inline-block;
    transition: transform .18s ease;
}
.ls-h26 .ls-btn--arrow:hover::after { transform: translateX(3px); }

.ls-h26-grid { display: grid; gap: var(--ls-space-5); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ls-h26-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Card object (best sellers, new arrivals) */
.ls-h26-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ls-surface-1);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-xl);
    color: var(--ls-text);
    will-change: transform;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ls-h26-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
    width: 34%;
    height: 3px;
    background-image: var(--ls-gradient-brand);
    transition: width .3s ease;
}
.ls-h26-card:hover { transform: translateY(-4px); border-color: var(--ls-hairline-strong); box-shadow: 0 18px 40px rgba(0,0,0,.55); }
.ls-h26-card:hover::before { width: 100%; }
.ls-h26-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a0a0a;
}
.ls-h26-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ls-h26-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 -2px 0;
    height: 46%;
    background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,.75) 60%, var(--ls-surface-1) 100%);
    pointer-events: none;
}
.ls-h26-card__rank {
    position: absolute;
    top: 8px; right: 14px;
    z-index: 1;
    font-family: var(--ls-font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,.10);
}
.ls-h26-card__flag,
.ls-h26-card--new .ls-h26-card__media::before {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 3;
    padding: 5px 10px;
    border-radius: var(--ls-radius-pill);
    font-family: var(--ls-font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: var(--ls-tracking-caps);
    text-transform: uppercase;
    color: #fff;
}
.ls-h26-card__flag { background: var(--ls-red-btn); }
.ls-h26-card--new .ls-h26-card__media::before {
    content: "New";
    background: rgba(0,0,0,.55);
    border: 1px solid var(--ls-hairline-strong);
    backdrop-filter: blur(4px);
}
.ls-h26-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 6px;
    padding: 4px 20px 20px;
    margin-top: -18px;
}
.ls-h26-card__fit {
    font-size: var(--ls-micro);
    font-weight: 600;
    letter-spacing: var(--ls-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ls-text-soft);
}
.ls-h26-card__title {
    font-family: var(--ls-font-display);
    font-size: var(--ls-h4);
    font-weight: 700;
    line-height: var(--ls-leading-h4);
    color: var(--ls-text);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.ls-h26-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ls-space-3);
    margin-top: auto;
    padding-top: var(--ls-space-3);
}
.ls-h26-card__price {
    display: flex;
    flex-direction: column;
    font-family: var(--ls-font-body);
    font-size: var(--ls-lede);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ls-text);
}
.ls-h26-card__price small {
    margin-bottom: 3px;
    font-size: var(--ls-micro);
    font-weight: 600;
    letter-spacing: var(--ls-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ls-text-faint);
}
.ls-h26-card__price .woocommerce-Price-currencySymbol { font-size: .8em; }
.ls-h26-card__price del { display: none; }
.ls-h26-card__price ins { text-decoration: none; }
.ls-h26-card .ls-btn--sm { line-height: 1 !important; }

/* 2. HERO ---------------------------------------------------------------- */
.ls-h26-hero.et_pb_section {
    padding: var(--ls-space-8) 0 var(--ls-space-7) !important;
    background:
        radial-gradient(900px 520px at 8% 0%, rgba(124,0,255,.30) 0%, rgba(124,0,255,0) 60%),
        radial-gradient(760px 560px at 96% 92%, rgba(0,222,239,.18) 0%, rgba(0,222,239,0) 60%),
        #000;
}
.ls-h26-hero.et_pb_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
    mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
    pointer-events: none;
}
.ls-h26-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: var(--ls-space-8);
    align-items: center;
}
.ls-h26-hero__copy { display: flex; flex-direction: column; gap: var(--ls-space-5); }
.ls-h26-hero__eyebrow { margin: 0; color: var(--ls-cyan); }
.ls-h26-hero__h1 {
    margin: 0;
    max-width: 20ch;
    font-family: var(--ls-font-display);
    font-size: clamp(2.375rem, 1.6rem + 2.6vw, 3.375rem);
    font-weight: 700;
    line-height: var(--ls-leading-display);
    letter-spacing: -.01em;
    color: var(--ls-text);
}
.ls-h26-hero__sub {
    margin: 0;
    max-width: 56ch;
    font-size: var(--ls-lede);
    line-height: var(--ls-leading-body);
    color: var(--ls-text-muted);
}
.ls-h26-hero__cta { display: flex; flex-wrap: wrap; gap: var(--ls-space-3); }

.ls-h26-picker {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: var(--ls-space-3) var(--ls-space-6);
    margin-top: var(--ls-space-7);
    padding: var(--ls-space-4) var(--ls-space-5);
    background: rgba(17,17,17,.72);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-xl);
    backdrop-filter: blur(6px);
}
.ls-h26-picker::before {
    content: "";
    position: absolute;
    top: -1px; left: 24px;
    width: 96px; height: 2px;
    background-image: var(--ls-gradient-brand);
}
.ls-h26-picker__label {
    grid-row: 1 / span 2;
    align-self: center;
    padding-right: var(--ls-space-5);
    border-right: 1px solid var(--ls-hairline);
    font-family: var(--ls-font-display);
    font-size: var(--ls-h5);
    font-weight: 700;
    letter-spacing: var(--ls-tracking-caps);
    text-transform: uppercase;
    color: var(--ls-text);
}
.ls-h26-picker__row { display: flex; align-items: center; gap: var(--ls-space-3); }
.ls-h26-picker__make {
    flex: 0 0 auto;
    font-size: var(--ls-micro);
    font-weight: 600;
    letter-spacing: var(--ls-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ls-text-faint);
}
.ls-h26-picker__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ls-h26-chip {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 44px;
    padding: 5px 12px;
    background: var(--ls-surface-2);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-lg);
    color: var(--ls-text);
    line-height: 1.1;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.ls-h26-chip b { font-family: var(--ls-font-display); font-size: 17px; font-weight: 700; letter-spacing: .02em; }
.ls-h26-chip span { font-size: 11px; font-weight: 500; color: var(--ls-text-soft); white-space: nowrap; }
.ls-h26-chip:hover { background: var(--ls-surface-raised); border-color: var(--ls-cyan); transform: translateY(-1px); color: var(--ls-text); }

.ls-h26-hero__visual { position: relative; }
.ls-h26-hero__photo {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px var(--ls-hairline);
}
.ls-h26-hero__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,222,239,.55), rgba(124,0,255,.55));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.ls-h26-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.ls-h26-hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}
.ls-h26-hero__badge {
    position: absolute;
    left: -18px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: rgba(13,13,13,.92);
    border: 1px solid var(--ls-hairline-strong);
    border-radius: var(--ls-radius-xl);
    box-shadow: 0 16px 40px rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
}
.ls-h26-hero__badge-num { font-family: var(--ls-font-display); font-size: 30px; font-weight: 700; line-height: 1; color: var(--ls-text); }
.ls-h26-hero__badge-num i { margin-left: 4px; font-style: normal; font-size: 22px; color: var(--ls-amber); }
.ls-h26-hero__badge-txt {
    max-width: 9ch;
    font-size: var(--ls-micro);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: var(--ls-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ls-text-muted);
}
.ls-h26-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px var(--ls-space-6);
    margin: var(--ls-space-7) 0 0;
    padding: var(--ls-space-4) 0 0;
    border-top: 1px solid var(--ls-hairline-faint);
    list-style: none;
    font-size: var(--ls-small);
    color: var(--ls-text-soft);
}
.ls-h26-hero__trust li { display: flex; align-items: center; gap: 6px; }
.ls-h26-hero__trust b { color: var(--ls-text); font-weight: 700; }
.ls-h26-hero__trust li + li::before {
    content: "";
    width: 4px; height: 4px;
    margin-right: var(--ls-space-4);
    border-radius: 50%;
    background: var(--ls-text-ghost);
}

/* 3. TRUST STRIP --------------------------------------------------------- */
.ls-h26-trust-sec.et_pb_section {
    padding: var(--ls-space-6) 0 !important;
    border-top: 1px solid var(--ls-hairline-faint);
    border-bottom: 1px solid var(--ls-hairline-faint);
}
.ls-h26-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--ls-space-5);
    margin: 0;
    padding: 0;
    list-style: none;
}
.ls-h26-trust__item { display: flex; align-items: center; gap: 14px; }
.ls-h26-trust__ico {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    padding: 10px;
    border-radius: var(--ls-radius-lg);
    background: var(--ls-surface-1);
    border: 1px solid var(--ls-hairline);
    color: var(--ls-cyan);
}
.ls-h26-trust__text { display: flex; flex-direction: column; gap: 3px; }
.ls-h26-trust__text b { font-family: var(--ls-font-display); font-size: var(--ls-h4); font-weight: 700; line-height: 1.15; color: var(--ls-text); }
.ls-h26-trust__text span { font-size: var(--ls-small); line-height: var(--ls-leading-small); color: var(--ls-text-soft); }

/* 4. SHOP BY TRUCK ------------------------------------------------------- */
.ls-h26-eras { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--ls-space-4); }
.ls-h26-era {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ls-surface-1);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-xl);
    color: var(--ls-text);
    will-change: transform;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ls-h26-era::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 2;
    height: 3px;
    background-image: var(--ls-gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.ls-h26-era:hover { transform: translateY(-4px); border-color: var(--ls-hairline-strong); box-shadow: 0 18px 40px rgba(0,0,0,.55); }
.ls-h26-era:hover::before { transform: scaleX(1); }
.ls-h26-era__media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #0a0a0a; }
.ls-h26-era__media img { width: 100%; height: 100%; object-fit: cover; }
.ls-h26-era__make {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 9px;
    border-radius: var(--ls-radius-pill);
    background: rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.25);
    font-family: var(--ls-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: var(--ls-tracking-caps);
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}
.ls-h26-era__body { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px 14px; }
.ls-h26-era__years { font-family: var(--ls-font-display); font-size: 22px; font-weight: 700; line-height: 1.1; color: var(--ls-text); }
.ls-h26-era__name { font-size: var(--ls-small); color: var(--ls-text-muted); }
.ls-h26-era__count {
    margin-top: 6px;
    font-size: var(--ls-micro);
    font-weight: 600;
    letter-spacing: var(--ls-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ls-cyan);
}

/* 5. SHOP BY PART TYPE --------------------------------------------------- */
.ls-h26-types { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--ls-space-4); }
.ls-h26-type {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--ls-radius-xl);
    border: 1px solid var(--ls-hairline);
    background: var(--ls-surface-1);
    color: var(--ls-text);
    will-change: transform;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ls-h26-type:hover { transform: translateY(-4px); border-color: var(--ls-hairline-strong); box-shadow: 0 18px 40px rgba(0,0,0,.55); }
.ls-h26-type__media { position: absolute; inset: 0; }
.ls-h26-type__media img { width: 100%; height: 100%; object-fit: cover; }
.ls-h26-type__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.82) 78%, rgba(0,0,0,.94) 100%);
}
.ls-h26-type__body { position: absolute; inset: auto 0 0 0; display: flex; flex-direction: column; gap: 4px; padding: 18px; }
.ls-h26-type__title { font-family: var(--ls-font-display); font-size: 24px; font-weight: 700; line-height: 1.1; color: #fff; }
.ls-h26-type__blurb {
    font-size: var(--ls-small);
    line-height: var(--ls-leading-small);
    color: rgba(255,255,255,.75);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.ls-h26-type__count {
    margin-top: 6px;
    font-size: var(--ls-micro);
    font-weight: 600;
    letter-spacing: var(--ls-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ls-cyan);
    transition: transform .2s ease;
}
.ls-h26-type:hover .ls-h26-type__count { transform: translateX(4px); }

/* 6. STORY --------------------------------------------------------------- */
.ls-h26-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--ls-space-8); align-items: center; }
.ls-h26-story__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--ls-hairline);
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.ls-h26-story__media img { width: 100%; height: 100%; object-fit: cover; }
.ls-h26-story__cap {
    position: absolute;
    left: 16px; right: 16px; bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    background: rgba(13,13,13,.86);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-lg);
    font-size: var(--ls-small);
    color: var(--ls-text-soft);
    backdrop-filter: blur(6px);
}
.ls-h26-story__cap b { font-family: var(--ls-font-display); font-size: var(--ls-h4); font-weight: 700; color: var(--ls-text); }
.ls-h26-story__copy { display: flex; flex-direction: column; gap: var(--ls-space-4); }
.ls-h26-story__copy .ls-eyebrow { margin: 0; }
.ls-h26-story__copy p { margin: 0; max-width: 56ch; font-size: var(--ls-lede); line-height: var(--ls-leading-body); color: var(--ls-text-muted); }
.ls-h26-story__copy .ls-btn { align-self: flex-start; margin-top: var(--ls-space-2); }
.ls-h26-proof { display: flex; flex-direction: column; gap: var(--ls-space-3); margin: var(--ls-space-2) 0 0; padding: 0; list-style: none; }
.ls-h26-proof li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px 12px 44px;
    background: var(--ls-surface-1);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-lg);
}
.ls-h26-proof li::before {
    content: "";
    position: absolute;
    left: 16px; top: 17px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background-image: var(--ls-gradient-brand);
    box-shadow: 0 0 0 4px rgba(0,222,239,.12);
}
.ls-h26-proof b { font-family: var(--ls-font-display); font-size: var(--ls-h4); font-weight: 700; line-height: 1.2; color: var(--ls-text); }
.ls-h26-proof span { font-size: var(--ls-small); line-height: var(--ls-leading-small); color: var(--ls-text-soft); }

/* 7. GUIDES -------------------------------------------------------------- */
.ls-h26-guide {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ls-surface-1);
    border: 1px solid var(--ls-hairline);
    border-radius: var(--ls-radius-xl);
    color: var(--ls-text);
    will-change: transform;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ls-h26-guide:hover { transform: translateY(-4px); border-color: var(--ls-hairline-strong); box-shadow: 0 18px 40px rgba(0,0,0,.55); }
.ls-h26-guide__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #0a0a0a; }
.ls-h26-guide__media img { width: 100%; height: 100%; object-fit: cover; }
.ls-h26-guide__body { display: flex; flex-direction: column; flex: 1 1 auto; gap: 6px; padding: 16px 18px 18px; }
.ls-h26-guide__kind { font-size: var(--ls-micro); font-weight: 600; letter-spacing: var(--ls-tracking-eyebrow); text-transform: uppercase; color: var(--ls-cyan); }
.ls-h26-guide__title {
    font-family: var(--ls-font-display);
    font-size: var(--ls-h4);
    font-weight: 700;
    line-height: var(--ls-leading-h4);
    color: var(--ls-text);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.ls-h26-guide__blurb { font-size: var(--ls-small); line-height: var(--ls-leading-small); color: var(--ls-text-soft); }
.ls-h26-guide__more { margin-top: auto; padding-top: 8px; font-size: var(--ls-small); font-weight: 600; color: var(--ls-text-soft); }
.ls-h26-guide:hover .ls-h26-guide__more { color: var(--ls-text); }

/* 8. FAQ ----------------------------------------------------------------- */
.ls-h26-faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--ls-space-3) var(--ls-space-5); align-items: start; }
.ls-h26-faq__item { background: var(--ls-surface-1); border: 1px solid var(--ls-hairline); border-radius: var(--ls-radius-lg); overflow: hidden; }
.ls-h26-faq__item[open] { border-color: var(--ls-hairline-strong); }
.ls-h26-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ls-space-4);
    min-height: 56px;
    padding: 14px 18px;
    cursor: pointer;
    list-style: none;
    font-family: var(--ls-font-display);
    font-size: var(--ls-h4);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ls-text);
}
.ls-h26-faq__q::-webkit-details-marker { display: none; }
.ls-h26-faq__q i { position: relative; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--ls-hairline-strong); }
.ls-h26-faq__q i::before,
.ls-h26-faq__q i::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 10px; height: 2px;
    background: var(--ls-text);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}
.ls-h26-faq__q i::after { transform: translate(-50%, -50%) rotate(90deg); }
.ls-h26-faq__item[open] .ls-h26-faq__q i::after { transform: translate(-50%, -50%) rotate(0deg); }
.ls-h26-faq__a { padding: 0 18px 18px; }
.ls-h26-faq__a p { margin: 0; font-size: var(--ls-body); line-height: var(--ls-leading-body); color: var(--ls-text-muted); }

/* 9. REVIEWS (Smash Balloon feed 1) --------------------------------------
   The plugin prints `#sb-reviews-container-1 .x {}` inline at (1,1,0); every
   rule carries the same id plus a class so it wins on specificity. The footer
   feed (#sb-reviews-container-4) is untouched. */
.ls-h26 #sb-reviews-container-1 .sb-feed-header { margin: 0 0 var(--ls-space-6); padding: 0 0 var(--ls-space-5); border-bottom: 1px solid var(--ls-hairline-faint); }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--ls-space-4); }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-average { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ls-space-3); }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-rating { font-family: var(--ls-font-display); font-size: var(--ls-h2); font-weight: 700; line-height: 1; color: var(--ls-text); }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-rating-icons { color: var(--ls-amber); }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-rating-subtext { font-size: var(--ls-micro); font-weight: 600; letter-spacing: var(--ls-tracking-eyebrow); text-transform: uppercase; color: var(--ls-text-faint); font-family: var(--ls-font-body); line-height: 1.3; }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--ls-space-2);
    height: var(--ls-btn-h); padding: 0 var(--ls-btn-pad-x);
    background: transparent; border: 1px solid var(--ls-hairline-strong); border-radius: var(--ls-btn-radius);
    font-family: var(--ls-font-display); font-size: var(--ls-btn-font); font-weight: 700; line-height: 1;
    letter-spacing: var(--ls-tracking-button); text-transform: uppercase; color: var(--ls-text);
    transition: background-color var(--ls-transition), border-color var(--ls-transition);
}
.ls-h26 #sb-reviews-container-1 .sb-feed-header-btn:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.55); color: var(--ls-text); }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-btn .sb-btn-icon { margin: 0; }
.ls-h26 #sb-reviews-container-1 .sb-feed-header-btn svg { width: 14px; height: 14px; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-stage { display: flex; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-item  { display: flex; }
.ls-h26 #sb-reviews-container-1 .sb-post-item-wrap {
    position: relative; display: flex; width: 100%;
    padding: var(--ls-space-5); padding-top: 26px; overflow: hidden;
    background: var(--ls-surface-1); border: 1px solid var(--ls-hairline); border-radius: var(--ls-radius-xl);
    transition: border-color var(--ls-transition), transform var(--ls-transition);
}
.ls-h26 #sb-reviews-container-1 .sb-post-item-wrap::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background-image: var(--ls-gradient-brand); }
.ls-h26 #sb-reviews-container-1 .sb-post-item-wrap::after {
    content: "\201D"; position: absolute; right: 16px; bottom: -34px;
    font-family: var(--ls-font-display); font-size: 104px; font-weight: 700; line-height: 1;
    color: rgba(255,255,255,.07); pointer-events: none;
}
.ls-h26 #sb-reviews-container-1 .sb-post-item-wrap:hover { border-color: var(--ls-hairline-strong); transform: translateY(-2px); }
.ls-h26 #sb-reviews-container-1 .sb-post-item { display: flex; flex-direction: column; width: 100%; }
.ls-h26 #sb-reviews-container-1 .sb-item-author-img img { width: 44px; height: 44px; border: 1px solid var(--ls-hairline); }
.ls-h26 #sb-reviews-container-1 .sb-item-author-name { font-family: var(--ls-font-display); font-size: var(--ls-h4); font-weight: 600; line-height: var(--ls-leading-h4); color: var(--ls-text); }
.ls-h26 #sb-reviews-container-1 .sb-item-author-date { font-size: var(--ls-micro); font-weight: 600; letter-spacing: var(--ls-tracking-eyebrow); text-transform: uppercase; color: var(--ls-text-faint); font-family: var(--ls-font-body); line-height: 1.3; }
.ls-h26 #sb-reviews-container-1 .sb-item-provider-icon { opacity: .85; }
.ls-h26 #sb-reviews-container-1 .sb-item-rating { margin: var(--ls-space-4) 0 var(--ls-space-3); color: var(--ls-amber); }
.ls-h26 #sb-reviews-container-1 .sb-item-text { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; font-size: var(--ls-body); line-height: var(--ls-leading-body); color: var(--ls-text-muted); }
.ls-h26 #sb-reviews-container-1 .sb-post-item-wrap.sb-expanded .sb-item-text,
.ls-h26 #sb-reviews-container-1 .sb-item-text.sb-expanded { -webkit-line-clamp: unset; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-prev,
.ls-h26 #sb-reviews-container-1 .sbr-owl-next {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; margin-top: -20px; padding: 0;
    background: rgba(17,17,17,.94); border: 1px solid var(--ls-hairline); border-radius: var(--ls-radius-pill); color: var(--ls-text);
    transition: background-color var(--ls-transition), border-color var(--ls-transition);
}
.ls-h26 #sb-reviews-container-1 .sbr-owl-prev { left: -26px; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-next { right: -26px; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-prev:hover,
.ls-h26 #sb-reviews-container-1 .sbr-owl-next:hover { background: #1a1a1a; border-color: var(--ls-hairline-strong); }
.ls-h26 #sb-reviews-container-1 .sbr-owl-prev svg,
.ls-h26 #sb-reviews-container-1 .sbr-owl-next svg { width: 13px; height: 13px; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-dots { display: flex; justify-content: center; gap: var(--ls-space-2); margin: var(--ls-space-5) 0 0; padding: 0; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-dot { width: auto; height: auto; margin: 0; padding: 0; }
.ls-h26 #sb-reviews-container-1 .sbr-owl-dot span { width: 8px; height: 8px; margin: 0; background: rgba(255,255,255,.22); border-radius: var(--ls-radius-pill); transition: width var(--ls-transition), background-color var(--ls-transition); }
.ls-h26 #sb-reviews-container-1 .sbr-owl-dot:hover span { background: rgba(255,255,255,.45); }
.ls-h26 #sb-reviews-container-1 .sbr-owl-dot.active span { width: 24px; background: transparent; background-image: var(--ls-gradient-brand); }
/* Height reserved before the delayed carousel script runs (old home.css §15). */
.ls-h26 .sbr-feed .sb-feed-container.sb-carousel-wrap::after { content: ""; display: block; height: 284px; }
.ls-h26 .sbr-feed .sb-feed-container.sb-carousel-wrap:has(.sb-feed-posts.sbr-owl-loaded)::after { display: none; }

/* 10. TABLET (≤ 980) ----------------------------------------------------- */
@media (max-width: 980px) {
    .ls-h26-hero__grid { grid-template-columns: 1fr; gap: var(--ls-space-6); }
    .ls-h26-hero__visual { order: -1; max-width: 520px; }
    .ls-h26-hero__badge { left: 16px; bottom: 16px; }
    .ls-h26-hero__h1 { max-width: 22ch; }
    .ls-h26-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ls-h26-eras { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ls-h26-types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ls-h26-grid, .ls-h26-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ls-h26-story { grid-template-columns: 1fr; gap: var(--ls-space-6); }
    .ls-h26-story__media { max-width: 640px; }
    .ls-h26-faq { grid-template-columns: 1fr; }
    .ls-h26 #sb-reviews-container-1 .sbr-owl-prev { left: -6px; }
    .ls-h26 #sb-reviews-container-1 .sbr-owl-next { right: -6px; }
}

/* 11. PHONE (≤ 767) ------------------------------------------------------ */
@media (max-width: 767px) {
    .ls-h26.et_pb_section { padding: var(--ls-space-7) 0 !important; }
    .ls-h26-hero.et_pb_section { padding: var(--ls-space-6) 0 !important; }
    .ls-h26 .et_pb_row { width: calc(100% - 32px) !important; }
    .ls-h26-hero__visual { max-width: none; }
    .ls-h26-hero__photo { aspect-ratio: 4 / 3; border-radius: 14px; }
    .ls-h26-hero__badge { padding: 8px 12px 8px 10px; gap: 8px; }
    .ls-h26-hero__badge-num { font-size: 22px; }
    .ls-h26-hero__badge-num i { font-size: 16px; }
    .ls-h26-hero__badge-txt { max-width: none; }
    .ls-h26-hero__copy { gap: var(--ls-space-4); }
    .ls-h26-hero__h1 { max-width: none; }
    .ls-h26-hero__cta .ls-btn { flex: 1 1 auto; }
    .ls-h26 .ls-btn--lg { min-height: var(--ls-btn-h); font-size: var(--ls-btn-font); padding: 0 20px; }
    .ls-h26-picker { grid-template-columns: 1fr; margin-top: var(--ls-space-5); padding: var(--ls-space-4); gap: var(--ls-space-3); }
    .ls-h26-picker__label { grid-row: auto; padding: 0; border: 0; }
    .ls-h26-picker__row { width: 100%; flex-direction: column; align-items: flex-start; gap: 8px; }
    .ls-h26-picker__chips { gap: 6px; }
    .ls-h26-chip { padding: 4px 10px; }
    .ls-h26-chip b { font-size: 16px; }
    .ls-h26-hero__trust { flex-direction: column; gap: 8px 0; margin-top: var(--ls-space-5); }
    .ls-h26-hero__trust li + li::before { display: none; }
    .ls-h26-trust-sec.et_pb_section { padding: var(--ls-space-5) 0 !important; }
    .ls-h26-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--ls-space-4) var(--ls-space-3); }
    .ls-h26-trust__item { gap: 10px; align-items: center; }
    .ls-h26-trust__ico { flex-basis: 36px; width: 36px; height: 36px; padding: 8px; }
    .ls-h26-trust__text b { font-size: 15px; }
    .ls-h26-trust__text span { display: none; }
    .ls-h26-sechead { flex-direction: column; align-items: flex-start; gap: var(--ls-space-3); margin-bottom: var(--ls-space-4); }
    .ls-h26-sechead__tools { width: 100%; justify-content: space-between; }
    /* Era tiles become one snap-scrolling row that bleeds to the screen edge —
       the hero picker already lists every era as a tap target above. */
    .ls-h26-eras {
        display: flex;
        gap: 10px;
        margin-right: -16px;
        padding: 2px 16px 8px 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .ls-h26-eras::-webkit-scrollbar { display: none; }
    .ls-h26-era { flex: 0 0 156px; scroll-snap-align: start; }
    .ls-h26-era__body { padding: 10px 12px 12px; }
    .ls-h26-era__years { font-size: 19px; }
    .ls-h26-era__name { font-size: 13px; }
    .ls-h26-types { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .ls-h26-type { aspect-ratio: 1 / 1; }
    .ls-h26-type__body { padding: 12px; }
    .ls-h26-type__title { font-size: 19px; }
    .ls-h26-type__blurb { display: none; }
    .ls-h26-type__count { margin-top: 2px; }
    .ls-h26-grid, .ls-h26-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .ls-h26-card__media { aspect-ratio: 1 / 1; }
    .ls-h26-card__rank { font-size: 40px; top: 6px; right: 10px; }
    .ls-h26-card__flag, .ls-h26-card--new .ls-h26-card__media::before { top: 10px; left: 10px; padding: 4px 8px; font-size: 12px; }
    .ls-h26-card__body { padding: 2px 12px 12px; margin-top: -14px; gap: 4px; }
    .ls-h26-card__title { font-size: 16px; }
    .ls-h26-card__fit { letter-spacing: .06em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .ls-h26-card__foot { flex-direction: column; align-items: stretch; gap: 8px; padding-top: 8px; }
    .ls-h26-card__price { font-size: 16px; }
    .ls-h26-card .ls-btn--sm { width: 100%; line-height: 1.2 !important; }
    .ls-h26-guide__body { padding: 12px 12px 14px; }
    .ls-h26-guide__title { font-size: 15px; }
    .ls-h26-guide__blurb { display: none; }
    .ls-h26-story__media { border-radius: 14px; aspect-ratio: 4 / 3; }
    .ls-h26-story__cap { left: 10px; right: 10px; bottom: 10px; padding: 10px 12px; }
    .ls-h26-guide__media { aspect-ratio: 16 / 9; }
    .ls-h26-faq__q { font-size: 17px; padding: 12px 14px; min-height: 52px; }
    .ls-h26-faq__a { padding: 0 14px 14px; }
    .ls-h26 #sb-reviews-container-1 .sbr-owl-nav { display: none; }
    .ls-h26 #sb-reviews-container-1 .sb-post-item-wrap { padding: var(--ls-space-4); padding-top: 22px; }
    .ls-h26 #sb-reviews-container-1 .sb-feed-header-bottom { flex-direction: column; align-items: stretch; }
    .ls-h26 #sb-reviews-container-1 .sb-feed-header-btn { width: 100%; }
}
@media (max-width: 479px) {
    .ls-h26 .sbr-feed .sb-feed-container.sb-carousel-wrap::after { height: 272px; }
}
@media (prefers-reduced-motion: reduce) {
    .ls-h26 * { transition: none !important; }
}

/* Made-to-order price slot (no live price) */
.ls-h26-card__price em { font-style: normal; font-size: var(--ls-small); font-weight: 600; color: var(--ls-text-muted); }
