/* ============================================
   DISTRIBUTION LABAR — Complete Theme
   Industrial Utility / Auto Parts Store
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---- Tokens ---- */
:root {
    --lb-black: #0C0C0C;
    --lb-brand: #666666;
    --lb-brand-light: #999999;
    --lb-red: #CB1836;
    --lb-red-hover: #a81230;
    --lb-gold: #EA8A2D;
    --lb-gold-light: #f5a84d;
    --lb-white: #ffffff;
    --lb-gray-50: #F7F7F8;
    --lb-gray-100: #EDEDEF;
    --lb-gray-200: #D4D4D8;
    --lb-gray-400: #9E9EA7;
    --lb-gray-600: #5A5A65;
    --lb-gray-800: #2C2C33;
    --lb-navy: #001925;

    --lb-font: 'DM Sans', system-ui, sans-serif;
    --lb-font-heading: 'DM Sans', system-ui, sans-serif;
    --lb-mono: 'JetBrains Mono', monospace;

    --lb-radius: 4px;
    --lb-shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --lb-shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --lb-shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --lb-transition: 0.2s ease;
    --lb-sticky-h: 0px;
}

@media (min-width: 992px) {
    .offcanvas-lg .offcanvas-body.lb-filters-sticky {
        position: sticky;
        /* Sits below the persistent-nav (catnav + vehicle-bar) which is always
           visible on desktop. The variable is set by sticky-nav.js and tracks
           the persistent-nav's bottom edge in the viewport — so the filter
           re-aligns automatically when sticky-nav hides/shows. */
        top: calc(var(--lb-persistent-bottom, 0px) + 8px);
        max-height: calc(100vh - var(--lb-persistent-bottom, 0px) - 16px);
        overflow-y: auto;
        transition: top 0.18s ease-out, max-height 0.18s ease-out;
    }
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--lb-font);
    color: var(--lb-gray-800);
    background: var(--lb-gray-50);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.6;
}

a { color: var(--lb-red); text-decoration: none; transition: color var(--lb-transition); }
a:hover { color: var(--lb-red-hover); }

/* Bootstrap overrides for inherited pages (cart, checkout, account, etc.) */
.btn-primary {
    background-color: var(--lb-red) !important;
    border-color: var(--lb-red) !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--lb-red-hover) !important;
    border-color: var(--lb-red-hover) !important;
}
.btn-primary:focus { box-shadow: 0 0 0 .25rem rgba(203,24,54,.2) !important; }
.btn-outline-primary {
    color: var(--lb-red) !important;
    border-color: var(--lb-red) !important;
}
.btn-outline-primary:hover {
    background-color: var(--lb-red) !important;
    border-color: var(--lb-red) !important;
    color: #fff !important;
}
.text-primary { color: var(--lb-red) !important; }
.bg-primary { background-color: var(--lb-red) !important; }
.border-primary { border-color: var(--lb-red) !important; }
.form-control:focus {
    border-color: var(--lb-red);
    box-shadow: 0 0 0 .25rem rgba(203,24,54,.1);
}
.form-check-input:checked {
    background-color: var(--lb-red);
    border-color: var(--lb-red);
}
.badge.bg-primary { background-color: var(--lb-red) !important; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lb-font-heading);
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; }

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.lb-topbar {
    background: var(--lb-black);
    color: var(--lb-gray-400);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.lb-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
    gap: 1rem;
}

.lb-topbar__left,
.lb-topbar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lb-topbar a {
    color: var(--lb-gray-400);
    font-size: 0.75rem;
    transition: color var(--lb-transition);
}
.lb-topbar a:hover { color: var(--lb-white); }

.lb-topbar__shipping {
    color: var(--lb-gold);
    font-weight: 600;
}

.lb-topbar__sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.12);
}

.lb-topbar__tagline {
    color: var(--lb-gray-400);
    font-size: 0.72rem;
    font-style: italic;
}

/* ============================================
   MAIN HEADER
   ============================================ */
/* Sticky nav + Headroom-style hide-on-scroll. Applies to mobile AND desktop.
   Sticky keeps the nav in the document flow — no body padding needed and no
   "ghost gap" when hidden, because the JS only triggers hide once scrollY has
   passed the nav's full natural extent (topGuard = nav.offsetTop + offsetHeight).
   Drawer expansion uses absolute positioning (see .lb-vehicle-bar__inner below)
   so opening/closing it never changes the nav's height. */
.lb-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    transform: translate3d(0, 0, 0);
    transition: transform 0.18s ease-out;
    will-change: transform;
    backface-visibility: hidden;
}

.lb-sticky-nav--hidden {
    transform: translate3d(0, -100%, 0);
}

/* Persistent nav (catnav + vehicle bar).
   - Desktop (≥992px): stays visible. Top offset is dynamic via --lb-persistent-top
     (= sticky-nav height when visible, 0 when hidden). Sticky-nav hides, persistent
     stays.
   - Mobile (<992px): hides together with sticky-nav (preserves original UX). Uses
     translateY of its own height + sticky-nav height (--lb-sticky-h) to fully
     leave the viewport. */
.lb-persistent-nav {
    position: sticky;
    top: var(--lb-persistent-top, 0);
    z-index: 1029;
    transform: translate3d(0, 0, 0);
    transition: top 0.18s ease-out, transform 0.18s ease-out;
    will-change: transform;
}

@media (max-width: 991.98px) {
    .lb-persistent-nav--hidden {
        /* Translate enough to clear sticky-nav AND any open drawer below the
           vehicle-bar (drawer is absolute, so it travels with persistent-nav
           but its own height isn't covered by -100%). --lb-drawer-h is 0
           unless a drawer is open (JS updates it on shown.bs.collapse). */
        transform: translate3d(0, calc(-100% - var(--lb-sticky-h, 0px) - var(--lb-drawer-h, 0px)), 0);
    }
}

.lb-header {
    background: var(--lb-brand);
}

.lb-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 0.65rem 0;
}

/* Logo */
.lb-header__logo {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.lb-header__logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.lb-header__logo-text {
    font-size: 0.58rem;
    color: var(--lb-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* Search — fills all available space between logo and actions */
.lb-header__search {
    width: 100%;
}

/* Header actions (cart, account) */
.lb-header__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lb-header-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--lb-radius);
    color: rgba(255,255,255,.8);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--lb-transition);
    position: relative;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.lb-header-action:hover {
    background: rgba(255,255,255,.08);
    color: var(--lb-white);
}

.lb-header-action i { font-size: 1.15rem; }

.lb-header-action--locale { gap: 0.25rem; }

/* OOS block on product detail — 3-column layout on desktop: status | text | actions */
.lb-oos-block {
    background: var(--lb-white);
    border: 1px solid var(--lb-gray-100);
    border-left: 3px solid var(--lb-red);
    border-radius: var(--lb-radius);
    padding: 1.125rem 1.25rem;
    box-shadow: var(--lb-shadow-sm);
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lb-oos-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    align-self: flex-start;
    background: rgba(203, 24, 54, 0.08);
    color: var(--lb-red);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.lb-oos-status__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lb-red);
}

