:root {
    --brand: #c9151b;
    --brand-dark: #8f1116;
    --ink: #14171c;
    --muted: #667085;
    --line: #dde3ea;
    --surface: #ffffff;
    --soft: #f4f6f8;
    --charcoal: #111419;
    --green: #13795b;
    --amber: #f2b705;
}

html {
    font-size: 15px;
}

body {
    background: #f3f5f7;
    color: var(--ink);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

a {
    color: var(--brand);
}

.btn,
.form-control,
.form-select,
.card,
.alert {
    border-radius: 8px;
}

.btn-danger {
    background: var(--brand);
    border-color: var(--brand);
}

.btn-danger:hover,
.btn-danger:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.btn-outline-danger {
    border-color: var(--brand);
    color: var(--brand);
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
    background: var(--brand);
    border-color: var(--brand);
}

.site-header {
    position: relative;
    z-index: 60;
}

.topbar {
    background: var(--charcoal);
    color: #f4f6f8;
    font-size: 0.86rem;
    padding: 0.5rem 0;
}

.topbar-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    justify-content: space-between;
}

.topbar a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.topbar-contact {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.public-navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e7eaf0;
    box-shadow: 0 14px 32px rgba(17, 20, 25, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-lockup {
    align-items: center;
    color: #111111;
    display: inline-flex;
    gap: 0.75rem;
    min-width: 0;
    text-decoration: none;
}

.brand-copy {
    display: block;
    line-height: 1.05;
    min-width: 0;
}

.brand-copy strong {
    display: block;
    font-size: 1.03rem;
    font-weight: 900;
    max-width: 280px;
    overflow-wrap: anywhere;
}

.brand-copy small {
    color: var(--muted);
    display: block;
    font-size: 0.73rem;
    font-weight: 800;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.brand-mark {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.brand-logo {
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    height: 52px;
    object-fit: contain;
    padding: 0.25rem;
    width: 86px;
}

.admin-brand .brand-logo,
.footer-brand .brand-logo {
    height: 52px;
    width: 82px;
}

.navbar-nav {
    gap: 0.15rem;
}

.navbar-nav .nav-link {
    color: #252a32;
    font-weight: 800;
    padding-inline: 0.75rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--brand);
}

.nav-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-cart {
    min-width: 70px;
}

.icon-action {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 900;
    gap: 0.45rem;
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
}

.icon-action img {
    height: 20px;
    width: 20px;
}

.icon-action-light {
    border: 1px solid #d7dce2;
    color: #111419;
}

.icon-action-danger {
    background: var(--brand);
    color: #ffffff;
}

.hero {
    background-position: center;
    background-size: cover;
    color: #ffffff;
    min-height: 570px;
    overflow: hidden;
    padding: 6.25rem 0 4.75rem;
    position: relative;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.76) 48%, rgba(8, 10, 13, 0.24) 100%),
        linear-gradient(180deg, rgba(201, 21, 27, 0.18), rgba(17, 20, 25, 0.20));
    content: "";
    inset: 0;
    position: absolute;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    justify-content: space-between;
}

.hero-copy {
    max-width: 780px;
}

.hero-kicker {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    color: #ffffff;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 1rem;
    padding: 0.45rem 0.72rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.03;
    max-width: 790px;
}

.hero p {
    color: #eef1f5;
    font-size: 1.18rem;
    line-height: 1.7;
    max-width: 660px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.hero-stats {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1rem;
}

.hero-stats strong {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
}

.hero-stats span {
    color: #dfe5ea;
    display: block;
    font-size: 0.86rem;
    margin-top: 0.35rem;
}

.hero-search {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(17, 20, 25, 0.12);
    margin-top: -3.2rem;
    padding: 1.15rem;
    position: relative;
    z-index: 2;
}

.search-heading {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.search-heading h2 {
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0.1rem 0 0;
}

.section-band {
    padding: 3rem 0;
}

.product-highlight-band {
    background: #ffffff;
    border-block: 1px solid #e6ebf1;
}

.section-title {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.section-title h2 {
    font-size: 1.9rem;
    font-weight: 900;
    margin: 0;
}

.section-title a,
.search-heading a {
    font-weight: 800;
    text-decoration: none;
}

.category-tile {
    background: #ffffff;
    border: 1px solid #e0e5eb;
    border-radius: 8px;
    color: var(--ink);
    min-height: 116px;
    padding: 1rem;
    position: relative;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-tile::after {
    background: var(--amber);
    bottom: 0.85rem;
    content: "";
    height: 4px;
    left: 1rem;
    position: absolute;
    width: 44px;
}

.category-tile strong {
    display: block;
    font-size: 1.02rem;
}

.category-tile span {
    color: var(--muted);
    display: block;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    padding-bottom: 1rem;
}

.category-tile:hover,
.product-card:hover {
    border-color: var(--brand);
    box-shadow: 0 18px 44px rgba(17, 20, 25, 0.12);
    transform: translateY(-3px);
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card img {
    aspect-ratio: 4 / 3;
    background: #eef2f6;
    object-fit: cover;
    width: 100%;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.62rem;
    padding: 1rem;
}

.price {
    color: var(--brand-dark);
    font-size: 1.25rem;
    font-weight: 900;
}

.old-price {
    color: #6c757d;
    text-decoration: line-through;
}

.badge-soft {
    background: #eef2f6;
    color: #252525;
    font-weight: 800;
}

.filter-panel,
.form-panel,
.table-panel,
.metric-tile {
    background: #ffffff;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    padding: 1rem;
}

.metric-tile {
    border-left: 4px solid var(--brand);
}

.metric-tile strong {
    display: block;
    font-size: 1.6rem;
}

.field-guide {
    background: #f7f9fb;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    padding: 1rem;
}

.field-guide summary {
    cursor: pointer;
    font-weight: 900;
}

.field-guide-grid {
    display: grid;
    gap: 0.75rem 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.field-guide-grid p {
    background: #ffffff;
    border: 1px solid #e2e7ee;
    border-radius: 8px;
    margin: 0;
    padding: 0.75rem;
}

.site-footer {
    background: var(--charcoal);
    color: #d8d8d8;
    padding: 2.6rem 0;
}

.site-footer h2 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.site-footer a {
    color: #ffffff;
    display: block;
    margin-bottom: 0.4rem;
    text-decoration: none;
}

.footer-brand {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand .brand-copy small {
    color: #c7ced8;
}

.floating-contact {
    bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    position: fixed;
    right: 1rem;
    z-index: 40;
}

.floating-contact a {
    align-items: center;
    background: var(--brand);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 800;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    text-decoration: none;
}

.floating-contact img {
    height: 22px;
    width: 22px;
}

.service-strip {
    background: var(--charcoal);
    color: #ffffff;
    padding: 2.5rem 0;
}

.service-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid div {
    background: #1b2028;
    border-top: 3px solid var(--green);
    padding: 1.2rem;
}

.service-grid strong,
.service-grid span {
    display: block;
}

.service-grid span {
    color: #b8c0cc;
    margin-top: 0.35rem;
}

.product-thumb {
    background: #f1f3f5;
    border-radius: 8px;
    height: 52px;
    object-fit: cover;
    width: 72px;
}

.admin-body {
    background: #eef0f2;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #151515;
    color: #ffffff;
    padding: 1rem;
}

.admin-brand {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    font-weight: 900;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    text-decoration: none;
}

.admin-sidebar nav {
    display: grid;
    gap: 0.2rem;
}

.admin-sidebar nav a {
    border-radius: 8px;
    color: #f1f1f1;
    font-weight: 800;
    padding: 0.65rem 0.75rem;
    text-decoration: none;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a:focus {
    background: #2a2a2a;
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #dde1e5;
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.admin-topbar h1 {
    font-size: 1.45rem;
    font-weight: 900;
    margin: 0;
}

.eyebrow {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-user {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.admin-content {
    padding: 1.5rem;
}

.data-table {
    background: #ffffff;
    border-collapse: collapse;
    width: 100%;
}

.data-table th,
.data-table td {
    border-bottom: 1px solid #e6e8eb;
    padding: 0.75rem;
    vertical-align: middle;
}

.data-table th {
    background: #f7f8fa;
    color: #475467;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.admin-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .nav-actions {
        margin-top: 0.75rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 520px;
        padding: 4.5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-stats,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-heading,
    .section-title {
        align-items: start;
        flex-direction: column;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .brand-copy strong {
        max-width: 190px;
    }

    .topbar-address {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .hero {
        min-height: 470px;
        padding-top: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        align-items: start;
        flex-direction: column;
        gap: 1rem;
    }

    .admin-sidebar nav,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .field-guide-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        left: 1rem;
        right: 1rem;
    }

    .floating-contact a {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}

/* 2026 public experience */
:root {
    --public-ink: #111317;
    --public-paper: #f4f1eb;
    --public-red: #e1242b;
    --public-red-dark: #b4141a;
    --public-lime: #d8ff47;
    --public-silver: #d9dde3;
}

.public-body {
    background: var(--public-paper);
    color: var(--public-ink);
    font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

.public-body main {
    min-height: 55vh;
}

.utility-bar {
    background: #0c0e11;
    color: #dfe2e7;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .02em;
}

.utility-inner,
.utility-links {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.utility-inner {
    min-height: 38px;
}

.utility-links a {
    color: #fff;
    text-decoration: none;
}

.utility-links a:hover {
    color: var(--public-lime);
}

.status-dot {
    background: #62e37b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(98, 227, 123, .12);
    display: inline-block;
    height: 7px;
    margin-right: .5rem;
    width: 7px;
}

.public-body .public-navbar {
    background: rgba(255, 255, 255, .97);
    border: 0;
    box-shadow: 0 10px 40px rgba(7, 10, 14, .07);
    min-height: 78px;
}

.public-body .brand-logo {
    border: 0;
    height: 48px;
    padding: 0;
    width: 76px;
}

.public-body .brand-copy strong {
    font-size: .98rem;
    letter-spacing: -.02em;
}

.public-body .brand-copy small {
    color: #777d86;
    font-size: .61rem;
    letter-spacing: .08em;
}

.public-body .navbar-nav .nav-link {
    color: #2a2d32;
    font-size: .84rem;
    font-weight: 800;
    padding: .75rem .8rem;
}

.nav-icon-button {
    align-items: center;
    border: 1px solid #d9dde3;
    border-radius: 99px;
    color: #15171a;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    min-width: 36px;
    padding: 0 .7rem;
    text-decoration: none;
}

.nav-icon-button:hover {
    border-color: #111317;
    color: #111317;
}

.btn-ink {
    background: #111317;
    border-color: #111317;
    border-radius: 99px;
    color: #fff;
    font-weight: 800;
    padding: .55rem 1rem;
}

.btn-ink:hover {
    background: var(--public-red);
    border-color: var(--public-red);
    color: #fff;
}

.flash-wrap {
    left: 50%;
    padding-top: 1rem;
    position: absolute;
    transform: translateX(-50%);
    z-index: 45;
}

.flash-wrap .alert {
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

.home-hero {
    background-color: #111317;
    isolation: isolate;
    min-height: 710px;
    overflow: hidden;
    position: relative;
}

.home-hero::before {
    background-image:
        linear-gradient(90deg, rgba(8, 10, 13, .98) 0%, rgba(8, 10, 13, .9) 32%, rgba(8, 10, 13, .3) 66%, rgba(8, 10, 13, .08) 100%),
        var(--hero-image);
    background-position: center;
    background-size: cover;
    content: "";
    inset: 0;
    position: absolute;
    z-index: -2;
}

.home-hero::after {
    background: linear-gradient(180deg, transparent 65%, rgba(8, 10, 13, .8));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.home-hero-grid {
    align-items: center;
    display: grid;
    gap: 5rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, .7fr);
    min-height: 710px;
    padding-block: 5rem;
}

.home-hero-copy {
    color: #fff;
    max-width: 680px;
}

.hero-label {
    align-items: center;
    color: var(--public-lime);
    display: inline-flex;
    font-size: .74rem;
    font-weight: 900;
    gap: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-label i {
    background: var(--public-lime);
    height: 2px;
    width: 30px;
}

.home-hero h1 {
    font-size: clamp(4rem, 6.5vw, 7rem);
    font-weight: 950;
    letter-spacing: -.075em;
    line-height: .82;
    margin: 1.6rem 0 2rem;
}

.home-hero h1 em,
.editorial-heading h2 em,
.experience-copy h2 em {
    color: var(--public-red);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.home-hero-copy > p {
    color: #d4d8de;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 610px;
}

.public-body .hero-actions {
    margin-top: 2.2rem;
}

.public-body .hero-actions .btn {
    border-radius: 99px;
    font-size: .9rem;
    font-weight: 900;
    padding: .9rem 1.4rem;
}

.public-body .btn-danger {
    background: var(--public-red);
    border-color: var(--public-red);
}

.public-body .btn-danger:hover {
    background: var(--public-red-dark);
    border-color: var(--public-red-dark);
}

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, .38);
    color: #fff;
}

.btn-ghost-light:hover {
    background: #fff;
    color: #111317;
}

.hero-proof {
    display: flex;
    gap: 2.7rem;
    margin-top: 3.5rem;
}

.hero-proof div {
    border-left: 1px solid rgba(255, 255, 255, .24);
    padding-left: 1rem;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 1.08rem;
    font-weight: 900;
}

.hero-proof span {
    color: #aeb4be;
    font-size: .72rem;
    margin-top: .25rem;
}

.part-finder-card {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 32px 100px rgba(0, 0, 0, .28);
    color: #111317;
    padding: 2rem;
}

.finder-card-head {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.finder-step {
    align-items: center;
    background: #111317;
    color: #fff;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.part-finder-card .eyebrow {
    color: var(--public-red);
}

.part-finder-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.035em;
    margin: .25rem 0 0;
}

.part-finder-card .form-label {
    font-size: .73rem;
    font-weight: 800;
}

.finder-search {
    border: 1px solid #cdd2da;
    display: grid;
    grid-template-columns: 1fr 48px;
}

.finder-search:focus-within {
    border-color: #111317;
    box-shadow: 0 0 0 3px rgba(17, 19, 23, .08);
}

.finder-search input {
    background: transparent;
    border: 0;
    min-width: 0;
    outline: 0;
    padding: .9rem 1rem;
}

.finder-search button {
    background: #111317;
    border: 0;
    color: #fff;
    font-size: 1.2rem;
}

.finder-divider {
    align-items: center;
    color: #858b94;
    display: flex;
    font-size: .69rem;
    gap: .8rem;
    margin: 1.25rem 0;
    text-transform: uppercase;
}

.finder-divider::before,
.finder-divider::after {
    background: #e0e3e7;
    content: "";
    flex: 1;
    height: 1px;
}

.finder-option {
    align-items: center;
    border: 1px solid #dadddf;
    color: #111317;
    display: grid;
    gap: .8rem;
    grid-template-columns: 48px 1fr auto;
    margin-top: .7rem;
    padding: .85rem;
    text-decoration: none;
    transition: .18s ease;
}

.finder-option:hover {
    border-color: #111317;
    color: #111317;
    transform: translateX(3px);
}

.finder-option-primary {
    background: #eefac7;
    border-color: #cadc83;
}

.finder-icon {
    align-items: center;
    background: #fff;
    border: 1px solid #dadddf;
    display: inline-flex;
    font-size: .66rem;
    font-weight: 950;
    height: 44px;
    justify-content: center;
    letter-spacing: .05em;
    width: 44px;
}

.finder-option strong,
.finder-option small {
    display: block;
}

.finder-option strong {
    font-size: .86rem;
}

.finder-option small {
    color: #737982;
    font-size: .69rem;
    margin-top: .18rem;
}

.finder-note {
    color: #868b92;
    font-size: .67rem;
    margin: 1rem 0 0;
    text-align: center;
}

.trust-ribbon {
    background: #fff;
    border-bottom: 1px solid #e2e4e7;
}

.trust-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-ribbon-grid > div {
    align-items: center;
    border-right: 1px solid #e2e4e7;
    display: flex;
    gap: .8rem;
    min-height: 104px;
    padding: 1rem 1.3rem;
}

.trust-ribbon-grid > div:first-child {
    border-left: 1px solid #e2e4e7;
}

.trust-ribbon-grid > div > span {
    align-items: center;
    background: #f0f1f2;
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 1rem;
    height: 38px;
    justify-content: center;
}

.trust-ribbon p,
.trust-ribbon strong,
.trust-ribbon small {
    display: block;
    margin: 0;
}

.trust-ribbon strong {
    font-size: .79rem;
}

.trust-ribbon small {
    color: #7c828b;
    font-size: .67rem;
    margin-top: .18rem;
}

.home-section {
    padding: 7rem 0;
}

.editorial-heading {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-index {
    color: #737982;
    display: block;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 1rem;
}

.editorial-heading h2,
.experience-copy h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .9;
    margin: 0;
}

.text-link {
    border-bottom: 1px solid #111317;
    color: #111317;
    font-size: .8rem;
    font-weight: 900;
    padding-bottom: .4rem;
    text-decoration: none;
}

.text-link:hover {
    color: var(--public-red);
}

.category-grid-modern {
    border-left: 1px solid #cfd2d5;
    border-top: 1px solid #cfd2d5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.category-card-modern {
    background: transparent;
    border-bottom: 1px solid #cfd2d5;
    border-right: 1px solid #cfd2d5;
    color: #111317;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    padding: 1.4rem;
    position: relative;
    text-decoration: none;
    transition: .2s ease;
}

.category-card-modern:hover {
    background: #111317;
    color: #fff;
    transform: translateY(-4px);
    z-index: 2;
}

.category-number {
    color: #8a8f96;
    font-size: .67rem;
    font-weight: 900;
}

.category-card-modern strong,
.category-card-modern small {
    display: block;
}

.category-card-modern strong {
    font-size: 1.2rem;
    letter-spacing: -.025em;
}

.category-card-modern small {
    color: #858b93;
    font-size: .72rem;
    margin-top: .45rem;
}

.category-card-modern b {
    font-size: 1.2rem;
    position: absolute;
    right: 1.4rem;
    top: 1.2rem;
}

.featured-showcase {
    background: #fff;
}

.compact-heading h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.product-grid-modern {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card-modern {
    background: #fff;
    border: 1px solid #e0e2e5;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card-modern:hover {
    box-shadow: 0 24px 60px rgba(9, 13, 18, .12);
    transform: translateY(-5px);
}

.product-media {
    background: #f1f2f3;
    display: block;
    overflow: hidden;
    position: relative;
}

.product-media img {
    aspect-ratio: 1 / .78;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.product-card-modern:hover .product-media img {
    transform: scale(1.035);
}

.product-tag,
.discount-tag {
    background: #fff;
    color: #111317;
    font-size: .62rem;
    font-weight: 900;
    left: .8rem;
    padding: .38rem .55rem;
    position: absolute;
    text-transform: uppercase;
    top: .8rem;
}

.discount-tag {
    background: var(--public-red);
    color: #fff;
    left: auto;
    right: .8rem;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.1rem;
}

.product-code {
    color: #838890;
    font-size: .64rem;
    font-weight: 700;
}

.product-info h3 {
    font-size: .94rem;
    font-weight: 850;
    line-height: 1.35;
    margin: .55rem 0 1.4rem;
}

.product-info h3 a {
    color: #111317;
    text-decoration: none;
}

.product-buy-row {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.product-buy-row strong,
.product-buy-row small {
    display: block;
}

.product-buy-row strong {
    color: #111317;
    font-size: 1.05rem;
}

.product-buy-row > a {
    align-items: center;
    background: #111317;
    color: #fff;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    text-decoration: none;
    width: 36px;
}

.experience-section {
    background: #111317;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.experience-section::after {
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
    height: 700px;
    position: absolute;
    right: -250px;
    top: -310px;
    width: 700px;
}

.experience-grid {
    display: grid;
    gap: 7rem;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
}

.section-index-light {
    color: var(--public-lime);
}

.experience-copy p {
    color: #bfc4cc;
    line-height: 1.75;
    margin: 2rem 0;
    max-width: 580px;
}

.experience-copy .btn {
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 900;
    padding: .85rem 1.35rem;
}

.process-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.process-list > div {
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 48px 1fr;
    padding: 1.7rem 0;
}

.process-list > div > span {
    color: var(--public-lime);
    font-size: .72rem;
    font-weight: 900;
}

.process-list p,
.process-list strong,
.process-list small {
    display: block;
    margin: 0;
}

.process-list strong {
    font-size: 1.05rem;
}

.process-list small {
    color: #aeb4bd;
    margin-top: .4rem;
}

.customer-action-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.customer-action-grid > a {
    background: #fff;
    border: 1px solid #d9dcdf;
    color: #111317;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: auto 1fr auto;
    min-height: 190px;
    padding: 1.5rem;
    text-decoration: none;
    transition: .2s ease;
}

.customer-action-grid > a:hover {
    background: var(--public-red);
    border-color: var(--public-red);
    color: #fff;
    transform: translateY(-5px);
}

.customer-action-grid > a > span {
    color: #888e96;
    font-size: .68rem;
    font-weight: 900;
}

.customer-action-grid h3 {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.customer-action-grid p {
    color: #737983;
    font-size: .8rem;
    line-height: 1.6;
}

.customer-action-grid > a:hover p,
.customer-action-grid > a:hover > span {
    color: rgba(255, 255, 255, .78);
}

.modern-footer {
    background: #090b0e;
    padding: 0;
}

.footer-lead {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
}

.footer-lead h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    letter-spacing: -.045em;
    margin: .4rem 0 0;
    max-width: 700px;
}

.eyebrow-light {
    color: var(--public-lime);
}

.footer-grid {
    padding: 4rem 0;
}

.modern-footer h3 {
    color: #777e88;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.modern-footer p {
    color: #9da3ac;
    line-height: 1.7;
}

.modern-footer .footer-meta {
    color: #666d77;
    font-size: .76rem;
}

.modern-footer .footer-contact {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .7rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #6f7680;
    display: flex;
    font-size: .68rem;
    justify-content: space-between;
    padding: 1.4rem 0;
}

/* Customer and authentication pages */
.page-hero-slim {
    background: #111317;
    color: #fff;
    overflow: hidden;
    padding: 4.5rem 0;
    position: relative;
}

.page-hero-slim::after {
    background: var(--public-red);
    content: "";
    height: 200px;
    opacity: .9;
    position: absolute;
    right: -80px;
    top: -100px;
    transform: rotate(18deg);
    width: 260px;
}

.page-hero-slim h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .92;
    margin: .8rem 0 1rem;
}

.page-hero-slim p {
    color: #bbc1ca;
    line-height: 1.7;
    max-width: 670px;
}

.public-page-section {
    padding: 4.5rem 0 6rem;
}

.premium-panel {
    background: #fff;
    border: 1px solid #dadde1;
    box-shadow: 0 18px 55px rgba(15, 19, 25, .07);
    padding: 1.6rem;
}

.premium-panel h2,
.premium-panel h3 {
    font-weight: 900;
    letter-spacing: -.03em;
}

.premium-panel .form-control,
.premium-panel .form-select {
    border-color: #cfd3d9;
    border-radius: 0;
    min-height: 48px;
}

.premium-panel textarea.form-control {
    min-height: auto;
}

.premium-panel .form-label {
    font-size: .76rem;
    font-weight: 850;
}

.privacy-note {
    color: #777d86;
    font-size: .72rem;
    line-height: 1.55;
}

.vehicle-identity-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1.2rem;
}

.vehicle-identity-grid > div {
    background: #f0f1f2;
    min-height: 86px;
    padding: 1rem;
}

.vehicle-identity-grid small,
.vehicle-identity-grid strong {
    display: block;
}

.vehicle-identity-grid small {
    color: #747a83;
    font-size: .67rem;
    text-transform: uppercase;
}

.vehicle-identity-grid strong {
    font-size: .95rem;
    margin-top: .35rem;
}

.confidence-badge,
.status-pill {
    border-radius: 99px;
    display: inline-block;
    font-size: .66rem;
    font-weight: 900;
    padding: .35rem .65rem;
}

.confidence-badge {
    background: #e8f4c3;
    color: #405400;
}

.status-pill {
    background: #eceef1;
    color: #31353b;
}

.status-pill.status-cancelled {
    background: #ffe2e3;
    color: #9f171c;
}

.status-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.status-timeline li {
    border-left: 2px solid #d7dbe0;
    margin-left: .45rem;
    padding: 0 0 1.5rem 1.4rem;
    position: relative;
}

.status-timeline li::before {
    background: #fff;
    border: 3px solid var(--public-red);
    border-radius: 50%;
    content: "";
    height: 13px;
    left: -7px;
    position: absolute;
    top: .15rem;
    width: 13px;
}

.status-timeline li:last-child {
    border-color: transparent;
    padding-bottom: 0;
}

.status-timeline strong,
.status-timeline small {
    display: block;
}

.status-timeline small {
    color: #7b818a;
    margin-top: .2rem;
}

.account-hero-card {
    background: linear-gradient(135deg, #111317, #262b33);
    color: #fff;
    padding: 2rem;
}

.account-hero-card p {
    color: #b8bec7;
}

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

.account-metrics > div {
    background: rgba(255, 255, 255, .08);
    padding: 1rem;
}

.account-metrics strong,
.account-metrics small {
    display: block;
}

.account-metrics strong {
    font-size: 1.5rem;
}

.account-metrics small {
    color: #aeb4be;
}

.auth-shell {
    background: #111317;
    min-height: calc(100vh - 116px);
    padding: 5rem 0;
}

.auth-card {
    background: #fff;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    margin: 0 auto;
    max-width: 940px;
    overflow: hidden;
}

.auth-story {
    background: linear-gradient(155deg, #e1242b, #8f1015);
    color: #fff;
    padding: 3rem;
}

.auth-story h1 {
    font-size: 2.5rem;
    font-weight: 950;
    letter-spacing: -.06em;
    line-height: .95;
    margin: 1rem 0;
}

.auth-story p {
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
}

.auth-benefits {
    display: grid;
    gap: .8rem;
    margin-top: 2rem;
}

.auth-benefits span {
    border-top: 1px solid rgba(255, 255, 255, .25);
    font-size: .78rem;
    font-weight: 800;
    padding-top: .8rem;
}

.auth-form {
    padding: 3rem;
}

.auth-form h2 {
    font-weight: 950;
    letter-spacing: -.045em;
}

.auth-form .form-control {
    border-radius: 0;
    min-height: 48px;
}

.auth-form .btn {
    border-radius: 99px;
    font-weight: 900;
    min-height: 48px;
}

.auth-switch {
    color: #737982;
    font-size: .78rem;
    margin-top: 1.2rem;
    text-align: center;
}

@media (max-width: 1199px) {
    .home-hero-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr 390px;
    }

    .home-hero h1 {
        font-size: 5rem;
    }

    .product-grid-modern,
    .category-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .utility-inner > span {
        display: none;
    }

    .utility-inner,
    .utility-links {
        justify-content: center;
    }

    .public-body .navbar-collapse {
        padding: 1rem 0;
    }

    .public-body .nav-actions {
        border-top: 1px solid #e3e5e8;
        margin-top: .5rem;
        padding-top: 1rem;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        padding-block: 4.5rem;
    }

    .home-hero {
        min-height: 0;
    }

    .home-hero-grid {
        min-height: 0;
    }

    .home-hero-copy {
        max-width: 620px;
    }

    .part-finder-card {
        max-width: 620px;
    }

    .trust-ribbon-grid,
    .category-grid-modern,
    .product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        gap: 4rem;
        grid-template-columns: 1fr;
    }

    .customer-action-grid {
        grid-template-columns: 1fr;
    }

    .customer-action-grid > a {
        min-height: 140px;
    }

    .vehicle-identity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .utility-links a:first-child {
        display: none;
    }

    .home-hero::before {
        background-image: linear-gradient(90deg, rgba(8, 10, 13, .97), rgba(8, 10, 13, .75)), var(--hero-image);
        background-position: 62% center;
    }

    .home-hero h1 {
        font-size: 3.8rem;
    }

    .hero-proof {
        gap: 1rem;
        justify-content: space-between;
    }

    .hero-proof div {
        padding-left: .7rem;
    }

    .part-finder-card {
        padding: 1.2rem;
    }

    .trust-ribbon-grid {
        grid-template-columns: 1fr;
    }

    .trust-ribbon-grid > div {
        border-left: 1px solid #e2e4e7;
        min-height: 82px;
    }

    .home-section {
        padding: 4.5rem 0;
    }

    .editorial-heading,
    .footer-lead {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .editorial-heading h2,
    .experience-copy h2 {
        font-size: 3rem;
    }

    .category-grid-modern,
    .product-grid-modern {
        grid-template-columns: 1fr;
    }

    .category-card-modern {
        min-height: 150px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
    }

    .auth-shell {
        padding: 2rem 0;
    }

    .auth-card {
        grid-template-columns: 1fr;
    }

    .auth-story,
    .auth-form {
        padding: 2rem;
    }

    .account-metrics {
        grid-template-columns: 1fr;
    }
}

/* Vehicle-first catalog experience */
.vehicle-search-hero {
    background: #090c10;
    color: #fff;
    isolation: isolate;
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

.vehicle-search-hero::before {
    background:
        linear-gradient(90deg, rgba(7, 9, 12, .98) 0%, rgba(7, 9, 12, .9) 44%, rgba(7, 9, 12, .48) 72%, rgba(7, 9, 12, .72) 100%),
        var(--hero-image) center / cover no-repeat;
    content: "";
    inset: 0;
    position: absolute;
    z-index: -2;
}

.vehicle-search-hero::after {
    background:
        radial-gradient(circle at 70% 12%, rgba(216, 255, 71, .13), transparent 26%),
        linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, .55));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.vehicle-search-hero-inner {
    display: grid;
    gap: clamp(2.4rem, 5vw, 6rem);
    grid-template-columns: minmax(330px, .78fr) minmax(600px, 1.22fr);
    min-height: 760px;
    padding-block: 5rem;
}

.vehicle-search-copy {
    align-self: center;
    max-width: 570px;
}

.vehicle-search-copy h1 {
    font-size: clamp(4rem, 6.3vw, 7rem);
    font-weight: 950;
    letter-spacing: -.08em;
    line-height: .84;
    margin: 1.5rem 0 2rem;
}

.vehicle-search-copy h1 em {
    color: var(--public-red);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.vehicle-search-copy > p {
    color: #c8cdd5;
    font-size: 1.03rem;
    line-height: 1.75;
    max-width: 530px;
}

.finder-proof {
    gap: clamp(.8rem, 2vw, 2rem);
    margin-top: 2.7rem;
}

.finder-proof strong {
    font-size: .94rem;
}

.search-command-center {
    align-self: center;
    backdrop-filter: blur(18px);
    background: rgba(249, 250, 251, .97);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .38);
    color: var(--public-ink);
    padding: clamp(1.3rem, 2.8vw, 2.5rem);
    position: relative;
}

.search-command-center::before {
    background: var(--public-lime);
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.search-command-intro {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.command-number {
    align-items: center;
    background: #111317;
    color: #fff;
    display: inline-flex;
    flex: 0 0 40px;
    font-size: .7rem;
    font-weight: 950;
    height: 40px;
    justify-content: center;
}

.search-command-intro .eyebrow,
.smart-keyword-search .eyebrow {
    color: var(--public-red);
    display: block;
    font-size: .64rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.search-command-intro h2 {
    font-size: 1.42rem;
    font-weight: 950;
    letter-spacing: -.045em;
    margin: .2rem 0;
}

.search-command-intro p {
    color: #777d86;
    font-size: .72rem;
    margin: 0;
}

.vehicle-finder-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vehicle-field {
    display: block;
    min-width: 0;
}

.vehicle-field > span,
.catalog-filter-grid label > span {
    align-items: center;
    color: #555b64;
    display: flex;
    font-size: .68rem;
    font-weight: 850;
    gap: .45rem;
    margin: 0 0 .4rem;
}

.vehicle-field > span b {
    align-items: center;
    background: #e7e9ec;
    border-radius: 50%;
    color: #22262c;
    display: inline-flex;
    font-size: .58rem;
    height: 19px;
    justify-content: center;
    width: 19px;
}

.vehicle-field-wide {
    grid-column: span 1;
}

.vehicle-finder-form .form-select,
.vehicle-finder-form .form-control,
.catalog-vehicle-filter .form-control,
.catalog-vehicle-filter .form-select {
    background-color: #fff;
    border: 1px solid #cdd2d9;
    border-radius: 0;
    color: #181b20;
    font-size: .82rem;
    font-weight: 750;
    min-height: 49px;
}

.vehicle-finder-form .form-select:focus,
.vehicle-finder-form .form-control:focus,
.catalog-vehicle-filter .form-control:focus,
.catalog-vehicle-filter .form-select:focus {
    border-color: #111317;
    box-shadow: 0 0 0 3px rgba(17, 19, 23, .08);
}

.vehicle-finder-form .form-select:disabled,
.vehicle-finder-form .form-control:disabled,
.catalog-vehicle-filter .form-control:disabled,
.catalog-vehicle-filter .form-select:disabled {
    background-color: #edeff1;
    color: #9a9fa7;
    cursor: not-allowed;
}

.vehicle-submit {
    align-items: center;
    align-self: end;
    background: var(--public-red);
    border: 0;
    color: #fff;
    display: flex;
    font-size: .77rem;
    font-weight: 950;
    justify-content: space-between;
    min-height: 49px;
    padding: 0 1rem;
    transition: .18s ease;
}

.vehicle-submit:hover {
    background: var(--public-red-dark);
    transform: translateY(-2px);
}

.vehicle-submit b {
    font-size: 1.1rem;
}

.vehicle-finder-status {
    color: #6f757e;
    font-size: .69rem;
    margin: .6rem 0 0;
    min-height: 1em;
}

.vehicle-finder-status.is-error {
    color: #b4141a;
    font-weight: 800;
}

.vehicle-finder-form.is-loading,
.catalog-vehicle-filter.is-loading {
    cursor: progress;
}

.search-route-divider {
    align-items: center;
    color: #848a93;
    display: flex;
    font-size: .65rem;
    font-weight: 800;
    gap: .75rem;
    margin: .75rem 0;
    text-transform: uppercase;
}

.search-route-divider::before,
.search-route-divider::after {
    background: #d9dde2;
    content: "";
    flex: 1;
    height: 1px;
}

.smart-keyword-search {
    align-items: center;
    background: #111317;
    color: #fff;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(170px, .7fr) minmax(270px, 1.3fr);
    padding: 1rem;
}

.smart-keyword-search strong,
.smart-keyword-search small {
    display: block;
}

.smart-keyword-search strong {
    font-size: .8rem;
    margin-top: .18rem;
}

.smart-keyword-search small {
    color: #969da7;
    font-size: .61rem;
    line-height: 1.4;
    margin-top: .2rem;
}

.smart-keyword-input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.smart-keyword-input input {
    background: #fff;
    border: 0;
    border-radius: 0;
    font-size: .8rem;
    min-width: 0;
    outline: 0;
    padding: .8rem .9rem;
}

.smart-keyword-input button {
    background: var(--public-lime);
    border: 0;
    color: #111317;
    font-size: .73rem;
    font-weight: 950;
    padding: 0 .9rem;
}

.smart-keyword-input button b {
    margin-left: .35rem;
}

/* Catalog result page */
.catalog-search-head {
    background:
        radial-gradient(circle at 80% 20%, rgba(216, 255, 71, .12), transparent 24%),
        #111317;
    color: #fff;
    padding: 4.7rem 0 3.2rem;
}

.catalog-search-heading {
    align-items: end;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.catalog-search-heading h1 {
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .94;
    margin: 0;
    overflow-wrap: anywhere;
}

.catalog-search-heading p {
    color: #aeb4bd;
    font-size: .9rem;
    margin: 1rem 0 0;
}

.catalog-result-count {
    border-left: 1px solid rgba(255, 255, 255, .22);
    min-width: 130px;
    padding-left: 1.5rem;
}

.catalog-result-count strong,
.catalog-result-count span {
    display: block;
}

.catalog-result-count strong {
    color: var(--public-lime);
    font-size: 2.6rem;
    font-weight: 950;
    line-height: 1;
}

.catalog-result-count span {
    color: #9ea5ae;
    font-size: .7rem;
    margin-top: .45rem;
}

.catalog-keyword-form {
    margin-top: 2.3rem;
    max-width: 880px;
}

.catalog-keyword-form > label {
    display: block;
    font-size: .68rem;
    font-weight: 900;
    margin-bottom: .45rem;
    text-transform: uppercase;
}

.catalog-keyword-form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.catalog-keyword-form input {
    background: #fff;
    border: 0;
    border-radius: 0;
    min-height: 56px;
    outline: 0;
    padding: 0 1.2rem;
}

.catalog-keyword-form button {
    background: var(--public-red);
    border: 0;
    color: #fff;
    font-size: .8rem;
    font-weight: 950;
    min-width: 120px;
}

.catalog-keyword-form button span {
    margin-left: .5rem;
}

.catalog-keyword-form > small {
    color: #8f969f;
    display: block;
    font-size: .65rem;
    margin-top: .55rem;
}

.catalog-results-section {
    background: #f4f1eb;
    min-height: 500px;
    padding: 2.2rem 0 6rem;
}

.catalog-vehicle-filter {
    background: #fff;
    border: 1px solid #d9dce0;
    box-shadow: 0 14px 44px rgba(15, 19, 25, .06);
    padding: 1.3rem;
}

.catalog-filter-title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.catalog-filter-title > div {
    align-items: center;
    display: flex;
    gap: .8rem;
}

.catalog-filter-title p,
.catalog-filter-title strong,
.catalog-filter-title small {
    display: block;
    margin: 0;
}

.catalog-filter-title strong {
    font-size: .92rem;
}

.catalog-filter-title small {
    color: #7d838c;
    font-size: .66rem;
    margin-top: .15rem;
}

.catalog-filter-title > a {
    color: #555b63;
    font-size: .7rem;
    font-weight: 800;
}

.catalog-filter-grid {
    align-items: end;
    display: grid;
    gap: .65rem;
    grid-template-columns: 1fr 1fr .7fr 1.05fr .9fr 1fr .95fr;
}

.catalog-filter-grid label {
    min-width: 0;
}

.catalog-filter-grid button {
    background: #111317;
    border: 0;
    color: #fff;
    font-size: .74rem;
    font-weight: 900;
    min-height: 49px;
    padding: 0 .85rem;
}

.catalog-filter-grid button:hover {
    background: var(--public-red);
}

.catalog-filter-grid button span {
    margin-left: .25rem;
}

.active-vehicle-summary {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 1.1rem 0;
}

.active-vehicle-summary > span {
    color: #747a83;
    font-size: .65rem;
    font-weight: 900;
    margin-right: .25rem;
    text-transform: uppercase;
}

.active-vehicle-summary b {
    background: #fff;
    border: 1px solid #d6dade;
    border-radius: 99px;
    font-size: .68rem;
    padding: .4rem .7rem;
}

.search-expanded-notice {
    align-items: flex-start;
    background: #eff8c9;
    border: 1px solid #c9db83;
    display: flex;
    gap: .9rem;
    margin: 1.2rem 0;
    padding: 1rem 1.1rem;
}

.search-expanded-notice > span {
    align-items: center;
    background: #111317;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 34px;
    font-size: 1.1rem;
    height: 34px;
    justify-content: center;
}

.search-expanded-notice strong {
    font-size: .8rem;
}

.search-expanded-notice p {
    color: #5e6840;
    font-size: .7rem;
    margin: .2rem 0 0;
}

.catalog-product-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.catalog-product-card {
    background: #fff;
    border: 1px solid #dfe2e5;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: .2s ease;
}

.catalog-product-card:hover {
    box-shadow: 0 22px 55px rgba(14, 18, 24, .12);
    transform: translateY(-5px);
}

.catalog-product-media {
    background: #eceef0;
    display: block;
    overflow: hidden;
    position: relative;
}

.catalog-product-media img {
    aspect-ratio: 1 / .75;
    object-fit: cover;
    transition: transform .3s ease;
    width: 100%;
}

.catalog-product-card:hover .catalog-product-media img {
    transform: scale(1.035);
}

.catalog-product-media > span,
.catalog-product-media > b {
    background: #fff;
    color: #15181c;
    font-size: .59rem;
    font-weight: 900;
    left: .7rem;
    padding: .37rem .5rem;
    position: absolute;
    text-transform: uppercase;
    top: .7rem;
}

.catalog-product-media > b {
    left: auto;
    right: .7rem;
}

.catalog-product-media > b.is-stock {
    background: #d8ff47;
}

.catalog-product-media > b.is-out {
    background: #e4e6e9;
    color: #6f757d;
}

.catalog-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.catalog-product-body > small {
    color: #818790;
    font-size: .62rem;
    font-weight: 700;
}

.catalog-product-body h2 {
    font-size: .94rem;
    font-weight: 900;
    line-height: 1.35;
    margin: .45rem 0 .6rem;
}

.catalog-product-body h2 a {
    color: #111317;
    text-decoration: none;
}

.catalog-oem {
    color: #737982;
    font-size: .65rem;
    margin-bottom: 1.2rem;
}

.catalog-card-bottom {
    align-items: end;
    border-top: 1px solid #eceef0;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .9rem;
}

.catalog-card-bottom del,
.catalog-card-bottom strong {
    display: block;
}

.catalog-card-bottom del {
    color: #9a9fa6;
    font-size: .64rem;
}

.catalog-card-bottom strong {
    font-size: 1.05rem;
}

.catalog-detail-link {
    color: #111317;
    font-size: .69rem;
    font-weight: 900;
    text-decoration: none;
}

.catalog-add-cart {
    background: var(--public-red);
    border: 0;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    margin-top: .8rem;
    min-height: 40px;
    width: 100%;
}

.catalog-add-cart:hover {
    background: var(--public-red-dark);
}

.catalog-empty-state {
    align-items: flex-start;
    background: #fff;
    border: 1px solid #d9dde1;
    display: flex;
    gap: 1.4rem;
    margin-top: 1.5rem;
    padding: clamp(1.5rem, 4vw, 3.5rem);
}

.catalog-empty-state > span {
    align-items: center;
    background: #111317;
    color: var(--public-lime);
    display: inline-flex;
    flex: 0 0 54px;
    font-size: 1.4rem;
    font-weight: 950;
    height: 54px;
    justify-content: center;
}

.catalog-empty-state h2 {
    font-size: 1.8rem;
    font-weight: 950;
    letter-spacing: -.045em;
}

.catalog-empty-state p {
    color: #707680;
    max-width: 650px;
}

@media (max-width: 1199px) {
    .vehicle-search-hero-inner {
        gap: 2.5rem;
        grid-template-columns: minmax(280px, .7fr) minmax(540px, 1.3fr);
    }

    .vehicle-search-copy h1 {
        font-size: 5rem;
    }

    .catalog-filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .vehicle-search-hero-inner {
        grid-template-columns: 1fr;
        padding-block: 4rem;
    }

    .vehicle-search-copy {
        max-width: 650px;
    }

    .search-command-center {
        max-width: 760px;
        width: 100%;
    }

    .catalog-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .vehicle-search-hero::before {
        background:
            linear-gradient(90deg, rgba(7, 9, 12, .98), rgba(7, 9, 12, .83)),
            var(--hero-image) 60% center / cover no-repeat;
    }

    .vehicle-search-copy h1 {
        font-size: 3.8rem;
    }

    .vehicle-finder-grid,
    .smart-keyword-search,
    .catalog-filter-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-field-wide {
        grid-column: auto;
    }

    .smart-keyword-search {
        align-items: stretch;
    }

    .catalog-search-head {
        padding-top: 3.5rem;
    }

    .catalog-search-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-result-count {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .2);
        padding-left: 0;
        padding-top: 1rem;
        width: 100%;
    }

    .catalog-filter-title {
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 560px) {
    .vehicle-search-copy h1 {
        font-size: 3.25rem;
    }

    .finder-proof {
        flex-direction: column;
    }

    .search-command-center {
        padding: 1.1rem;
    }

    .smart-keyword-input,
    .catalog-keyword-form > div {
        grid-template-columns: 1fr;
    }

    .smart-keyword-input button,
    .catalog-keyword-form button {
        min-height: 46px;
    }

    .catalog-product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-empty-state {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .home-hero h1 {
        font-size: 3.15rem;
    }

    .home-hero-copy > p {
        font-size: .95rem;
    }

    .hero-proof {
        flex-direction: column;
    }

    .public-body .hero-actions .btn {
        width: 100%;
    }

    .vehicle-identity-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026 professional public storefront refresh */
:root {
    --public-ink: #0b0e13;
    --public-ink-soft: #171b22;
    --public-paper: #f4f4f1;
    --public-red: #df2029;
    --public-red-dark: #b81119;
    --public-lime: #d8f34f;
    --public-silver: #dfe3e8;
    --public-muted: #6d737c;
    --public-shadow: 0 30px 80px rgba(11, 14, 19, .12);
}

html {
    scroll-behavior: smooth;
}

.public-body {
    -webkit-font-smoothing: antialiased;
    background: var(--public-paper);
    overflow-x: hidden;
}

.public-body ::selection {
    background: var(--public-red);
    color: #fff;
}

.public-body a,
.public-body button,
.public-body input,
.public-body select,
.public-body textarea {
    outline-offset: 3px;
}

.public-body a:focus-visible,
.public-body button:focus-visible,
.public-body input:focus-visible,
.public-body select:focus-visible,
.public-body textarea:focus-visible {
    outline: 3px solid rgba(223, 32, 41, .38);
}

.skip-link {
    background: #fff;
    color: #111;
    font-weight: 900;
    left: 1rem;
    padding: .8rem 1rem;
    position: fixed;
    top: -100px;
    transition: top .2s ease;
    z-index: 9999;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.utility-bar {
    background: #080a0d;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .72rem;
    letter-spacing: .035em;
}

.utility-inner {
    min-height: 34px;
}

.utility-links span {
    color: #8f969f;
}

.utility-links a {
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-weight: 850;
}

.public-body .public-navbar {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 35px rgba(7, 10, 14, .08);
    min-height: 76px;
    padding-block: .55rem;
    position: static;
}

.public-body .brand-lockup {
    gap: .65rem;
}

.public-body .brand-logo {
    background: #fff;
    border-radius: 4px;
    height: 52px;
    object-fit: contain;
    width: 76px;
}

.public-body .brand-copy strong {
    font-size: .95rem;
    font-weight: 950;
    letter-spacing: -.025em;
}

.public-body .brand-copy small {
    font-size: .57rem;
    letter-spacing: .115em;
}

.public-body .navbar-nav {
    gap: .15rem;
}

.public-body .navbar-nav .nav-link {
    color: #343941;
    font-size: .76rem;
    font-weight: 850;
    padding: .8rem .72rem;
    position: relative;
}

.public-body .navbar-nav .nav-link::after {
    background: var(--public-red);
    bottom: .38rem;
    content: "";
    height: 2px;
    left: .72rem;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    width: calc(100% - 1.44rem);
}

.public-body .navbar-nav .nav-link:hover::after,
.public-body .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.public-body .navbar-nav .nav-link.active {
    color: #0b0e13;
}

.nav-icon-button {
    border-color: #d8dce1;
    border-radius: 6px;
    gap: .42rem;
    height: 38px;
    padding-inline: .65rem;
}

.nav-icon-button svg {
    fill: none;
    height: 17px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 17px;
}

.nav-support-button {
    border-color: #cfe7d7;
    color: #17733a;
}

.nav-icon-button.active,
.nav-icon-button:hover {
    background: #0b0e13;
    border-color: #0b0e13;
    color: #fff;
}

.public-menu-toggle {
    border: 1px solid #d8dce1;
    border-radius: 5px;
    display: none;
    height: 42px;
    padding: 9px;
    width: 44px;
}

.public-menu-toggle span {
    background: #111317;
    display: block;
    height: 2px;
    margin: 4px 0;
    width: 24px;
}

.showroom-hero {
    background: #080b10;
    color: #fff;
    isolation: isolate;
    min-height: 690px;
    overflow: hidden;
    position: relative;
}

.showroom-hero::before {
    background:
        linear-gradient(90deg, #080b10 0%, rgba(8, 11, 16, .98) 40%, rgba(8, 11, 16, .58) 72%, rgba(8, 11, 16, .34) 100%),
        var(--hero-image) center / cover no-repeat;
    content: "";
    inset: 0;
    opacity: .52;
    position: absolute;
    z-index: -3;
}

.showroom-hero::after {
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    pointer-events: none;
    position: absolute;
    z-index: -2;
}

.showroom-hero-glow {
    background: var(--public-red);
    filter: blur(130px);
    height: 280px;
    left: -190px;
    opacity: .2;
    position: absolute;
    top: 18%;
    width: 280px;
    z-index: -1;
}

.showroom-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 6vw, 7rem);
    grid-template-columns: minmax(420px, .85fr) minmax(470px, 1.15fr);
    min-height: 690px;
    padding-bottom: 7.5rem;
    padding-top: 4.8rem;
}

.showroom-copy {
    max-width: 690px;
    position: relative;
    z-index: 2;
}

.showroom-copy .hero-label {
    color: #fff;
    font-size: .67rem;
    letter-spacing: .16em;
}

.showroom-copy .hero-label i {
    background: var(--public-red);
    height: 3px;
    width: 34px;
}

.showroom-copy h1 {
    font-size: clamp(4.4rem, 7vw, 7.4rem);
    font-weight: 950;
    letter-spacing: -.082em;
    line-height: .82;
    margin: 1.55rem 0 2rem;
}

.showroom-copy h1 em,
.expertise-content h2 em {
    color: var(--public-red);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.showroom-copy > p {
    color: #b9c0ca;
    font-size: 1rem;
    line-height: 1.78;
    max-width: 610px;
}

.showroom-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.showroom-primary-cta {
    align-items: center;
    background: var(--public-red);
    color: #fff;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 950;
    gap: 1.6rem;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 1.2rem;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.showroom-primary-cta svg,
.vehicle-submit svg,
.product-buy-row svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
}

.showroom-primary-cta:hover {
    background: #fff;
    color: #0b0e13;
    transform: translateY(-2px);
}

.showroom-secondary-cta {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-size: .76rem;
    font-weight: 850;
    padding-bottom: .35rem;
    text-decoration: none;
}

.showroom-secondary-cta:hover {
    border-color: var(--public-red);
    color: #fff;
}

.showroom-proof {
    display: flex;
    gap: clamp(1rem, 3vw, 3rem);
    margin-top: 3.1rem;
}

.showroom-proof div {
    border-left: 1px solid rgba(255, 255, 255, .22);
    padding-left: .9rem;
}

.showroom-proof strong,
.showroom-proof span {
    display: block;
}

.showroom-proof strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
}

.showroom-proof span {
    color: #7f8792;
    font-size: .64rem;
    margin-top: .25rem;
}

.showroom-visual {
    align-self: stretch;
    min-height: 560px;
    position: relative;
}

.showroom-image-frame {
    background:
        linear-gradient(180deg, rgba(8, 11, 16, .04), rgba(8, 11, 16, .18)),
        var(--hero-image) 67% center / cover no-repeat;
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 10%);
    inset: 0;
    position: absolute;
}

.showroom-image-frame::before {
    border: 1px solid rgba(255, 255, 255, .25);
    content: "";
    inset: 18px;
    position: absolute;
}

.showroom-visual-card {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(9, 12, 17, .88);
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    gap: .8rem;
    padding: .85rem 1rem;
    position: absolute;
}

.showroom-visual-card strong,
.showroom-visual-card small {
    display: block;
}

.showroom-visual-card strong {
    font-size: .76rem;
}

.showroom-visual-card small {
    color: #9299a2;
    font-size: .59rem;
    margin-top: .15rem;
}

.showroom-visual-card-top {
    left: -40px;
    top: 52px;
}

.showroom-visual-card-bottom {
    bottom: 50px;
    right: -12px;
}

.showroom-visual-card-bottom > span {
    color: var(--public-lime);
    font-size: 1.1rem;
    font-weight: 950;
}

.visual-card-icon {
    align-items: center;
    background: var(--public-lime);
    border-radius: 50%;
    color: #0b0e13;
    display: inline-flex;
    flex: 0 0 32px;
    font-size: .72rem;
    font-weight: 950;
    height: 32px;
    justify-content: center;
}

.finder-stage {
    margin-top: -72px;
    padding-bottom: 1rem;
    position: relative;
    z-index: 5;
}

.finder-stage-card {
    background: #fff;
    border-top: 5px solid var(--public-red);
    box-shadow: 0 32px 80px rgba(10, 14, 20, .18);
    padding: clamp(1.5rem, 3vw, 2.7rem);
}

.finder-stage-head {
    align-items: flex-start;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.section-kicker {
    color: var(--public-red);
    display: block;
    font-size: .64rem;
    font-weight: 950;
    letter-spacing: .15em;
    margin-bottom: .45rem;
    text-transform: uppercase;
}

.finder-stage-head h2 {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    font-weight: 950;
    letter-spacing: -.045em;
    margin: 0;
}

.finder-stage-head p {
    color: var(--public-muted);
    font-size: .75rem;
    margin: .4rem 0 0;
}

.finder-stage-badge {
    align-items: center;
    background: #edf8ef;
    color: #24723b;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .65rem;
    font-weight: 900;
    gap: .45rem;
    padding: .55rem .72rem;
}

.finder-stage-badge i {
    background: #35b259;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(53, 178, 89, .12);
    height: 6px;
    width: 6px;
}

.premium-finder .vehicle-finder-grid {
    align-items: end;
    grid-template-columns: 1fr 1fr .72fr 1.08fr .92fr 1fr 1.18fr;
}

.module-recommended .form-label::after {
    background: #e30613;
    border-radius: 999px;
    color: #fff;
    content: "Kategori önerisi";
    display: inline-block;
    font-size: .62rem;
    font-weight: 800;
    margin-left: .4rem;
    padding: .15rem .42rem;
    vertical-align: middle;
}

.premium-finder .vehicle-field-wide {
    grid-column: auto;
}

.premium-finder .vehicle-field > span {
    color: #454b54;
    font-size: .65rem;
    letter-spacing: .025em;
}

.premium-finder .vehicle-field > span b {
    background: #12151a;
    border-radius: 0;
    color: #fff;
    font-size: .51rem;
    height: 19px;
    width: 25px;
}

.premium-finder .form-select,
.premium-finder .form-control {
    border-color: #d3d7dc;
    font-size: .76rem;
    min-height: 52px;
}

.premium-finder .vehicle-submit {
    min-height: 52px;
}

.finder-form-footer {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.finder-form-footer .vehicle-finder-status {
    margin-top: .65rem;
    min-height: 0;
}

.finder-stage .search-route-divider {
    margin: 1.35rem 0 1rem;
}

.finder-stage .search-route-divider span {
    letter-spacing: .07em;
}

.finder-stage .smart-keyword-search {
    background: #101319;
    grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
    padding: .8rem;
}

.keyword-copy {
    align-items: center;
    display: flex;
    gap: .75rem;
}

.keyword-icon {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
}

.keyword-icon svg {
    fill: none;
    height: 17px;
    stroke: var(--public-lime);
    stroke-linecap: round;
    stroke-width: 1.7;
    width: 17px;
}

.finder-stage .smart-keyword-input input {
    min-height: 48px;
}

.finder-stage .smart-keyword-input button {
    background: #fff;
    min-width: 120px;
}

.finder-stage .smart-keyword-input button:hover {
    background: var(--public-lime);
}

.trust-ribbon {
    background: transparent;
    border: 0;
    padding: 2rem 0 0;
}

.trust-ribbon-grid {
    background: #fff;
    border: 1px solid #dee1e4;
}

.trust-ribbon-grid > div {
    min-height: 92px;
}

.trust-ribbon-grid > div > span {
    background: #f2f3f4;
    border-radius: 4px;
}

.trust-ribbon svg {
    fill: none;
    height: 18px;
    stroke: #14171c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 18px;
}

.brand-runway {
    padding: 2.3rem 0 1rem;
}

.brand-runway-inner {
    align-items: center;
    border-bottom: 1px solid #d5d8db;
    display: grid;
    gap: 2rem;
    grid-template-columns: auto 1fr;
    padding-bottom: 2.3rem;
}

.brand-runway-inner > span {
    color: #7b8189;
    font-size: .61rem;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.brand-name-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.7rem;
    justify-content: flex-end;
}

.brand-name-list a {
    color: #30353c;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
}

.brand-name-list a:hover {
    color: var(--public-red);
}

.home-section {
    padding: clamp(5rem, 8vw, 8rem) 0;
}

.editorial-heading {
    gap: 2rem;
}

.editorial-heading h2,
.expertise-content h2,
.experience-copy h2 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    letter-spacing: -.07em;
}

.section-index {
    color: #737981;
    font-size: .63rem;
    letter-spacing: .17em;
}

.text-link {
    border-color: #8d9298;
    color: #171a1f;
    font-size: .72rem;
}

.category-grid-modern {
    background: #d7dade;
    gap: 1px;
}

.category-card-modern {
    background: #101319;
    border: 0;
    isolation: isolate;
    min-height: 285px;
    overflow: hidden;
    padding: 1.55rem;
}

.category-card-modern::before {
    background: var(--public-red);
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    width: 100%;
    z-index: 4;
}

.category-card-modern::after {
    background: linear-gradient(180deg, rgba(4, 6, 9, .16) 20%, rgba(4, 6, 9, .3) 48%, rgba(4, 6, 9, .94) 100%);
    content: "";
    inset: 0;
    position: absolute;
    transition: background .25s ease;
    z-index: 1;
}

.category-card-modern:hover {
    background: #101319;
    transform: none;
}

.category-card-modern:hover::before {
    transform: scaleX(1);
}

.category-card-modern:hover::after {
    background: linear-gradient(180deg, rgba(4, 6, 9, .06) 12%, rgba(4, 6, 9, .25) 46%, rgba(4, 6, 9, .96) 100%);
}

.category-card-visual {
    inset: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
}

.category-card-visual img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s cubic-bezier(.2, .75, .25, 1);
    width: 100%;
}

.category-card-modern:hover .category-card-visual img {
    transform: scale(1.055);
}

.category-card-modern .category-number,
.category-card-modern .category-arrow,
.category-card-modern .category-card-copy {
    position: relative;
    z-index: 2;
}

.category-card-modern .category-number {
    color: rgba(255, 255, 255, .75);
}

.category-card-modern .category-arrow {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    position: absolute;
    right: 1.55rem;
    top: 1.35rem;
    transition: transform .2s ease;
}

.category-card-modern:hover .category-arrow {
    transform: translate(3px, -3px);
}

.category-card-modern strong {
    color: #fff;
    font-size: 1.08rem;
}

.category-card-modern .category-card-copy {
    margin-top: auto;
}

.category-card-modern .category-card-copy small {
    color: rgba(255, 255, 255, .66);
}

.featured-showcase {
    border-bottom: 1px solid #e2e4e6;
    border-top: 1px solid #e2e4e6;
}

.product-card-modern {
    border-color: #dfe2e5;
}

.product-card-modern:hover {
    box-shadow: 0 26px 65px rgba(9, 13, 18, .13);
    transform: translateY(-6px);
}

.product-media {
    background: #eef0f2;
}

.product-media img {
    aspect-ratio: 1 / .82;
}

.stock-tag {
    background: #e5e7ea;
    bottom: .8rem;
    color: #666c74;
    font-size: .58rem;
    font-weight: 900;
    left: .8rem;
    padding: .35rem .5rem;
    position: absolute;
    text-transform: uppercase;
}

.stock-tag.is-available {
    background: var(--public-lime);
    color: #14171c;
}

.product-card-modern .discount-tag {
    bottom: .8rem;
    left: auto;
    right: .8rem;
    top: auto;
}

.product-info {
    padding: 1.2rem;
}

.product-info h3 {
    font-size: .98rem;
    min-height: 2.65em;
}

.product-buy-row {
    border-top: 1px solid #eceef0;
    padding-top: .9rem;
}

.product-buy-row > a {
    transition: background .2s ease;
}

.product-buy-row > a:hover {
    background: var(--public-red);
}

.product-buy-row > a svg {
    height: 17px;
    width: 17px;
}

.expertise-showcase {
    background: #ecece8;
}

.expertise-grid {
    align-items: stretch;
    display: grid;
    gap: clamp(3rem, 7vw, 8rem);
    grid-template-columns: minmax(380px, .9fr) minmax(430px, 1.1fr);
}

.expertise-visual {
    background: var(--expertise-image) 68% center / cover no-repeat;
    min-height: 630px;
    position: relative;
}

.expertise-visual::before {
    background: linear-gradient(180deg, transparent 45%, rgba(7, 9, 12, .7));
    content: "";
    inset: 0;
    position: absolute;
}

.expertise-stamp {
    background: var(--public-red);
    bottom: 0;
    color: #fff;
    padding: 1.3rem 1.5rem;
    position: absolute;
    right: 0;
}

.expertise-stamp strong,
.expertise-stamp span {
    display: block;
}

.expertise-stamp strong {
    font-size: .9rem;
    font-weight: 950;
}

.expertise-stamp span {
    font-size: .62rem;
    margin-top: .2rem;
    opacity: .8;
}

.expertise-content {
    align-self: center;
}

.expertise-content h2 {
    font-weight: 950;
    line-height: .92;
    margin: 0;
}

.expertise-content > p {
    color: #626871;
    line-height: 1.8;
    margin: 2rem 0;
    max-width: 650px;
}

.expertise-points {
    border-top: 1px solid #cdd0d3;
    margin-bottom: 2rem;
}

.expertise-points > div {
    border-bottom: 1px solid #cdd0d3;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 34px 1fr;
    padding: 1.25rem 0;
}

.expertise-points > div > span {
    color: var(--public-red);
    font-size: .62rem;
    font-weight: 950;
}

.expertise-points p,
.expertise-points strong,
.expertise-points small {
    display: block;
    margin: 0;
}

.expertise-points strong {
    font-size: .9rem;
}

.expertise-points small {
    color: #737982;
    font-size: .72rem;
    line-height: 1.55;
    margin-top: .3rem;
}

.experience-section {
    background:
        radial-gradient(circle at 85% 12%, rgba(223, 32, 41, .16), transparent 28%),
        #0b0e13;
}

.experience-section::after {
    height: 760px;
    right: -310px;
    top: -360px;
    width: 760px;
}

.experience-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.experience-phone {
    color: #fff;
    text-decoration: none;
}

.experience-phone span,
.experience-phone strong {
    display: block;
}

.experience-phone span {
    color: #858d98;
    font-size: .59rem;
    text-transform: uppercase;
}

.experience-phone strong {
    font-size: .9rem;
    margin-top: .15rem;
}

.process-list > div {
    transition: padding-left .2s ease;
}

.process-list > div:hover {
    padding-left: .8rem;
}

.customer-action-grid > a {
    min-height: 210px;
}

.customer-action-grid > a:nth-child(2) {
    background: #101319;
    border-color: #101319;
    color: #fff;
}

.customer-action-grid > a:nth-child(2) p,
.customer-action-grid > a:nth-child(2) > span {
    color: #9299a3;
}

.modern-footer {
    background: #080a0d;
}

.footer-lead-actions {
    align-items: center;
    display: flex;
    gap: 1.6rem;
}

.footer-phone {
    color: #fff;
    text-align: right;
    text-decoration: none;
}

.footer-phone small,
.footer-phone strong {
    display: block;
}

.footer-phone small {
    color: #777f89;
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-phone strong {
    font-size: .9rem;
    margin-top: .2rem;
}

.footer-confidence {
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    gap: 2rem;
    padding: 1.2rem 0;
}

.footer-confidence span {
    color: #8d949e;
    font-size: .65rem;
}

.footer-confidence i {
    color: var(--public-lime);
    font-style: normal;
    margin-right: .35rem;
}

/* Premium product detail */
.product-detail-page {
    background: #f3f3f0;
    padding: 2rem 0 clamp(5rem, 8vw, 8rem);
}

.product-breadcrumb {
    align-items: center;
    color: #8a9098;
    display: flex;
    flex-wrap: wrap;
    font-size: .65rem;
    gap: .55rem;
    margin-bottom: 1.5rem;
}

.product-breadcrumb a {
    color: #555b63;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: var(--public-red);
}

.product-breadcrumb strong {
    color: #24282e;
    font-weight: 800;
}

.product-detail-grid {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 4vw, 5rem);
    grid-template-columns: minmax(440px, 1.05fr) minmax(420px, .95fr);
}

.product-gallery-panel {
    min-width: 0;
}

.product-main-image {
    background: #e7e9eb;
    overflow: hidden;
    position: relative;
}

.product-main-image img {
    aspect-ratio: 1 / .83;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
    width: 100%;
}

.product-main-image:hover img {
    transform: scale(1.025);
}

.product-gallery-brand,
.product-gallery-campaign {
    background: #fff;
    color: #15181c;
    font-size: .61rem;
    font-weight: 950;
    left: 1rem;
    padding: .45rem .65rem;
    position: absolute;
    text-transform: uppercase;
    top: 1rem;
}

.product-gallery-campaign {
    background: var(--public-red);
    color: #fff;
    left: auto;
    right: 1rem;
}

.product-gallery-assurance {
    background: #fff;
    border: 1px solid #dee1e4;
    border-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.product-gallery-assurance > div {
    align-items: center;
    display: flex;
    gap: .8rem;
    min-height: 78px;
    padding: .85rem 1rem;
}

.product-gallery-assurance > div + div {
    border-left: 1px solid #e1e3e5;
}

.product-gallery-assurance svg {
    fill: none;
    height: 20px;
    stroke: var(--public-red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 20px;
}

.product-gallery-assurance strong,
.product-gallery-assurance small {
    display: block;
}

.product-gallery-assurance strong {
    font-size: .72rem;
}

.product-gallery-assurance small {
    color: #7c828a;
    font-size: .61rem;
    margin-top: .15rem;
}

.product-purchase-panel {
    min-width: 0;
    padding-top: .4rem;
    position: sticky;
    top: 130px;
}

.product-title-meta {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.product-title-meta > span {
    color: var(--public-red);
    font-size: .63rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-title-meta > b {
    align-items: center;
    color: #287943;
    display: inline-flex;
    font-size: .63rem;
    gap: .4rem;
}

.product-title-meta > b i {
    background: #35b55d;
    border-radius: 50%;
    height: 7px;
    width: 7px;
}

.product-title-meta > b.out-of-stock {
    color: #8a5b5e;
}

.product-title-meta > b.out-of-stock i {
    background: #b6a4a5;
}

.product-purchase-panel h1 {
    font-size: clamp(2.25rem, 4vw, 4.25rem);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .98;
    margin: 1rem 0 1.1rem;
}

.product-lead {
    color: #666c74;
    font-size: .9rem;
    line-height: 1.7;
    max-width: 630px;
}

.product-price-block {
    border-bottom: 1px solid #d3d6d9;
    border-top: 1px solid #d3d6d9;
    margin: 1.7rem 0 1.25rem;
    padding: 1.2rem 0;
}

.product-price-block > span {
    color: #80858d;
    display: block;
    font-size: .61rem;
    font-weight: 850;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.product-price-block > div {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.product-price-block del {
    color: #969ba2;
    font-size: .85rem;
}

.product-price-block strong {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -.045em;
}

.product-price-block strong small {
    font-size: .9rem;
}

.product-quick-specs {
    background: #fff;
    border-left: 1px solid #dadddf;
    border-top: 1px solid #dadddf;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.product-quick-specs > div {
    border-bottom: 1px solid #dadddf;
    border-right: 1px solid #dadddf;
    min-width: 0;
    padding: .85rem 1rem;
}

.product-quick-specs span,
.product-quick-specs strong {
    display: block;
}

.product-quick-specs span {
    color: #858a92;
    font-size: .57rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-quick-specs strong {
    font-size: .76rem;
    margin-top: .25rem;
    overflow-wrap: anywhere;
}

.product-purchase-actions {
    display: grid;
    gap: .7rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
}

.product-purchase-actions form {
    display: flex;
}

.product-add-button,
.product-whatsapp-button {
    align-items: center;
    border: 0;
    display: inline-flex;
    font-size: .75rem;
    font-weight: 950;
    gap: .65rem;
    justify-content: center;
    min-height: 54px;
    padding: 0 1rem;
    text-decoration: none;
    transition: .2s ease;
    width: 100%;
}

.product-add-button {
    background: var(--public-red);
    color: #fff;
}

.product-add-button:hover {
    background: var(--public-red-dark);
}

.product-add-button:disabled {
    background: #a7abb1;
    cursor: not-allowed;
}

.product-whatsapp-button {
    background: #12151a;
    color: #fff;
}

.product-whatsapp-button:hover {
    background: #237944;
    color: #fff;
}

.product-add-button svg,
.product-whatsapp-button svg {
    fill: none;
    height: 19px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 19px;
}

.compatibility-callout {
    align-items: center;
    background: #e9ebed;
    display: grid;
    gap: .8rem;
    grid-template-columns: 34px 1fr auto;
    margin-top: .75rem;
    padding: .9rem;
}

.compatibility-callout > span {
    align-items: center;
    background: #fff;
    display: inline-flex;
    font-size: .8rem;
    font-weight: 950;
    height: 34px;
    justify-content: center;
}

.compatibility-callout strong,
.compatibility-callout p {
    display: block;
    margin: 0;
}

.compatibility-callout strong {
    font-size: .67rem;
}

.compatibility-callout p {
    color: #747a82;
    font-size: .59rem;
    line-height: 1.4;
    margin-top: .12rem;
}

.compatibility-callout a {
    color: #15181c;
    font-size: .62rem;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
}

.product-information-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: 1.35fr .65fr;
    margin-top: clamp(3rem, 6vw, 6rem);
}

.product-description-panel,
.product-vehicle-panel {
    background: #fff;
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 3rem);
}

.product-description-panel h2,
.product-vehicle-panel h2,
.compatibility-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 950;
    letter-spacing: -.05em;
}

.product-description-panel p {
    color: #5f656d;
    line-height: 1.9;
    max-width: 850px;
    white-space: pre-line;
}

.product-vehicle-panel {
    background: #12151a;
    color: #fff;
}

.product-vehicle-panel .section-index {
    color: var(--public-lime);
}

.product-vehicle-panel dl {
    margin: 1.5rem 0 0;
}

.product-vehicle-panel dl > div {
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .85rem 0;
}

.product-vehicle-panel dt {
    color: #858c96;
    font-size: .62rem;
    font-weight: 700;
}

.product-vehicle-panel dd {
    font-size: .72rem;
    font-weight: 850;
    margin: 0;
    text-align: right;
}

.product-oem-list {
    background: rgba(255, 255, 255, .06);
    padding: .9rem;
}

.product-oem-list span,
.product-oem-list strong {
    display: block;
}

.product-oem-list span {
    color: #858c96;
    font-size: .58rem;
    text-transform: uppercase;
}

.product-oem-list strong {
    font-size: .7rem;
    line-height: 1.6;
    margin-top: .25rem;
}

.compatibility-section,
.similar-products-section {
    margin-top: clamp(4rem, 7vw, 7rem);
}

.compatibility-section-head {
    align-items: flex-end;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.compatibility-section-head h2 {
    margin: 0;
}

.compatibility-section-head p {
    color: #737981;
    font-size: .75rem;
    margin: .4rem 0 0;
}

.compatibility-table-wrap {
    background: #fff;
    border: 1px solid #d8dbde;
}

.compatibility-table th {
    background: #111419;
    color: #fff;
    font-size: .58rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.compatibility-table td {
    font-size: .69rem;
    vertical-align: top;
}

.compatibility-table td small {
    color: #878c93;
    display: block;
    font-size: .59rem;
    margin-top: .25rem;
}

.compatibility-disclaimer {
    color: #777d85;
    font-size: .65rem;
    margin: .8rem 0 0;
}

/* Refine existing catalog and generic customer pages */
.catalog-search-head {
    background:
        linear-gradient(100deg, rgba(223, 32, 41, .12), transparent 38%),
        radial-gradient(circle at 85% 20%, rgba(216, 243, 79, .1), transparent 24%),
        #0b0e13;
}

.catalog-product-card,
.catalog-vehicle-filter,
.premium-panel,
.form-panel,
.table-panel {
    box-shadow: 0 18px 45px rgba(12, 16, 22, .055);
}

.catalog-product-card {
    border-color: #dce0e3;
}

.catalog-add-cart {
    min-height: 44px;
}

.page-hero-slim {
    background:
        linear-gradient(110deg, rgba(223, 32, 41, .14), transparent 42%),
        #0b0e13;
}

.page-hero-slim::after {
    opacity: .7;
}

.section-band {
    padding-block: clamp(3.5rem, 7vw, 7rem);
}

.section-band .section-title {
    align-items: flex-end;
    border-bottom: 1px solid #d5d8db;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-band .section-title h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 950 !important;
    letter-spacing: -.06em;
}

.form-panel,
.table-panel {
    border-color: #dadde1;
}

.floating-contact {
    background: #0c0f14;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 7px;
    bottom: 1.2rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
    padding: .35rem;
    right: 1.2rem;
}

.floating-contact a {
    border-radius: 4px;
    color: #fff;
}

.floating-contact a:last-child {
    background: #237944;
}

@media (max-width: 1399px) {
    .premium-finder .vehicle-finder-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .showroom-hero-grid {
        grid-template-columns: minmax(390px, .85fr) minmax(420px, 1.15fr);
    }
}

@media (max-width: 1199px) {
    .public-menu-toggle {
        display: block;
    }

    .public-body .navbar-collapse {
        background: #fff;
        border-top: 1px solid #e3e5e7;
        left: 0;
        padding: 1rem max(1rem, calc((100vw - 960px) / 2));
        position: absolute;
        right: 0;
        top: 100%;
    }

    .public-body .navbar-nav {
        margin-bottom: 1rem;
    }

    .public-body .navbar-nav .nav-link {
        border-bottom: 1px solid #eceef0;
        padding: .8rem 0;
    }

    .public-body .navbar-nav .nav-link::after {
        bottom: -1px;
        left: 0;
        width: 44px;
    }

    .showroom-hero-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .showroom-copy h1 {
        font-size: clamp(4rem, 7vw, 6rem);
    }

    .showroom-visual-card-top {
        left: -15px;
    }

    .product-detail-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .showroom-hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 8.5rem;
    }

    .showroom-copy {
        max-width: 720px;
        padding-top: 1rem;
    }

    .showroom-visual {
        display: none;
    }

    .showroom-hero::before {
        background:
            linear-gradient(90deg, rgba(8, 11, 16, .98), rgba(8, 11, 16, .74)),
            var(--hero-image) 64% center / cover no-repeat;
        opacity: 1;
    }

    .finder-stage {
        margin-top: -70px;
    }

    .finder-stage .smart-keyword-search {
        grid-template-columns: 1fr;
    }

    .trust-ribbon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-ribbon-grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-ribbon-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid #e2e4e7;
    }

    .brand-runway-inner {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .brand-name-list {
        justify-content: flex-start;
    }

    .category-grid-modern,
    .product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .expertise-visual {
        min-height: 520px;
    }

    .product-purchase-panel {
        position: static;
    }

    .product-information-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .utility-inner > span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .utility-links span {
        display: none;
    }

    .public-body .brand-copy small {
        display: none;
    }

    .showroom-hero-grid {
        min-height: 650px;
        padding-bottom: 8rem;
        padding-top: 3.5rem;
    }

    .showroom-copy h1 {
        font-size: clamp(3.6rem, 16vw, 5.5rem);
    }

    .showroom-copy > p {
        font-size: .9rem;
    }

    .premium-finder .vehicle-finder-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-finder .vehicle-submit {
        grid-column: span 2;
    }

    .finder-stage-head {
        display: block;
    }

    .finder-stage-badge {
        margin-top: 1rem;
    }

    .finder-form-footer {
        display: block;
    }

    .brand-name-list {
        gap: .7rem 1.15rem;
    }

    .editorial-heading,
    .compatibility-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .expertise-visual {
        min-height: 430px;
    }

    .product-detail-page {
        padding-top: 1rem;
    }

    .product-purchase-panel h1 {
        font-size: 2.8rem;
    }

    .compatibility-callout {
        align-items: flex-start;
        grid-template-columns: 34px 1fr;
    }

    .compatibility-callout a {
        grid-column: 2;
    }

    .footer-lead {
        align-items: flex-start;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-lead-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-phone {
        text-align: left;
    }

    .footer-confidence {
        align-items: flex-start;
        flex-direction: column;
        gap: .65rem;
    }
}

@media (max-width: 575px) {
    .public-body .public-navbar {
        min-height: 68px;
    }

    .public-body .brand-logo {
        height: 44px;
        width: 62px;
    }

    .public-body .brand-copy strong {
        font-size: .82rem;
        max-width: 170px;
    }

    .utility-bar {
        font-size: .62rem;
    }

    .utility-links {
        gap: .4rem;
    }

    .showroom-hero-grid {
        min-height: 620px;
        padding-top: 3rem;
    }

    .showroom-copy h1 {
        font-size: clamp(3.2rem, 17vw, 4.4rem);
        line-height: .86;
    }

    .showroom-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .showroom-primary-cta {
        width: 100%;
    }

    .showroom-secondary-cta {
        align-self: flex-start;
    }

    .showroom-proof {
        gap: .8rem;
        justify-content: space-between;
    }

    .showroom-proof div {
        flex: 1;
    }

    .showroom-proof strong {
        font-size: .82rem;
    }

    .showroom-proof span {
        font-size: .55rem;
    }

    .finder-stage-card {
        margin-inline: -.25rem;
        padding: 1.2rem;
    }

    .finder-stage-head h2 {
        font-size: 1.5rem;
    }

    .premium-finder .vehicle-finder-grid {
        grid-template-columns: 1fr;
    }

    .premium-finder .vehicle-submit {
        grid-column: auto;
    }

    .finder-stage .smart-keyword-search {
        padding: .8rem;
    }

    .finder-stage .smart-keyword-input {
        grid-template-columns: 1fr;
    }

    .finder-stage .smart-keyword-input button {
        min-height: 46px;
    }

    .trust-ribbon-grid,
    .category-grid-modern,
    .product-grid-modern {
        grid-template-columns: 1fr;
    }

    .trust-ribbon-grid > div {
        border-bottom: 1px solid #e2e4e7;
        border-right: 0;
    }

    .trust-ribbon-grid > div:last-child {
        border-bottom: 0;
    }

    .category-card-modern {
        min-height: 210px;
    }

    .expertise-visual {
        min-height: 350px;
    }

    .experience-grid {
        gap: 3rem;
    }

    .customer-action-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-assurance,
    .product-quick-specs,
    .product-purchase-actions {
        grid-template-columns: 1fr;
    }

    .product-gallery-assurance > div + div {
        border-left: 0;
        border-top: 1px solid #e1e3e5;
    }

    .product-purchase-panel h1 {
        font-size: 2.35rem;
    }

    .product-title-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: .5rem;
    }

    .product-main-image img {
        aspect-ratio: 1 / .9;
    }

    .floating-contact {
        bottom: .65rem;
        left: .65rem;
        right: .65rem;
    }

    .floating-contact a {
        flex: 1;
        justify-content: center;
    }
}

/* Brand story, contact and campaigns */
.public-story-hero,
.public-contact-hero,
.campaign-page-hero {
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.about-story-grid {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(380px, .9fr) minmax(430px, 1.1fr);
}

.about-story-visual {
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.about-story-visual::after {
    background: linear-gradient(180deg, transparent 55%, rgba(7, 9, 12, .7));
    content: "";
    inset: 0;
    position: absolute;
}

.about-story-visual img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.about-story-visual > span {
    bottom: 1.5rem;
    color: #fff;
    left: 1.5rem;
    position: absolute;
    z-index: 1;
}

.about-story-visual strong,
.about-story-visual small {
    display: block;
}

.about-story-visual strong {
    font-size: 1.1rem;
    font-weight: 950;
}

.about-story-visual small {
    color: #c1c6ce;
    font-size: .65rem;
    margin-top: .2rem;
}

.about-story-copy h2,
.contact-location-copy h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .95;
    margin: 0 0 1.6rem;
}

.about-story-copy > p {
    color: #646a72;
    line-height: 1.8;
}

.about-values {
    border-top: 1px solid #d1d4d7;
    margin: 2rem 0;
}

.about-values > div {
    align-items: start;
    border-bottom: 1px solid #d1d4d7;
    display: grid;
    gap: .75rem 1rem;
    grid-template-columns: 32px 1fr;
    padding: 1rem 0;
}

.about-values > div > span {
    color: var(--public-red);
    font-size: .6rem;
    font-weight: 950;
}

.about-values strong,
.about-values small {
    display: block;
    grid-column: 2;
}

.about-values strong {
    font-size: .82rem;
}

.about-values small {
    color: #777d85;
    font-size: .68rem;
    margin-top: -.45rem;
}

.about-story-copy .showroom-primary-cta {
    display: inline-flex;
}

.contact-option-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1px;
}

.contact-option-grid > a {
    background: #fff;
    color: #111419;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 1.4rem;
    position: relative;
    text-decoration: none;
    transition: .2s ease;
}

.contact-option-grid > a:hover {
    background: #111419;
    color: #fff;
    transform: translateY(-4px);
    z-index: 1;
}

.contact-option-grid span {
    color: var(--public-red);
    font-size: .59rem;
    font-weight: 950;
    letter-spacing: .12em;
}

.contact-option-grid strong {
    font-size: clamp(1.15rem, 2.2vw, 1.75rem);
    letter-spacing: -.035em;
    margin-top: auto;
    overflow-wrap: anywhere;
}

.contact-option-grid small {
    color: #7d838c;
    font-size: .68rem;
    margin-top: .4rem;
}

.contact-option-grid b {
    font-size: 1.1rem;
    font-weight: 500;
    position: absolute;
    right: 1.4rem;
    top: 1.2rem;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
}

.contact-location-copy {
    background: #111419;
    color: #fff;
    padding: clamp(1.8rem, 4vw, 4rem);
}

.contact-location-copy .section-index {
    color: var(--public-lime);
}

.contact-location-copy dl {
    margin: 2rem 0;
}

.contact-location-copy dl > div {
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: .9rem 0;
}

.contact-location-copy dt {
    color: #858c96;
    font-size: .6rem;
    text-transform: uppercase;
}

.contact-location-copy dd {
    font-size: .76rem;
    line-height: 1.6;
    margin: .25rem 0 0;
}

.contact-location-copy dd a {
    color: #fff;
}

.contact-map-panel {
    background: #dadde0;
    min-height: 520px;
    overflow: hidden;
}

.contact-map-panel iframe {
    border: 0 !important;
    height: 100% !important;
    min-height: 520px;
    width: 100% !important;
}

.contact-map-placeholder {
    align-items: center;
    background:
        linear-gradient(rgba(17, 20, 25, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 20, 25, .08) 1px, transparent 1px),
        #dfe2e4;
    background-size: 40px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.contact-map-placeholder span {
    color: var(--public-red);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: .14em;
}

.contact-map-placeholder strong {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: .8rem;
    max-width: 420px;
}

.campaign-page-head {
    align-items: flex-end;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.campaign-page-head > strong {
    border-left: 1px solid rgba(255, 255, 255, .22);
    color: #aeb4bc;
    font-size: .7rem;
    padding: 1rem 0 1rem 1.4rem;
}

.campaign-page-head > strong span {
    color: var(--public-lime);
    display: block;
    font-size: 2.2rem;
}

.campaign-products-section .catalog-product-grid {
    margin-top: 0;
}

@media (max-width: 991px) {
    .about-story-grid,
    .contact-location-grid {
        grid-template-columns: 1fr;
    }

    .about-story-visual {
        min-height: 500px;
    }

    .contact-map-panel {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .contact-option-grid {
        grid-template-columns: 1fr;
    }

    .contact-option-grid > a {
        min-height: 155px;
    }

    .campaign-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .campaign-page-head > strong {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .22);
        padding: 1rem 0 0;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .about-story-visual {
        min-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Modular catalog: vehicle fitment, tyres, fluids and universal products */
.catalog-shopping-paths {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.13);
}

.catalog-shopping-paths a {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .1rem .75rem;
    min-height: 96px;
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    background: rgba(9,12,17,.88);
    transition: background .2s ease, transform .2s ease;
}

.catalog-shopping-paths a:hover { background: #e31e2d; }
.catalog-shopping-paths span { grid-row: 1 / span 2; color: #b8bec8; font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.catalog-shopping-paths strong { align-self: end; font-size: .94rem; }
.catalog-shopping-paths small { color: #aeb5bf; font-size: .72rem; line-height: 1.35; }
.catalog-shopping-paths a:hover span, .catalog-shopping-paths a:hover small { color: rgba(255,255,255,.82); }

.catalog-technical-filter {
    margin: 1.35rem 0;
    padding: 1.35rem;
    border: 1px solid #dfe3e8;
    background: #fff;
    box-shadow: 0 15px 40px rgba(12,18,28,.06);
}

.catalog-technical-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.catalog-technical-grid label { display: grid; gap: .42rem; }
.catalog-technical-grid label > span { color: #3d4653; font-size: .73rem; font-weight: 800; letter-spacing: .035em; }
.catalog-technical-grid button {
    min-height: 48px;
    border: 0;
    padding: 0 1rem;
    color: #fff;
    background: #e31e2d;
    font-weight: 800;
}

.catalog-stock-check { display: flex !important; align-items: center; min-height: 48px; padding: .75rem; border: 1px solid #dfe3e8; }
.catalog-stock-check input { accent-color: #e31e2d; }
.catalog-spec-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin: .75rem 0; }
.catalog-spec-chips span { padding: .28rem .48rem; border: 1px solid #e3e6ea; color: #606977; background: #f7f8fa; font-size: .67rem; }
.catalog-spec-chips b { color: #1a2029; }

.catalog-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: .4rem; margin: 2rem 0; }
.catalog-pagination a { min-width: 42px; padding: .65rem .85rem; border: 1px solid #d8dde4; color: #15191f; background: #fff; text-align: center; text-decoration: none; font-weight: 750; }
.catalog-pagination a:hover, .catalog-pagination a.is-active { border-color: #e31e2d; color: #fff; background: #e31e2d; }
.legal-page .premium-panel { max-width: 980px; margin: 0 auto; }
.legal-page h1 { margin: .8rem 0 1.5rem; font-weight: 900; }
.legal-page h2 { margin-top: 1.75rem; font-size: 1.1rem; font-weight: 850; }

@media (max-width: 991px) {
    .catalog-shopping-paths, .catalog-technical-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .catalog-shopping-paths, .catalog-technical-grid { grid-template-columns: 1fr; }
}
.cart-button {
    position: relative;
}

.cart-count-badge {
    align-items: center;
    background: #dc2626;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 800;
    height: 1.45rem;
    justify-content: center;
    min-width: 1.45rem;
    padding: 0 .3rem;
    position: absolute;
    right: -.45rem;
    top: -.55rem;
}

/* Homepage campaign announcement */
body.campaign-popup-open {
    overflow: hidden;
}

.campaign-popup[hidden] {
    display: none !important;
}

.campaign-popup {
    align-items: center;
    background: rgba(5, 7, 10, .82);
    backdrop-filter: blur(7px);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: clamp(.75rem, 3vw, 2rem);
    position: fixed;
    transition: opacity .22s ease;
    z-index: 2000;
}

.campaign-popup.is-visible {
    opacity: 1;
}

.campaign-popup-card {
    background: #080b0f;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .58), 0 0 0 1px rgba(201, 21, 27, .12);
    max-height: calc(100dvh - 2rem);
    max-width: 920px;
    min-width: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(18px) scale(.97);
    transition: transform .22s ease;
    width: 100%;
}

.campaign-popup.is-visible .campaign-popup-card {
    transform: translateY(0) scale(1);
}

.campaign-popup-card > img {
    display: block;
    height: auto;
    max-height: calc(100dvh - 2rem);
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.campaign-popup-close {
    align-items: center;
    background: rgba(8, 11, 15, .9);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 14px;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
    width: 44px;
    z-index: 2;
}

.campaign-popup-close:hover,
.campaign-popup-close:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    outline: none;
    transform: rotate(4deg) scale(1.04);
}

.campaign-popup-close svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
    width: 22px;
}

@media (max-width: 575px) {
    .campaign-popup {
        padding: .5rem;
    }

    .campaign-popup-card,
    .campaign-popup-card > img {
        max-height: calc(100dvh - 1rem);
    }

    .campaign-popup-card {
        border-radius: 12px;
    }

    .campaign-popup-close {
        height: 40px;
        right: 10px;
        top: 10px;
        width: 40px;
    }
}