.lb-oos-block__content {
    flex: 1 1 auto;
    min-width: 0;
}

.lb-oos-block__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--lb-black);
    line-height: 1.3;
}

.lb-oos-block__body {
    font-size: 0.9rem;
    color: var(--lb-gray-600);
    margin: 0;
    line-height: 1.55;
}

.lb-oos-block__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lb-oos-block__actions .btn {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 992px) {
    .lb-oos-block {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
    .lb-oos-status {
        align-self: center;
    }
    .lb-oos-block__actions {
        flex-direction: row;
        align-items: center;
    }
}

/* OOS overlay — darkens product image with centered status text (card + list) */
.lb-card__oos-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 28, 0.55);
    backdrop-filter: grayscale(1);
    -webkit-backdrop-filter: grayscale(1);
    pointer-events: none;
}
.lb-card__oos-overlay span {
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
    padding: .35rem .65rem;
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 2px;
}

.lb-header-action__badge {
    position: absolute;
    top: 2px;
    left: 22px;
    background: var(--lb-red);
    color: var(--lb-white);
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lb-header__phone {
    font-family: var(--lb-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lb-gold);
    white-space: nowrap;
    text-decoration: none;
}

.lb-header__phone:hover { color: var(--lb-gold-light); }
.lb-header__phone i { margin-right: 0.35rem; }

/* ============================================
   VEHICLE SELECTOR BAR
   ============================================ */
.lb-vehicle-bar {
    background: var(--lb-navy);
    color: var(--lb-white);
    padding: 0.65rem 0;
    border-bottom: 3px solid var(--lb-red);
    position: relative;
}

/* Drawer overlay — expanded drawer floats over the content below the trigger.
   This keeps .lb-sticky-nav's height constant regardless of drawer state, so
   opening it never causes layout shift or hide-on-scroll noise. */
.lb-vehicle-bar__inner.collapse,
.lb-vehicle-bar__inner.collapse.show,
.lb-vehicle-bar__inner.collapsing {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lb-navy);
    padding: 0.75rem 0;
    z-index: 1029;
    box-shadow: 0 4px 8px rgba(0,0,0,.12);
}

/* Faster snappier collapse animation (Bootstrap defaults to 0.35s ease).
   ease-out feels more responsive — fast initial movement, gentle landing. */
.lb-vehicle-bar__inner.collapsing {
    transition: height 0.2s ease-out !important;
    will-change: height;
}

.lb-vehicle-bar__inner {
    align-items: flex-start;
    gap: 1rem;
}

.lb-vehicle-bar__label {
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lb-gold);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    min-height: 2.25rem;
}

.lb-vehicle-bar__label i {
    font-size: 1rem;
}

.lb-vehicle-bar__search {
    flex: 1;
    min-width: 0;
}

/* Mobile drawer trigger (hidden on desktop via d-lg-none) */
.lb-vehicle-bar__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: var(--lb-white);
    padding: 0.35rem 0;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.lb-vehicle-bar__trigger-label {
    display: inline-flex;
    align-items: center;
    color: var(--lb-gold);
}

/* When a vehicle is selected, switch the label to white to draw eye to the
   active selection. Gold reads as "call to action"; white reads as "info". */
.lb-vehicle-bar__trigger--selected .lb-vehicle-bar__trigger-label {
    color: var(--lb-white);
}

.lb-vehicle-bar__trigger-chevron {
    color: var(--lb-gold);
    transition: transform var(--lb-transition);
    font-size: 0.85rem;
}

.lb-vehicle-bar__trigger[aria-expanded="true"] .lb-vehicle-bar__trigger-chevron {
    transform: rotate(180deg);
}


/* ---- Compact Vehicle Search (lb-vs) ---- */
.lb-vs { margin: 0; }

.lb-vs__form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.lb-vs__field {
    flex: 1;
    min-width: 0;
}

.lb-vs__field select,
.lb-vs__field .form-select {
    width: 100%;
    background-color: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--lb-white);
    font-family: var(--lb-font);
    font-size: 0.8rem;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    border-radius: var(--lb-radius);
    appearance: auto;
    transition: border-color var(--lb-transition), box-shadow var(--lb-transition);
}

.lb-vs__field select:focus,
.lb-vs__field .form-select:focus {
    border-color: var(--lb-gold);
    box-shadow: 0 0 0 2px rgba(234,138,45,.25);
    background-color: rgba(255,255,255,.15);
    outline: none;
    color: var(--lb-white);
}

.lb-vs__field select option {
    background: var(--lb-navy);
    color: var(--lb-white);
}

.lb-vs__actions {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.lb-vs__btn {
    background: var(--lb-red) !important;
    border-color: var(--lb-red) !important;
    color: var(--lb-white) !important;
    font-family: var(--lb-font);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: var(--lb-radius);
    white-space: nowrap;
    transition: background var(--lb-transition);
}

.lb-vs__btn:hover:not(:disabled) {
    background: var(--lb-red-hover) !important;
}

.lb-vs__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.lb-vs__clear {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    color: rgba(255,255,255,.5) !important;
    padding: 0.45rem 0.65rem;
    border-radius: var(--lb-radius);
    font-size: 0.78rem;
    transition: all var(--lb-transition);
}

.lb-vs__clear:hover {
    background: rgba(255,255,255,.15) !important;
    color: var(--lb-white) !important;
}

/* Search history row */
.lb-vs__history {
    margin-top: 0.5rem;
    text-align: center;
}

/* Toggle button for "show latest searches" (mobile, from plugin partial) */
.lb-vs__history #toggleSearchHistory.btn-outline-secondary {
    background: var(--lb-gray-800);
    border: 1px solid var(--lb-gray-800);
    color: var(--lb-white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
    transition: all var(--lb-transition);
    display: inline-flex;
    align-items: center;
}

/* Hide the broken non-FA icon from the plugin partial */
.lb-vs__history #toggleSearchHistory .toggle-icon { display: none; }

/* Inject a FontAwesome chevron via pseudo (right side, rotates on expand) */
.lb-vs__history #toggleSearchHistory.btn-outline-secondary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65em;
    margin-left: 0.55rem;
    transition: transform var(--lb-transition);
}

.lb-vs__history #toggleSearchHistory.btn-outline-secondary[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.lb-vs__history-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.lb-vs__history-btn {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.6);
    font-family: var(--lb-font);
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all var(--lb-transition);
    white-space: nowrap;
}

.lb-vs__history-btn:hover {
    background: rgba(255,255,255,.15);
    color: var(--lb-white);
    border-color: rgba(255,255,255,.2);
}

/* Responsive: stack on small screens */
@media (max-width: 991px) {
    .lb-vs__form {
        flex-wrap: wrap;
    }
    .lb-vs__field {
        flex: 1 1 calc(33% - 0.5rem);
        min-width: 120px;
    }
}

@media (max-width: 575px) {
    .lb-vehicle-bar__label span { display: none; }
    .lb-vs__form { flex-wrap: wrap; }
    .lb-vs__field {
        flex: 1 1 calc(50% - 0.5rem);
    }
    .lb-vs__actions {
        width: 100%;
    }
    .lb-vs__btn { flex: 1; }
}

/* ============================================
   CATEGORY NAV BAR
   ============================================ */
.lb-catnav {
    background: var(--lb-white);
    border-bottom: 1px solid var(--lb-gray-100);
    position: relative;
}


.lb-catnav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.lb-catnav__item a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    font-family: var(--lb-font);
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--lb-gray-800);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all var(--lb-transition);
}

.lb-catnav__item a:hover,
.lb-catnav__item a.active {
    color: var(--lb-red);
    border-bottom-color: var(--lb-red);
    background: var(--lb-gray-50);
}

/* Klondike oils nav item */
.lb-catnav__klondike-icon {
    height: 18px;
    width: auto;
    margin-right: 0.25rem;
    vertical-align: middle;
}

.lb-catnav__item--klondike a {
    color: var(--lb-gold) !important;
    font-weight: 700 !important;
}

.lb-catnav__item--klondike a:hover {
    color: var(--lb-gold-light) !important;
    border-bottom-color: var(--lb-gold) !important;
}

.lb-catnav__item--klondike .lb-catnav__arrow {
    color: var(--lb-gold) !important;
}

.lb-catnav__arrow {
    font-size: 0.55rem !important;
    margin-left: 0.2rem;
    opacity: 0.4 !important;
    transition: transform var(--lb-transition);
}

/* ---- Catalogue Dropdown ---- */
.lb-catnav__item--trigger {
    position: relative;
}

.lb-catnav__item--trigger a {
    background: var(--lb-red) !important;
    color: var(--lb-white) !important;
    gap: 0.5rem;
    border-bottom-color: transparent !important;
}

.lb-catnav__item--trigger a:hover {
    background: var(--lb-red-hover) !important;
}

/* Panel container — positioned below the nav */
.lb-catalogue {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
}

.lb-catalogue--open { display: block; }

.lb-catalogue__backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    cursor: pointer;
}

/* Inner layout: sidebar + sub panel side by side */
.lb-catalogue__panel {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--lb-white);
    border: 1px solid var(--lb-gray-100);
    border-top: 3px solid var(--lb-red);
    border-radius: 0 0 var(--lb-radius) var(--lb-radius);
    box-shadow: var(--lb-shadow-lg);
    min-height: 380px;
    max-height: 520px;
    animation: lb-dropIn 0.2s ease;
}

@keyframes lb-dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Left column — category list */
.lb-catalogue__sidebar {
    width: 240px;
    flex-shrink: 0;
    border-right: 1px solid var(--lb-gray-100);
    display: flex;
    flex-direction: column;
    background: var(--lb-gray-50);
}

.lb-catalogue__header {
    display: none;
}

.lb-catalogue__close {
    display: none;
}

.lb-catalogue__body {
    flex: 1;
    overflow-y: auto;
}

.lb-catalogue__cats {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.lb-catalogue__cat-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lb-gray-800);
    cursor: pointer;
    transition: all var(--lb-transition);
}

.lb-catalogue__cat-link:hover,
.lb-catalogue__cat--active .lb-catalogue__cat-link {
    background: var(--lb-white);
    color: var(--lb-red);
}

.lb-catalogue__cat--active .lb-catalogue__cat-link {
    border-right: 3px solid var(--lb-red);
    font-weight: 600;
}

.lb-catalogue__cat--klondike .lb-catalogue__cat-link {
    color: var(--lb-gold);
    font-weight: 600;
}

.lb-catalogue__cat--klondike .lb-catalogue__cat-link:hover,
.lb-catalogue__cat--klondike.lb-catalogue__cat--active .lb-catalogue__cat-link {
    color: var(--lb-gold);
    border-right-color: var(--lb-gold);
}

.lb-catalogue__chevron {
    margin-left: auto;
    font-size: 0.6rem;
    opacity: 0.25;
}

.lb-catalogue__cat--active .lb-catalogue__chevron {
    opacity: 0.7;
}

.lb-catalogue__footer {
    padding: 0.65rem 1rem;
    border-top: 1px solid var(--lb-gray-100);
    text-align: center;
}

.lb-catalogue__footer a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lb-red);
}

/* Right column — subcategory detail */
.lb-catalogue__sub {
    display: none;
    flex: 1;
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
}

.lb-catalogue__sub--active { display: block; }

.lb-catalogue__sub-heading {
    font-family: var(--lb-font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lb-black);
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--lb-red);
}

.lb-catalogue__sub-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lb-catalogue__sub-group {
    font-family: var(--lb-font);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lb-gray-400);
    margin: 0 0 0.35rem;
    padding: 0;
}

.lb-catalogue__sub-group:not(:first-child) {
    margin-top: 1rem;
}

.lb-catalogue__sub-cols ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lb-catalogue__sub-cols ul li a {
    display: block;
    padding: 0.28rem 0;
    font-size: 0.82rem;
    color: var(--lb-gray-600);
    transition: color var(--lb-transition);
    border-bottom: none;
}

.lb-catalogue__sub-cols ul li a:hover {
    color: var(--lb-red);
}

.lb-catalogue__sub-cols ul li a strong {
    color: var(--lb-gold);
}

@media (max-width: 991px) {
    .lb-catalogue__panel {
        flex-direction: column;
        max-height: 70vh;
    }
    .lb-catalogue__sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--lb-gray-100);
    }
    .lb-catalogue__sub-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .lb-catalogue__sub-cols {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   HERO / PROMO BANNER
   ============================================ */
.lb-hero {
    background: linear-gradient(135deg, var(--lb-black) 0%, #1a0a0f 55%, var(--lb-navy) 100%);
    color: var(--lb-white);
    position: relative;
    overflow: hidden;
}

.lb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(203,24,54,.12), transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='.3' opacity='.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
    pointer-events: none;
}

.lb-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.lb-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234,138,45,.15);
    border: 1px solid rgba(234,138,45,.3);
    color: var(--lb-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.lb-hero__title {
    font-family: var(--lb-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.lb-hero__title span { color: var(--lb-red); }

.lb-hero__text {
    color: rgba(255,255,255,.6);
    font-size: 0.9rem;
    max-width: 480px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lb-hero__badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lb-hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
}

.lb-hero__badge i {
    color: var(--lb-gold);
    font-size: 0.85rem;
}

.lb-hero__klondike {
    text-align: center;
    padding: 2rem;
}

.lb-hero__klondike img {
    width: 320px;
    filter: drop-shadow(0 0 40px rgba(234,138,45,.15));
    margin-bottom: 1rem;
}

.lb-hero__klondike-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lb-gold);
    font-weight: 600;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.lb-section {
    padding: 2.5rem 0;
}

.lb-section--alt {
    background: var(--lb-white);
}

.lb-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.lb-section-title {
    font-family: var(--lb-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lb-black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lb-section-title::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: var(--lb-red);
    border-radius: 1px;
    flex-shrink: 0;
}

.lb-section-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lb-red);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.lb-section-link:hover { gap: 0.55rem; color: var(--lb-red-hover); }

/* ============================================
   CATEGORY GRID
   ============================================ */
.lb-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.lb-cat-card {
    background: var(--lb-white);
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--lb-transition);
    cursor: pointer;
    display: block;
    color: var(--lb-gray-800);
    text-decoration: none;
}

.lb-cat-card:hover {
    border-color: var(--lb-red);
    box-shadow: var(--lb-shadow-md);
    transform: translateY(-2px);
    color: var(--lb-red);
}

.lb-cat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lb-gray-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--lb-red);
    transition: all var(--lb-transition);
}

.lb-cat-card:hover .lb-cat-card__icon {
    background: var(--lb-red);
    color: var(--lb-white);
}

.lb-cat-card__name {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lb-cat-card__count {
    font-size: 0.7rem;
    color: var(--lb-gray-400);
    font-family: var(--lb-mono);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.lb-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.lb-product-card {
    background: var(--lb-white);
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
    overflow: hidden;
    transition: all var(--lb-transition);
    display: flex;
    flex-direction: column;
}

.lb-product-card:hover {
    box-shadow: var(--lb-shadow-md);
    border-color: var(--lb-gray-200);
}

.lb-product-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--lb-red);
    color: var(--lb-white);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    z-index: 2;
}

.lb-product-card__badge--gold {
    background: var(--lb-gold);
}

.lb-product-card__img {
    position: relative;
    background: var(--lb-gray-50);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--lb-gray-100);
}

.lb-product-card__img i {
    font-size: 2.5rem;
    color: var(--lb-gray-200);
}

.lb-product-card__body {
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lb-product-card__brand {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lb-gold);
    margin-bottom: 0.25rem;
}

.lb-product-card__name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lb-black);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.lb-product-card__sku {
    font-family: var(--lb-mono);
    font-size: 0.68rem;
    color: var(--lb-gray-400);
    margin-bottom: 0.5rem;
}

.lb-product-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lb-red);
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.lb-product-card__stock {
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.65rem;
}

.lb-product-card__stock--in { color: #16a34a; }
.lb-product-card__stock--out { color: var(--lb-red); }

.lb-product-card__btn {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background: var(--lb-red);
    color: var(--lb-white);
    border: none;
    border-radius: var(--lb-radius);
    font-family: var(--lb-font);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background var(--lb-transition);
}
.lb-product-card__btn:hover { background: var(--lb-red-hover); color: var(--lb-white); }

/* ============================================
   INFO STRIP (Shipping / Trust)
   ============================================ */
.lb-info-strip {
    background: var(--lb-white);
    border-top: 1px solid var(--lb-gray-100);
    border-bottom: 1px solid var(--lb-gray-100);
    padding: 1rem 0;
}

.lb-info-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lb-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.lb-info-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lb-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lb-red);
    font-size: 1rem;
}

.lb-info-item__text strong {
    display: block;
    font-size: 0.78rem;
    color: var(--lb-black);
}

.lb-info-item__text span {
    font-size: 0.7rem;
    color: var(--lb-gray-400);
}

/* ============================================
   BRANDS BAR
   ============================================ */
.lb-brands {
    background: var(--lb-white);
    padding: 2rem 0;
}

.lb-brands__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.lb-brands__item {
    opacity: 0.45;
    transition: opacity var(--lb-transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--lb-gray-600);
    text-decoration: none;
}

.lb-brands__item:hover { opacity: 1; }

.lb-brands__item img {
    height: 36px;
    width: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.lb-footer {
    background: #1a1a1f;
    color: #aab0b8;
    font-size: 0.8rem;
}

.lb-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding: 2.5rem 0;
}

.lb-footer__brand-logo {
    height: 90px;
    margin-bottom: 1rem;
}

.lb-footer__brand-text {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #8a919a;
    margin-bottom: 1rem;
}

.lb-footer__social {
    display: flex;
    gap: 0.5rem;
}

.lb-footer__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-gray-400);
    font-size: 0.85rem;
    transition: all var(--lb-transition);
}
.lb-footer__social a:hover {
    background: var(--lb-red);
    color: var(--lb-white);
}

.lb-footer__heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lb-white);
    margin-bottom: 1rem;
}

.lb-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lb-footer__links li { margin-bottom: 0.5rem; }

.lb-footer__links a {
    color: #aab0b8;
    font-size: 0.78rem;
    transition: color var(--lb-transition);
}
.lb-footer__links a:hover { color: #fff; }

.lb-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
}

.lb-footer__contact-item i {
    color: var(--lb-red);
    margin-top: 2px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.lb-footer__contact-item a { color: #aab0b8; }
.lb-footer__contact-item a:hover { color: #fff; }

.lb-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #6b7280;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lb-footer__bottom a {
    color: #6b7280;
}
.lb-footer__bottom a:hover { color: #aab0b8; }

.lb-footer__powered {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — TABLET (max 991px)
   ============================================ */
@media (max-width: 991px) {
    /* Header: stack logo + search + cart */
    .lb-header__inner {
        grid-template-columns: 1fr auto;
        gap: .5rem;
        padding: .5rem 0;
    }
    .lb-header__search {
        grid-column: 1 / -1;
        order: 3;
    }
    .lb-header__logo-img { height: 60px; }
    .lb-header__logo-text { font-size: .55rem; }

    /* Catnav: horizontal scroll, hide non-essential items */
    .lb-catnav__list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .lb-catnav__list::-webkit-scrollbar { display: none; }

    /* Catalogue dropdown: full-screen overlay on tablet */
    .lb-catalogue__panel {
        flex-direction: column;
        max-height: 80vh;
    }
    .lb-catalogue__sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--lb-gray-100);
        max-height: 200px;
        overflow-y: auto;
    }
    .lb-catalogue__sub {
        max-height: 60vh;
    }
    .lb-catalogue__sub-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Vehicle bar */
    .lb-vehicle-bar__label span { display: none; }

    /* Hero */
    .lb-hero__inner { grid-template-columns: 1fr; padding: 2rem 0; }
    .lb-hero__klondike { display: none; }

    /* Grids */
    .lb-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .lb-products-grid { grid-template-columns: repeat(3, 1fr); }
    .lb-info-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .lb-footer__main { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Topbar: compact */
    .lb-topbar__left .lb-topbar__shipping-text { display: none; }
    .lb-topbar__tagline { display: none; }
    .lb-topbar__inner { font-size: .7rem; }
    .lb-topbar__left { gap: .75rem; }
    .lb-topbar__right { gap: .75rem; }

    /* Header: logo left, cart right, search full row below */
    .lb-header__inner {
        grid-template-columns: 1fr auto;
        gap: .4rem;
        padding: .4rem 0;
    }
    .lb-header__logo-img { height: 50px; }
    .lb-header__logo-text { display: none; }
    .lb-header__search { grid-column: 1 / -1; order: 3; }
    .lb-header-action span:not(.lb-header-action__badge) { display: none !important; }

    /* Catnav: only show Catalogue trigger + scroll rest */
    .lb-catnav__item a {
        padding: .6rem .7rem;
        font-size: .78rem;
    }

    /* Catalogue: full mobile drawer */
    .lb-catalogue {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
    }
    .lb-catalogue__panel {
        flex-direction: column;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        border: none;
    }
    .lb-catalogue__sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--lb-gray-100);
        max-height: 45%;
        flex-shrink: 0;
    }
    .lb-catalogue__sub {
        flex: 1;
        overflow-y: auto;
        padding: 1rem;
    }
    .lb-catalogue__sub-cols {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .lb-catalogue__sub-heading { font-size: .88rem; }
    /* Close button for mobile catalogue */
    .lb-catalogue__backdrop {
        display: none;
    }
    .lb-catalogue--open .lb-catalogue__panel::before {
        content: '✕';
        position: absolute;
        top: .65rem;
        right: .85rem;
        z-index: 10;
        font-size: 1.2rem;
        color: var(--lb-gray-400);
        cursor: pointer;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--lb-gray-50);
        border-radius: var(--lb-radius);
    }

    /* Vehicle bar compact */
    .lb-vehicle-bar { padding: .4rem 0; }
    .lb-vehicle-bar__label { display: none; }
    .lb-vehicle-bar__inner { gap: 0; }

    /* Content grids */
    .lb-cat-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .lb-products-grid { grid-template-columns: 1fr; gap: .65rem; }
    .lb-info-strip__inner { grid-template-columns: 1fr; gap: .5rem; }
    .lb-info-item { justify-content: flex-start; }

    /* Product cards: horizontal on mobile */
    .lb-product-card {
        flex-direction: row;
    }
    .lb-product-card__img {
        width: 100px;
        min-height: 100px;
        aspect-ratio: auto;
        flex-shrink: 0;
    }
    .lb-product-card__body { padding: .75rem; }

    /* Hero */
    .lb-hero__title { font-size: 1.3rem; }
    .lb-hero__text { font-size: .85rem; }
    .lb-hero__badges { gap: .75rem; }
    .lb-hero__badge { font-size: .7rem; }

    /* Brands bar */
    .lb-brands__grid { gap: 1.5rem; }
    .lb-brands__item { font-size: .9rem; }
    .lb-brands__item img { height: 28px; }

    /* Footer */
    .lb-footer__main { grid-template-columns: 1fr; gap: 1.5rem; }
    .lb-footer__brand-logo { height: 60px; }
    .lb-footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 575px)
   ============================================ */
@media (max-width: 575px) {
    .lb-topbar { display: none; }

    .lb-header__logo-img { height: 44px; }
    .lb-header__inner { padding: .35rem 0; }

    .lb-cat-grid { grid-template-columns: 1fr 1fr; gap: .4rem; }
    .lb-cat-card { padding: .75rem; }
    .lb-cat-card__icon { width: 34px; height: 34px; font-size: .85rem; }
    .lb-cat-card__name { font-size: .78rem; }

    .lb-section { padding: 1.5rem 0; }
    .lb-section-title { font-size: 1.1rem; }

    .lb-hero__title { font-size: 1.15rem; }
    .lb-hero__badges { display: none; }

    .lb-info-strip { padding: .65rem 0; }
    .lb-info-item__icon { width: 32px; height: 32px; font-size: .8rem; }
    .lb-info-item__text strong { font-size: .75rem; }
    .lb-info-item__text span { font-size: .65rem; }
}


/* =============================================
   CATEGORY TREE FILTER — sidebar
   ============================================= */
.lb-tree-filter {
    border: 1px solid var(--lb-gray-200, #e5e5e7);
    border-radius: 6px;
    background: var(--lb-white);
    overflow: hidden;
}

.lb-tree-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--lb-gray-200, #e5e5e7);
    background: var(--lb-gray-50);
}

.lb-tree-filter__title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--lb-brand);
}

.lb-tree-filter__clear {
    color: var(--lb-brand-light);
    font-size: .85rem;
    line-height: 1;
    padding: .2rem .4rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.lb-tree-filter__clear:hover {
    background: var(--lb-red);
    color: var(--lb-white);
}

.lb-tree-filter__list,
.lb-tree-node__children {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lb-tree-filter__list {
    padding: .25rem 0;
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent;
}

.lb-tree-filter__list::-webkit-scrollbar {
    width: 6px;
}

.lb-tree-filter__list::-webkit-scrollbar-track {
    background: transparent;
}

.lb-tree-filter__list::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 3px;
}

.lb-tree-node {
    position: relative;
}

.lb-tree-node__row {
    display: flex;
    align-items: center;
    padding: .05rem 0;
    border-radius: 4px;
    transition: background .15s;
}
.lb-tree-node__row:hover {
    background: var(--lb-gray-50);
}

.lb-tree-node__toggle,
.lb-tree-node__spacer {
    width: 22px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
    color: #6c757d;
    font-size: .7rem;
    cursor: pointer;
    transition: transform .2s;
}
.lb-tree-node__toggle:hover {
    color: var(--lb-black);
}
.lb-tree-node--expanded > .lb-tree-node__row > .lb-tree-node__toggle i {
    transform: rotate(90deg);
}
.lb-tree-node__toggle i {
    transition: transform .2s;
}

.lb-tree-node__link {
    flex: 1;
    padding: .4rem .5rem .4rem 0;
    color: var(--lb-black);
    font-size: .88rem;
    text-decoration: none;
    line-height: 1.2;
    transition: color .15s;
}
.lb-tree-node__link:hover {
    color: var(--lb-red);
}

/* Active category */
.lb-tree-node--active > .lb-tree-node__row {
    background: var(--lb-red);
}
.lb-tree-node--active > .lb-tree-node__row .lb-tree-node__link,
.lb-tree-node--active > .lb-tree-node__row .lb-tree-node__toggle {
    color: var(--lb-white);
    font-weight: 600;
}
.lb-tree-node--active > .lb-tree-node__row .lb-tree-node__link:hover {
    color: var(--lb-white);
}

/* Nested children: indent + left guide line */
.lb-tree-node__children {
    margin-left: 11px;
    padding-left: 11px;
    border-left: 1px dashed var(--lb-gray-200, #e5e5e7);
}

/* Roots feel heavier */
.lb-tree-node[data-depth="0"] > .lb-tree-node__row .lb-tree-node__link {
    font-weight: 500;
}

/* Smooth expand/collapse animation */
.lb-tree-node__children[hidden] {
    display: none;
}

/* ============================================
   Set / Pack Pricing Badge
   ============================================ */
.lb-set-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lb-set-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFE9D6;
    border-radius: 999px;
    padding: 2px 12px 2px 2px;
}

.lb-set-badge__qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F26B1F;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.lb-set-badge__label {
    color: #F26B1F;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1;
}

.lb-set-per-unit {
    font-size: 0.9rem;
    white-space: nowrap;
}

.lb-set-per-unit__price {
    color: var(--lb-gray-800, #2C2C33);
    font-weight: 600;
}

.lb-set-per-unit__label {
    color: var(--lb-gray-400, #9E9EA7);
}

/* CTA contact band (cta-contact box) */
.lb-cta {
    background: var(--lb-navy);
    color: var(--lb-white);
    text-align: center;
    padding: 3rem 0;
}
.lb-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.lb-cta__text {
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.lb-cta__actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.lb-cta__btn {
    display: inline-flex;
    width: auto;
    padding: 0.65rem 1.75rem;
    font-size: 0.82rem;
    align-items: center;
    gap: 0.5rem;
}
.lb-cta__btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
}

/* Shared page hero (page-hero box) — used by team, blog, contact */
.lb-page-hero {
    background: var(--lb-brand);
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
}
.lb-page-hero--navy { background: var(--lb-navy); }
.lb-page-hero__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 .5rem;
}
.lb-page-hero__sub {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Text section (text-section box) */
.lb-text-section { padding: clamp(2rem, 4vw, 3rem) 0; }
.lb-text-section--bordered { border-bottom: 1px solid var(--lb-gray-100); }
.lb-text-section__text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: .95rem;
    color: var(--lb-gray-600);
    line-height: 1.75;
}
.lb-text-section--brand { background: var(--lb-brand); }
.lb-text-section--brand .lb-text-section__text {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    font-size: 1rem;
    max-width: 640px;
}

/* Values grid (values-grid box) */
.lb-values {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--lb-gray-50);
}
.lb-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.lb-value {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
}
.lb-value__icon {
    width: 36px;
    height: 36px;
    background: var(--kl-gold-dim, rgba(234, 138, 45, .15));
    border-radius: var(--lb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lb-gold);
    font-size: .85rem;
}
.lb-value__text {
    font-size: .85rem;
    color: var(--lb-gray-600);
    line-height: 1.5;
}

/* Contact section (contact-section box) */
.lb-contact { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.lb-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.lb-contact-info__heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.lb-contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.lb-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}
.lb-contact-info__icon {
    width: 40px;
    height: 40px;
    background: rgba(234, 138, 45, .1);
    border-radius: var(--lb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lb-gold);
    font-size: .95rem;
}
.lb-contact-info__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lb-gray-400);
    margin-bottom: .15rem;
}
.lb-contact-info__value {
    font-size: .9rem;
    color: var(--lb-gray-800);
    line-height: 1.5;
}
.lb-contact-info__value a { color: var(--lb-gray-800); }
.lb-contact-info__value a:hover { color: var(--lb-red); }
.lb-contact-map {
    width: 100%;
    height: 240px;
    border-radius: var(--lb-radius);
    border: 1px solid var(--lb-gray-100);
    overflow: hidden;
}
.lb-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.lb-contact-form__heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .35rem;
}
.lb-contact-form__sub {
    font-size: .85rem;
    color: var(--lb-gray-400);
    margin-bottom: 1.5rem;
}
.lb-contact-form {
    background: #fff;
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
    padding: 1.5rem;
}
.lb-contact-form .form-group { margin-bottom: 1rem; }
.lb-contact-form label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--lb-gray-800);
    margin-bottom: .35rem;
    display: block;
}
.lb-contact-form .form-control,
.lb-contact-form input[type="text"],
.lb-contact-form input[type="email"],
.lb-contact-form input[type="tel"],
.lb-contact-form select,
.lb-contact-form textarea {
    width: 100%;
    padding: .55rem .85rem;
    border: 1px solid var(--lb-gray-200);
    border-radius: var(--lb-radius);
    font-family: var(--lb-font);
    font-size: .88rem;
    color: var(--lb-gray-800);
    transition: border-color var(--lb-transition);
}
.lb-contact-form .form-control:focus,
.lb-contact-form input:focus,
.lb-contact-form select:focus,
.lb-contact-form textarea:focus {
    outline: none;
    border-color: var(--lb-red);
    box-shadow: 0 0 0 3px rgba(203, 24, 54, .08);
}
.lb-contact-form textarea { min-height: 120px; resize: vertical; }
.lb-contact-form button[type="submit"],
.lb-contact-form .btn-primary {
    background: var(--lb-red) !important;
    border-color: var(--lb-red) !important;
    color: #fff;
    font-family: var(--lb-font);
    font-weight: 600;
    font-size: .85rem;
    padding: .6rem 1.5rem;
    border-radius: var(--lb-radius);
    cursor: pointer;
    transition: background var(--lb-transition);
}
.lb-contact-form button[type="submit"]:hover,
.lb-contact-form .btn-primary:hover {
    background: var(--lb-red-hover) !important;
}
@media (max-width: 991px) {
    .lb-contact__grid { grid-template-columns: 1fr; }
}

/* Blog listing (blog-listing box) */
.lb-blog { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.lb-blog__layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.lb-blog__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.lb-blog-card {
    background: #fff;
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
    overflow: hidden;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}
.lb-blog-card:hover { box-shadow: var(--lb-shadow-md); transform: translateY(-2px); }
.lb-blog-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--lb-gray-50); }
.lb-blog-card__img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--lb-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-gray-200);
    font-size: 2rem;
}
.lb-blog-card__body { padding: 1.15rem; flex: 1; display: flex; flex-direction: column; }
.lb-blog-card__date { font-size: .72rem; color: var(--lb-gray-400); margin-bottom: .35rem; }
.lb-blog-card__title { font-size: .95rem; font-weight: 700; color: var(--lb-gray-800); margin-bottom: .5rem; line-height: 1.35; }
.lb-blog-card__title a { color: inherit; text-decoration: none; }
.lb-blog-card__title a:hover { color: var(--lb-red); }
.lb-blog-card__excerpt { font-size: .82rem; color: var(--lb-gray-600); line-height: 1.6; flex: 1; }
.lb-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lb-red);
    margin-top: .75rem;
}
.lb-blog-card__link:hover { gap: .55rem; }
.lb-blog-sidebar__heading {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--lb-gray-400);
    margin-bottom: .75rem;
}
.lb-blog-sidebar__cats { list-style: none; padding: 0; margin: 0; }
.lb-blog-sidebar__cats li { margin-bottom: .35rem; }
.lb-blog-sidebar__cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem .65rem;
    font-size: .85rem;
    color: var(--lb-gray-600);
    border-radius: var(--lb-radius);
    transition: all var(--lb-transition);
}
.lb-blog-sidebar__cats a:hover,
.lb-blog-sidebar__cats a.active { background: var(--lb-gray-50); color: var(--lb-red); }
.lb-blog-sidebar__count { font-size: .7rem; font-family: var(--lb-mono); color: var(--lb-gray-400); }
.lb-blog__pagination { margin-top: 2rem; }
.lb-blog__pagination .pagination { justify-content: center; }
.lb-blog__pagination .page-link { color: var(--lb-gray-600); border-color: var(--lb-gray-200); font-size: .85rem; }
.lb-blog__pagination .page-link:hover { background: var(--lb-gray-50); color: var(--lb-red); }
.lb-blog__pagination .page-item.active .page-link { background: var(--lb-red); border-color: var(--lb-red); }
.lb-blog__empty { text-align: center; padding: 3rem 0; color: var(--lb-gray-400); }
@media (max-width: 991px) {
    .lb-blog__layout { grid-template-columns: 1fr; }
    .lb-blog-sidebar { order: -1; }
    .lb-blog-sidebar__cats { display: flex; flex-wrap: wrap; gap: .35rem; }
    .lb-blog-sidebar__cats li { margin: 0; }
    .lb-blog-sidebar__cats a { padding: .35rem .6rem; background: var(--lb-gray-50); border-radius: 20px; font-size: .8rem; }
}
@media (max-width: 575px) {
    .lb-blog__grid { grid-template-columns: 1fr; }
}

/* ===== Klondike landing (klondike page boxes) — migrated from page styles ===== */
/* =============================================
   KLONDIKE LANDING — Technical Catalogue
   ============================================= */
:root {
    --kl-navy: #0E1820;
    --kl-navy-mid: #162636;
    --kl-navy-light: #1e3448;
    --kl-gold: #EA8A2D;
    --kl-gold-dim: rgba(234,138,45,.15);
    --kl-gold-glow: rgba(234,138,45,.08);
    --kl-off: #F4F5F7;
    --kl-border: rgba(255,255,255,.07);
    --kl-text-muted: #8A9AAC;
}

/* — HERO — */
.kl-hero {
    background: var(--kl-navy);
    position: relative;
    overflow: hidden;
}
.kl-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, var(--kl-gold-glow), transparent 70%);
    pointer-events: none;
}
.kl-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
    z-index: 1;
}
.kl-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.kl-hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
.kl-hero__logo {
    width: clamp(220px, 80%, 340px);
    filter: drop-shadow(0 0 60px rgba(234,138,45,.15));
}
.kl-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--kl-gold-dim);
    border: 1px solid rgba(234,138,45,.25);
    color: var(--kl-gold);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .3rem .75rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
    width: fit-content;
}
.kl-hero__title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 .75rem;
}
.kl-hero__title em {
    font-style: normal;
    color: var(--kl-gold);
}
.kl-hero__lead {
    font-size: .95rem;
    color: var(--kl-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 480px;
}
.kl-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--kl-gold);
    color: var(--kl-navy);
    font-weight: 700;
    font-size: .82rem;
    padding: .65rem 1.4rem;
    border: none;
    border-radius: var(--lb-radius);
    text-decoration: none;
    transition: all var(--lb-transition);
}
.kl-btn:hover { background: var(--lb-gold-light); color: var(--kl-navy); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(234,138,45,.25); }
.kl-btn--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
}
.kl-btn--outline:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); color: #fff; }

/* — STATS STRIP — */
.kl-stats {
    background: var(--kl-navy-mid);
    border-top: 1px solid var(--kl-border);
    border-bottom: 1px solid var(--kl-border);
}
.kl-stats__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
}
.kl-stats__item {
    padding: 1rem .5rem;
    border-right: 1px solid var(--kl-border);
}
.kl-stats__item:last-child { border-right: none; }
.kl-stats__num { font-size: 1.3rem; font-weight: 800; color: var(--kl-gold); line-height: 1; }
.kl-stats__label { font-size: .7rem; color: var(--kl-text-muted); margin-top: .25rem; letter-spacing: .02em; }

/* — SECTION SCAFFOLDING — */
.kl-sec { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.kl-sec--dark { background: var(--kl-navy); color: #fff; }
.kl-sec--alt { background: var(--kl-off); }
.kl-sec--white { background: #fff; }
.kl-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--kl-gold);
    margin-bottom: .4rem;
}
.kl-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    margin: 0 0 .4rem;
}
.kl-sub {
    font-size: .9rem;
    color: var(--lb-gray-400);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 2rem;
}
.kl-sec--dark .kl-sub { color: var(--kl-text-muted); }

/* — STORY — */
.kl-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.kl-story__text p {
    font-size: .9rem;
    color: var(--lb-gray-600);
    line-height: 1.75;
    margin: 0 0 .75rem;
}
.kl-story__text p:last-child { margin-bottom: 0; }
.kl-story__quote {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--kl-gold);
    border-left: 3px solid var(--kl-gold);
    padding-left: 1rem;
    margin: 1.25rem 0;
    line-height: 1.35;
}
.kl-story__img {
    width: 100%;
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow-lg);
}

/* — PRODUCT GRID — */
.kl-pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.kl-pcard {
    background: #fff;
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
    padding: 1.25rem;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.kl-pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--kl-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.kl-pcard:hover::before { transform: scaleX(1); }
.kl-pcard:hover { box-shadow: var(--lb-shadow-md); transform: translateY(-2px); }
.kl-pcard__head {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .75rem;
}
.kl-pcard__icon {
    width: 36px;
    height: 36px;
    background: var(--kl-gold-dim);
    border-radius: var(--lb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--kl-gold);
    font-size: .9rem;
}
.kl-pcard__title { font-size: .88rem; font-weight: 700; line-height: 1.25; }
.kl-pcard__specs { font-size: .78rem; color: var(--lb-gray-400); line-height: 1.55; }
.kl-pcard__tag {
    display: inline-block;
    margin-top: .5rem;
    font-size: .68rem;
    font-weight: 700;
    color: var(--kl-gold);
    background: var(--kl-gold-dim);
    padding: .2rem .5rem;
    border-radius: 2px;
}

/* — ADVANTAGES — */
.kl-advs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.kl-adv {
    padding: 1.25rem;
    border: 1px solid var(--kl-border);
    border-radius: var(--lb-radius);
    transition: border-color .25s;
}
.kl-adv:hover { border-color: rgba(234,138,45,.3); }
.kl-adv__n { font-size: .65rem; font-weight: 800; color: var(--kl-gold); letter-spacing: .1em; margin-bottom: .6rem; }
.kl-adv__t { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.kl-adv__d { font-size: .8rem; color: var(--kl-text-muted); line-height: 1.6; }

/* — APPROVALS — */
.kl-approvals { display: flex; flex-wrap: wrap; gap: .4rem; }
.kl-appr {
    background: var(--lb-gray-50);
    border: 1px solid var(--lb-gray-100);
    padding: .4rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--lb-gray-600);
    border-radius: 2px;
    transition: all var(--lb-transition);
}
.kl-appr:hover { border-color: var(--kl-gold); color: var(--kl-gold); }

/* — FEATURED — */
.kl-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.kl-feat {
    background: #fff;
    border: 1px solid var(--lb-gray-100);
    border-radius: var(--lb-radius);
    overflow: hidden;
    transition: box-shadow .25s;
}
.kl-feat:hover { box-shadow: var(--lb-shadow-md); }
.kl-feat__top {
    background: var(--kl-navy);
    padding: 1rem 1.25rem;
    border-bottom: 3px solid var(--kl-gold);
}
.kl-feat__type { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--kl-gold); }
.kl-feat__name { font-size: .95rem; font-weight: 700; color: #fff; margin-top: .25rem; }
.kl-feat__body { padding: 1.25rem; font-size: .82rem; color: var(--lb-gray-600); line-height: 1.65; }

/* — EZE-KEG — */
.kl-eze {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.kl-eze__badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.kl-eze__badge {
    background: var(--kl-gold-dim);
    color: var(--kl-gold);
    font-size: .7rem;
    font-weight: 700;
    padding: .3rem .6rem;
    border-radius: 2px;
}
.kl-eze__list { list-style: none; padding: 0; margin: 0; }
.kl-eze__list li {
    padding: .45rem 0;
    font-size: .85rem;
    color: var(--lb-gray-600);
    border-bottom: 1px solid var(--lb-gray-100);
    display: flex;
    gap: .5rem;
    align-items: center;
}
.kl-eze__list li::before { content: ''; width: 6px; height: 2px; background: var(--kl-gold); flex-shrink: 0; }
.kl-eze__list li:last-child { border-bottom: none; }

/* — TABLE — */
.kl-tw { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--lb-gray-100); border-radius: var(--lb-radius); }
.kl-tbl { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .82rem; }
.kl-tbl thead th {
    background: var(--kl-navy);
    color: var(--kl-gold);
    font-weight: 700;
    padding: .7rem .85rem;
    text-align: left;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    position: sticky;
    top: 0;
}
.kl-tbl tbody td {
    padding: .55rem .85rem;
    border-bottom: 1px solid var(--lb-gray-100);
    color: var(--lb-gray-600);
}
.kl-tbl tbody tr:last-child td { border-bottom: none; }
.kl-tbl tbody tr:hover td { background: var(--lb-gray-50); }
.kl-tbl tbody td:first-child { font-weight: 600; color: var(--lb-gray-800); }

/* — FAQ — */
.kl-faq { max-width: 740px; }
.kl-faq__item { border-bottom: 1px solid var(--lb-gray-100); }
.kl-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: var(--lb-gray-800);
    transition: color var(--lb-transition);
}
.kl-faq__q:hover { color: var(--kl-gold); }
.kl-faq__q i { font-size: .65rem; color: var(--lb-gray-400); transition: transform .2s; flex-shrink: 0; }
.kl-faq__q.active i { transform: rotate(180deg); color: var(--kl-gold); }
.kl-faq__a { display: none; padding: 0 0 .85rem; font-size: .85rem; color: var(--lb-gray-600); line-height: 1.7; }
.kl-faq__a.active { display: block; }

/* — CTA — */
.kl-cta {
    background: var(--kl-navy);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.kl-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, var(--kl-gold-glow), transparent 60%);
    pointer-events: none;
}
.kl-cta__inner { position: relative; z-index: 1; }
.kl-cta__title { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.kl-cta__text { color: var(--kl-text-muted); margin-bottom: 1.5rem; max-width: 460px; margin-left: auto; margin-right: auto; font-size: .9rem; }

/* — Products intro with image — */
.kl-products-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}
.kl-products-intro__img {
    width: 220px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.1));
}


/* — Why section background — */
.kl-why-section { position: relative; overflow: hidden; }
.kl-why-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: .15;
    mask-image: linear-gradient(to left, rgba(0,0,0,.6), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.6), transparent);
}

/* — RESPONSIVE — */
@media (max-width: 991px) {
    .kl-hero__grid { grid-template-columns: 1fr; }
    .kl-hero__right { display: none; }
    .kl-stats__inner { grid-template-columns: repeat(3, 1fr); }
    .kl-stats__item:nth-child(4), .kl-stats__item:nth-child(5) { border-top: 1px solid var(--kl-border); }
    .kl-story { grid-template-columns: 1fr; }
    .kl-story__img { order: -1; }
    .kl-pgrid { grid-template-columns: repeat(2, 1fr); }
    .kl-advs { grid-template-columns: repeat(2, 1fr); }
    .kl-feats { grid-template-columns: 1fr; }
    .kl-eze { grid-template-columns: 1fr; }
    .kl-products-intro__img { display: none; }
    .kl-why-bg { width: 100%; opacity: .08; }
}
@media (max-width: 575px) {
    .kl-stats__inner { grid-template-columns: repeat(2, 1fr); }
    .kl-pgrid { grid-template-columns: 1fr; }
    .kl-advs { grid-template-columns: 1fr; }
}
