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

:root {
    --bg: #d9dee6;
    --panel: #f2f5fa;
    --card: #ffffff;
    --text: #1d2438;
    --muted: #4b5d7f;
    --line: #b9c6dc;
    --brand: #f16500;
    --brand-dark: #cc5400;
    --ok: #1b8a57;
    --shadow: 0 14px 30px rgba(25, 38, 68, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1500px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    background: #112134;
    color: #fff;
    padding: 0.9rem 0;
    box-shadow: 0 8px 24px rgba(5, 10, 19, 0.35);
}

.header-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-mark {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.48rem;
    display: inline-grid;
    place-items: center;
    background: var(--brand);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.46rem;
    letter-spacing: 0.03em;
    font-weight: 800;
}

.search {
    width: min(620px, 100%);
    display: flex;
    gap: 0.5rem;
}

.search input {
    flex: 1;
    border: 0;
    border-radius: 0.6rem;
    padding: 0.76rem 0.9rem;
    font-size: 1rem;
}

.search button {
    border: 0;
    border-radius: 0.6rem;
    padding: 0.76rem 1rem;
    font-weight: 800;
    color: #fff;
    background: var(--brand);
    cursor: pointer;
}

.breadcrumbs {
    font-size: 0.94rem;
    color: var(--muted);
    padding: 0.72rem 0;
}

.breadcrumbs .sep {
    margin: 0 0.35rem;
}

.main-grid {
    padding: 0.3rem 0 2rem;
}

.hero,
.panel,
.content {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.panel,
.stacked-panel {
    margin-top: 0.9rem;
}

.hero h1,
.panel h2,
.list-head h1 {
    margin: 0 0 0.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hero h1,
.list-head h1 {
    font-size: clamp(1.7rem, 3.3vw, 2.45rem);
}

.hero-subtitle {
    margin: 0.1rem 0 0.2rem;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 700;
}

.quick-selector-form {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(140px, 0.6fr);
    gap: 0.8rem;
    align-items: end;
    background: #ffffff;
    border: 1px solid #c7d3e6;
    border-radius: 0.95rem;
    padding: 0.85rem;
}

.quick-field {
    display: grid;
    gap: 0.38rem;
}

.quick-field label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.94rem;
    font-weight: 700;
    color: #27344f;
}

.step-badge {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #e9f4f8;
    color: #1f7c90;
    font-size: 0.83rem;
    font-weight: 800;
}

.quick-field select {
    width: 100%;
    height: 2.7rem;
    border: 1px solid #b9c9df;
    border-radius: 0.7rem;
    padding: 0 0.8rem;
    font-size: 1rem;
    color: #20314f;
    background: #fff;
}

.quick-field select:disabled {
    background: #f2f5fb;
    color: #7e8eab;
}

.quick-submit {
    height: 2.7rem;
    border: 0;
    border-radius: 0.9rem;
    background: #c51232;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
}

.quick-submit:hover {
    background: #a80f2a;
}

.list-head p,
.hero p {
    margin: 0.32rem 0;
}

.muted {
    color: var(--muted);
}

.brand-grid,
.model-grid,
.chip-grid,
.product-grid {
    display: grid;
    gap: 0.82rem;
}

.brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
}

.brand-card {
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 1rem;
    padding: 1rem 1.05rem;
    transition: transform .14s ease, border-color .14s ease;
}

.brand-card:hover {
    transform: translateY(-2px);
    border-color: #8ca8cf;
}

.top-brands .brand-card strong {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.18;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: 0;
}

.brand-card span {
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    margin-top: 0.2rem;
}

.model-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.model-card strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.95rem;
    line-height: 1.05;
    margin-bottom: 0.4rem;
}

.engine-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.engine-card strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.all-brands-cta-wrap {
    margin-top: 0.95rem;
    text-align: center;
}

.all-brands-cta {
    display: inline-block;
    min-width: 330px;
    border: 1px solid #7295d4;
    color: #334157;
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    background: transparent;
    font-size: 1.03rem;
}

.chip-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.category-chip-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.selector-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.popular-models-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.popular-model-link-row {
    margin: 0.15rem 0 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.popular-model-link {
    display: inline-block;
    padding: 0.38rem 0.7rem;
    border: 1px solid #b3c4de;
    border-radius: 999px;
    background: #fff;
    color: #2c3c5b;
    font-size: 0.92rem;
    font-weight: 700;
}

.popular-model-link:hover {
    border-color: #7e98c5;
    background: #f4f8ff;
}

.chip {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 0.74rem 0.8rem;
    background: var(--card);
}

.chip span {
    font-weight: 700;
}

.chip small {
    color: var(--muted);
}

.popular-model-chip span {
    font-weight: 800;
    line-height: 1.2;
}

.selector-chip {
    min-height: 108px;
    justify-content: flex-start;
}

.selector-title {
    font-weight: 800;
    line-height: 1.22;
    font-size: 1.02rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.model-groups {
    display: grid;
    gap: 0.9rem;
}

.model-group h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #344463;
}

.chip.is-all {
    border-style: dashed;
}

.chip.is-active {
    border-color: #f08a42;
    background: #fff0e4;
}

.product-grid {
    margin-top: 0.9rem;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-auto-rows: 1fr;
}

.card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 0.88rem;
    overflow: hidden;
    background: var(--card);
    height: 100%;
}

.image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 214px;
    padding: 0.75rem;
    background: #ecf1f7;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.82rem;
    min-height: 230px;
}

.card-main h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.33;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.meta {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.card-bottom {
    margin-top: auto;
    display: grid;
    gap: 0.45rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.price {
    color: #143959;
    font-size: 1.12rem;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.12;
    white-space: nowrap;
}

.availability {
    color: var(--ok);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    white-space: nowrap;
}

.cta {
    display: inline-block;
    text-align: center;
    width: 100%;
    border-radius: 0.56rem;
    padding: 0.62rem 0.8rem;
    color: #fff;
    font-weight: 800;
    background: var(--brand);
    transition: background .15s ease;
}

.cta:hover {
    background: var(--brand-dark);
}

.cta-lg {
    max-width: 320px;
    font-size: 1.06rem;
    padding: 0.8rem 1rem;
}

.empty {
    border: 1px dashed var(--line);
    border-radius: 0.8rem;
    background: #fff;
    color: var(--muted);
    padding: 1rem;
}

.seo-copy {
    margin: 0;
    color: #304364;
    line-height: 1.5;
}

.pagination {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.pagination a {
    min-width: 2rem;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.32rem 0.52rem;
}

.pagination a.active {
    border-color: var(--brand);
    background: #ffe8d9;
}

.load-more-form {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.load-more-btn {
    border: 1px solid #7f98c0;
    background: #e6edf8;
    color: #26354f;
    border-radius: 0.8rem;
    padding: 0.72rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.load-more-btn:hover {
    background: #dbe7f8;
}

.load-more-btn:disabled {
    opacity: 0.72;
    cursor: wait;
}

.product-detail-grid {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 1rem;
}

.product-detail-image {
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: #ecf1f7;
    padding: 1rem;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-summary {
    border: 1px solid #c4d4e9;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
}

.product-price-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.product-detail-summary .price {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #102f4d;
}

.availability-pill {
    border: 1px solid #99ccad;
    border-radius: 999px;
    padding: 0.18rem 0.6rem;
    background: #eaf8ef;
    color: #19753a;
    text-transform: none;
    letter-spacing: 0;
}

.product-short-desc {
    margin: 0;
}

.description {
    color: #2f3f58;
    line-height: 1.45;
}

.product-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.spec-item {
    border: 1px solid #d5e1f1;
    border-radius: 0.72rem;
    background: #fff;
    padding: 0.58rem 0.65rem;
    min-height: 68px;
    display: grid;
    align-content: center;
    gap: 0.18rem;
}

.spec-label {
    font-size: 0.76rem;
    font-weight: 800;
    color: #5f7597;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.spec-value {
    font-size: 1.04rem;
    color: #182f4d;
    line-height: 1.18;
}

.product-buy-box {
    border: 1px solid #ffd3b6;
    border-radius: 0.86rem;
    background: linear-gradient(180deg, #fff8f2 0%, #fff1e4 100%);
    padding: 0.8rem;
    display: grid;
    gap: 0.52rem;
    justify-items: center;
    text-align: center;
}

.product-buy-cta {
    width: min(100%, 420px);
    max-width: 420px;
    padding: 0.92rem 1.1rem;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 0.72rem;
    background: linear-gradient(180deg, #ff8a1f 0%, #ef6400 100%);
    box-shadow: 0 10px 22px rgba(239, 100, 0, 0.24);
    transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}

.product-buy-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(239, 100, 0, 0.3);
}

.product-buy-note {
    margin: 0;
    color: #6b4a33;
    font-size: 0.92rem;
}

.product-quick-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    justify-content: center;
}

.product-quick-points span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d2e0f3;
    border-radius: 999px;
    background: #eef4fc;
    color: #2c466b;
    font-size: 0.84rem;
    padding: 0.2rem 0.56rem;
}

.vehicle-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: #fff;
}

.vehicle-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.vehicle-table th,
.vehicle-table td {
    text-align: left;
    padding: 0.65rem 0.7rem;
    border-bottom: 1px solid #dbe3ee;
    font-size: 0.94rem;
}

.vehicle-table th {
    background: #eef3f8;
    font-weight: 800;
}

.vehicle-table tr:last-child td {
    border-bottom: 0;
}

.vehicle-accordion {
    display: grid;
    gap: 0.55rem;
}

.vehicle-brand-list {
    display: grid;
    gap: 1rem;
}

.vehicle-brand {
    border: 1px solid #b8c9e2;
    border-radius: 0.9rem;
    background: #f6f9ff;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #edf3fb;
}

.vehicle-brand-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.62rem 0.9rem;
    border-bottom: 1px solid #ccd9ec;
    background: linear-gradient(180deg, #eef4fd 0%, #e6eef9 100%);
    list-style: none;
    cursor: pointer;
}

.vehicle-brand-head::-webkit-details-marker {
    display: none;
}

.vehicle-brand-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: #172b47;
    font-weight: 800;
}

.vehicle-brand-inline-meta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #35567f;
}

.vehicle-accordion {
    padding: 0.65rem;
    background: #f1f6fd;
}

.vehicle-group {
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: #fff;
    overflow: hidden;
}

.vehicle-group summary {
    list-style: none;
    cursor: pointer;
    padding: 0.72rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.vehicle-group summary::-webkit-details-marker {
    display: none;
}

.vehicle-expand {
    position: relative;
    width: 1.45rem;
    height: 1.45rem;
    flex: 0 0 1.45rem;
    border-radius: 50%;
    border: 1px solid #9fb3d4;
    background: #f7faff;
    display: inline-block;
    box-sizing: border-box;
}

.vehicle-expand::before,
.vehicle-expand::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #2b3f63;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.vehicle-expand::before {
    width: 0.72rem;
    height: 2px;
}

.vehicle-expand::after {
    width: 2px;
    height: 0.72rem;
}

.vehicle-brand[open] > .vehicle-brand-head .vehicle-expand::after,
.vehicle-group[open] summary .vehicle-expand::after {
    display: none;
}

.vehicle-main {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.vehicle-main strong {
    font-size: 1rem;
    line-height: 1.1;
}

.vehicle-main span {
    font-size: 0.98rem;
    color: #2d3f61;
}

.vehicle-count {
    font-size: 0.9rem;
    color: var(--muted);
    white-space: nowrap;
}

.vehicle-right {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.vehicle-group-content {
    border-top: 1px solid #d9e3f1;
    overflow-x: auto;
}

.vehicle-group-loading,
.vehicle-group-empty,
.vehicle-group-error {
    padding: 0.85rem 0.9rem;
    font-size: 0.93rem;
    color: var(--muted);
}

.vehicle-group-error {
    color: #b42318;
}

.vehicle-subtable {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.vehicle-subtable th,
.vehicle-subtable td {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #e2e8f2;
    font-size: 0.93rem;
}

.vehicle-subtable th {
    background: #f1f5fb;
    font-weight: 800;
}

.vehicle-subtable tr:last-child td {
    border-bottom: 0;
}

.admin-login-panel {
    max-width: 520px;
}

.admin-login-form {
    display: grid;
    gap: 0.75rem;
}

.admin-login-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 700;
}

.admin-login-form input {
    border: 1px solid #afbfda;
    border-radius: 0.65rem;
    padding: 0.68rem 0.75rem;
    font-size: 1rem;
}

.admin-alert {
    margin: 0 0 0.8rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.65rem;
    font-size: 0.94rem;
}

.admin-alert-error {
    background: #fde8e8;
    border: 1px solid #f2b9b9;
    color: #7a2020;
}

.admin-alert-success {
    background: #e9f9ef;
    border: 1px solid #b7e7c5;
    color: #17613f;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.admin-actions {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.admin-kpi-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.admin-kpi {
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.68rem 0.75rem;
    display: grid;
    gap: 0.25rem;
}

.admin-kpi span {
    font-size: 0.82rem;
    color: var(--muted);
}

.admin-kpi strong {
    font-size: 1.04rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 960px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #dfe7f2;
    text-align: left;
    padding: 0.56rem 0.62rem;
    font-size: 0.92rem;
}

.admin-table th {
    background: #eef3fa;
    font-weight: 800;
}

.run-status {
    display: inline-block;
    border-radius: 999px;
    padding: 0.2rem 0.54rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.run-status-success {
    background: #e7f8ef;
    color: #167547;
}

.run-status-failed {
    background: #fde8e8;
    color: #8b2222;
}

.run-status-running {
    background: #e8eefc;
    color: #2450a3;
}

.site-footer {
    color: var(--muted);
    font-size: 0.94rem;
    padding: 1.2rem 0 1.8rem;
}

@media (max-width: 920px) {
    .header-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        justify-content: center;
    }

    .search {
        width: 100%;
    }

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

    .quick-selector-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(1500px, calc(100% - 1rem));
    }

    .hero,
    .panel,
    .content {
        border-radius: 0.78rem;
        padding: 0.88rem;
    }

    .brand-grid,
    .chip-grid,
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .all-brands-cta {
        min-width: 100%;
    }

    .top-brands .brand-card strong {
        font-size: 1.2rem;
    }

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

    .vehicle-count {
        display: none;
    }

    .vehicle-right {
        gap: 0;
    }
}

@media (max-width: 520px) {
    .brand-grid,
    .chip-grid {
        grid-template-columns: 1fr;
    }

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

    .image-wrap {
        height: 148px;
        padding: 0.5rem;
    }

    .card-body {
        padding: 0.64rem;
        min-height: 206px;
        gap: 0.45rem;
    }

    .card-main h2 {
        font-size: 0.94rem;
    }

    .meta {
        font-size: 0.8rem;
    }

    .product-detail-summary {
        padding: 0.8rem;
        gap: 0.72rem;
    }

    .product-detail-summary .price {
        font-size: 1.62rem;
    }

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

    .product-buy-cta {
        max-width: 100%;
    }

    .product-buy-note {
        font-size: 0.86rem;
    }

    .price {
        font-size: 1rem;
    }

    .availability {
        font-size: 0.76rem;
    }

    .logo-text {
        font-size: 1.34rem;
    }
}

/* Redesign overrides */
:root {
    --bg: #edf3f8;
    --panel: rgba(255, 255, 255, 0.82);
    --card: #ffffff;
    --text: #13263d;
    --muted: #5c6f85;
    --line: #d9e3ec;
    --brand: #f15a22;
    --brand-dark: #cc4614;
    --accent: #102b46;
    --accent-soft: #edf4fb;
    --ok: #176c41;
    --shadow: 0 18px 42px rgba(15, 33, 52, 0.09);
    --shadow-strong: 0 24px 60px rgba(15, 33, 52, 0.16);
    --heading-font: 'Space Grotesk', sans-serif;
    --body-font: 'Manrope', sans-serif;
    --radius-xl: 1.6rem;
    --radius-lg: 1.15rem;
    --radius-md: 0.92rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background:
        radial-gradient(circle at top left, rgba(255, 243, 232, 0.95) 0%, rgba(255, 243, 232, 0) 42%),
        radial-gradient(circle at top right, rgba(219, 233, 248, 0.86) 0%, rgba(219, 233, 248, 0) 46%),
        linear-gradient(180deg, #f6f9fc 0%, #edf2f7 46%, #e7edf5 100%);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    opacity: 0.75;
}

.container {
    width: min(1380px, calc(100% - 2.2rem));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 0;
    background: rgba(10, 26, 43, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(6, 16, 29, 0.22);
}

.site-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

.topbar-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-pills span {
    padding: 0.28rem 0.64rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.header-wrap {
    gap: 1.25rem;
    padding: 1rem 0;
}

.logo {
    gap: 0.85rem;
    align-items: flex-start;
}

.logo-mark {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #ff854f 0%, #eb4a0f 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 12px 22px rgba(241, 90, 34, 0.25);
    font-family: var(--heading-font);
}

.logo-copy {
    display: grid;
    gap: 0.08rem;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.logo-subtext {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.2;
}

.search {
    width: min(680px, 100%);
    gap: 0.4rem;
    padding: 0.34rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.search input {
    border-radius: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 0.88rem 1rem;
    background: #fff;
    font-size: 0.97rem;
}

.search button {
    border-radius: 0.8rem;
    padding: 0.88rem 1.15rem;
    background: linear-gradient(180deg, #ff7b39 0%, #df4e14 100%);
}

.search button:hover {
    background: linear-gradient(180deg, #ff8a4d 0%, #c54310 100%);
}

.breadcrumbs {
    padding: 0.95rem 0 0.65rem;
    color: #647792;
    font-size: 0.9rem;
}

.breadcrumbs .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.main-grid {
    padding: 0.45rem 0 2.6rem;
}

.hero,
.panel,
.content {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(190, 203, 218, 0.72);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.hero::before,
.content::before {
    content: '';
    position: absolute;
    inset: auto -18% 56% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 90, 34, 0.18) 0%, rgba(241, 90, 34, 0) 72%);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #204260;
}

.section-kicker::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: rgba(32, 66, 96, 0.45);
}

.hero h1,
.panel h2,
.list-head h1,
.product-hero h1 {
    color: #10263d;
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-home {
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
    gap: 1.2rem;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 1.55rem 1.55rem 1.45rem;
}

.hero-copy h1 {
    margin: 0 0 0.7rem;
    font-size: clamp(2rem, 3.8vw, 4.2rem);
    line-height: 0.96;
}

.hero-lead {
    margin: 0;
    max-width: 52rem;
    color: #435671;
    font-size: 1.06rem;
    line-height: 1.68;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.15rem 0 1rem;
}

.hero-proof,
.result-stat,
.product-stat {
    padding: 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(17, 45, 70, 0.1);
    background: rgba(255, 255, 255, 0.75);
}

.hero-proof strong,
.result-stat strong,
.product-stat strong {
    display: block;
    color: #10263d;
    font-family: var(--heading-font);
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-proof span,
.result-stat span,
.product-stat span {
    display: block;
    margin-top: 0.25rem;
    color: #5b6d83;
    font-size: 0.93rem;
    line-height: 1.45;
}

.result-stat small,
.product-stat small {
    display: block;
    margin-top: 0.45rem;
    color: #7b8da3;
    font-size: 0.82rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 53, 82, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: #183652;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.hero-link,
.ghost-link,
.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.7rem 1rem;
    border-radius: 0.95rem;
    font-weight: 800;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.hero-link {
    background: #102b46;
    color: #fff;
    box-shadow: 0 14px 26px rgba(16, 43, 70, 0.18);
}

.hero-link:hover {
    transform: translateY(-1px);
}

.ghost-link {
    border: 1px solid rgba(16, 43, 70, 0.18);
    background: rgba(255, 255, 255, 0.82);
    color: #183652;
}

.hero-selector-card {
    position: relative;
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(10, 30, 49, 0.96) 0%, rgba(17, 43, 69, 0.9) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-selector-card::after {
    content: '';
    position: absolute;
    inset: auto auto -30px -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 90, 34, 0.25) 0%, rgba(241, 90, 34, 0) 72%);
}

.hero-selector-card .hero-subtitle {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    font-family: var(--heading-font);
    letter-spacing: -0.03em;
}

.hero-form-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
}

.quick-selector-form {
    margin-top: 0;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.quick-field label {
    color: #fff;
    font-size: 0.9rem;
}

.step-badge {
    background: #fff1e8;
    color: #b2410e;
}

.quick-field select {
    height: 3.05rem;
    padding: 0 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.98);
}

.quick-submit {
    height: 3.05rem;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #ff7b39 0%, #df4e14 100%);
    box-shadow: 0 12px 22px rgba(241, 90, 34, 0.25);
}

.quick-submit:hover {
    background: linear-gradient(180deg, #ff8a4d 0%, #c54310 100%);
}

.selector-trust {
    display: grid;
    gap: 0.45rem;
}

.selector-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
}

.selector-trust span::before {
    content: '';
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #ff8c57;
    box-shadow: 0 0 0 4px rgba(255, 140, 87, 0.15);
}

.hero-simple {
    display: grid;
    gap: 0.8rem;
}

.hero-simple p {
    max-width: 52rem;
    margin: 0;
    color: #4d6078;
    line-height: 1.65;
}

.section-heading,
.list-panel-title,
.product-panel-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-heading h2,
.list-panel-title h2,
.product-panel-title h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 2rem);
}

.section-heading p,
.list-panel-title p,
.product-panel-title p {
    margin: 0.35rem 0 0;
    max-width: 52rem;
    color: #5b6d83;
    line-height: 1.55;
}

.section-heading aside,
.section-note {
    color: #5b6d83;
    font-size: 0.92rem;
    text-align: right;
}

.brand-grid,
.chip-grid,
.product-grid,
.selling-grid,
.results-stat-grid,
.product-stat-grid {
    display: grid;
    gap: 0.95rem;
}

.brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 210px;
    padding: 1.05rem;
    border-radius: 1.25rem;
    border: 1px solid #dbe5ef;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    overflow: hidden;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: -30% auto auto -10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 43, 70, 0.08) 0%, rgba(16, 43, 70, 0) 70%);
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: #c0d2e4;
    box-shadow: 0 18px 32px rgba(17, 43, 69, 0.12);
}

.brand-card-eyebrow {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: #eef4fa;
    color: #315578;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-brands .brand-card strong {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    line-height: 1.03;
    font-family: var(--heading-font);
}

.brand-card-meta {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.28rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.brand-card-cta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #183652;
    font-weight: 800;
}

.brand-card-cta::after {
    content: '>';
    font-size: 1.05rem;
}

.all-brands-cta-wrap {
    margin-top: 1.15rem;
}

.all-brands-cta {
    min-width: 0;
    width: auto;
    padding: 0.95rem 1.15rem;
    border-radius: 1rem;
    border-color: #102b46;
    background: #102b46;
    color: #fff;
    font-weight: 800;
}

.popular-model-link-row {
    margin: 0 0 1rem;
    gap: 0.55rem;
}

.popular-model-link {
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    border: 1px solid #dbe4ee;
    background: #fff;
    font-size: 0.9rem;
}

.popular-models-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.chip {
    border-radius: 1rem;
    border: 1px solid #dbe5ef;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
    padding: 0.9rem;
    gap: 0.3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.16s ease, border-color 0.16s ease;
}

.chip:hover {
    transform: translateY(-2px);
    border-color: #c1d3e4;
}

.chip span {
    font-size: 1rem;
}

.selector-chip {
    min-height: 136px;
    justify-content: space-between;
}

.selector-title {
    font-size: 1.08rem;
    line-height: 1.2;
}

.model-groups {
    gap: 1.2rem;
}

.model-group {
    padding: 1rem;
    border-radius: 1.15rem;
    border: 1px solid #dfe7ef;
    background: #f7fafc;
}

.model-group h3 {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-family: var(--heading-font);
}

.category-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.listing-shell,
.product-detail {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.list-hero,
.product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 1rem;
    padding: 1.3rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(190, 203, 218, 0.72);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 252, 0.9) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.list-hero::before,
.product-hero::before {
    content: '';
    position: absolute;
    inset: -10% -5% auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 90, 34, 0.16) 0%, rgba(241, 90, 34, 0) 70%);
}

.list-head,
.product-hero-copy {
    position: relative;
    z-index: 1;
}

.list-head h1,
.product-hero h1 {
    margin: 0;
    font-size: clamp(1.85rem, 3.4vw, 3.1rem);
    line-height: 0.98;
}

.list-intro,
.product-hero-copy .meta {
    margin: 0.6rem 0 0;
    max-width: 54rem;
    color: #4c5f78;
    font-size: 1rem;
    line-height: 1.65;
}

.selection-pill-row,
.product-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.selection-pill,
.product-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    border: 1px solid #d6e2ef;
    background: #edf4fb;
    color: #26486b;
    font-size: 0.88rem;
    font-weight: 800;
}

.selection-pill.is-strong,
.product-hero-pill.is-strong {
    border-color: #ffd0b6;
    background: #fff1e7;
    color: #aa4917;
}

.results-stat-grid,
.product-stat-grid {
    align-content: start;
}

.selling-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.selling-card {
    padding: 1rem;
    border-radius: 1.15rem;
    border: 1px solid #dce5ef;
    background: linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
}

.selling-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
    font-family: var(--heading-font);
}

.selling-card p {
    margin: 0;
    color: #5b6d83;
    line-height: 1.6;
}

.product-grid {
    margin-top: 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.card {
    position: relative;
    border: 1px solid #dbe5ef;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
    box-shadow: 0 14px 28px rgba(16, 43, 70, 0.08);
    overflow: hidden;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(16, 43, 70, 0.14);
}

.card-media {
    position: relative;
    padding: 0.85rem 0.85rem 0;
}

.card-badge-row {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #d6e2ef;
    background: #eef4fa;
    color: #284869;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-badge-sale {
    border-color: #ffd0b6;
    background: #fff1e7;
    color: #b44916;
}

.card-badge-stock {
    border-color: #dce4ed;
    background: #f3f6f9;
    color: #50657f;
}

.card-badge-stock.is-in-stock {
    border-color: #bfe2ce;
    background: #eaf8ef;
    color: #176c41;
}

.image-wrap {
    height: 220px;
    border-radius: 1rem;
    border: 1px solid #e4ebf3;
    background: radial-gradient(circle at top, #ffffff 0%, #f1f5f9 72%);
}

.card-body {
    gap: 0.8rem;
    padding: 1rem;
    min-height: 0;
}

.card-brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.card-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: #edf3f9;
    color: #2a4868;
    font-size: 0.78rem;
    font-weight: 800;
}

.card-pill.is-muted {
    background: #f6f8fb;
    color: #697c93;
}

.card-main h2 {
    font-size: 1.02rem;
    line-height: 1.35;
    -webkit-line-clamp: 3;
}

.meta {
    margin: 0.15rem 0 0;
    color: #61738b;
    font-size: 0.88rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

.card-bottom {
    gap: 0.7rem;
}

.price-row {
    align-items: flex-end;
}

.price-stack {
    display: grid;
    gap: 0.15rem;
}

.price-old {
    color: #7b8ea5;
    font-size: 0.82rem;
    text-decoration: line-through;
}

.price {
    color: #102b46;
    font-size: 1.24rem;
    font-family: var(--heading-font);
    font-weight: 700;
}

.availability {
    color: #176c41;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0.55rem;
}

.card-actions.is-single {
    grid-template-columns: 1fr;
}

.cta,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.8rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.92rem;
    font-weight: 800;
}

.cta {
    background: linear-gradient(180deg, #ff7b39 0%, #df4e14 100%);
    color: #fff;
    box-shadow: 0 12px 22px rgba(241, 90, 34, 0.22);
}

.cta:hover {
    background: linear-gradient(180deg, #ff8a4d 0%, #c54310 100%);
}

.cta-secondary {
    border: 1px solid #d6e2ef;
    background: #fff;
    color: #163652;
}

.cta-secondary:hover {
    border-color: #bfd0e0;
    background: #f7fafc;
}

.load-more-form {
    margin-top: 1.2rem;
}

.load-more-btn {
    padding: 0.95rem 1.3rem;
    border-radius: 1rem;
    background: #102b46;
    color: #fff;
    border: 0;
}

.load-more-btn:hover {
    background: #173956;
}

.product-detail-grid {
    margin-top: 1rem;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
    gap: 1rem;
}

.product-detail-image {
    position: relative;
    min-height: 420px;
    padding: 1.2rem;
    border-radius: 1.35rem;
    border: 1px solid #dde6ef;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.product-detail-image::after {
    content: '';
    position: absolute;
    inset: auto -70px -70px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 43, 70, 0.12) 0%, rgba(16, 43, 70, 0) 70%);
}

.product-image-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-detail-summary {
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.35rem;
    border: 1px solid #dfe7ef;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.product-price-strip {
    gap: 0.7rem 1rem;
    align-items: flex-end;
}

.product-price-block {
    display: grid;
    gap: 0.25rem;
}

.product-detail-summary .price {
    font-size: 2.3rem;
    line-height: 0.92;
}

.product-price-old {
    color: #7b8ea5;
    font-size: 1rem;
    text-decoration: line-through;
}

.discount-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.62rem;
    border-radius: 999px;
    border: 1px solid #ffd0b6;
    background: #fff1e7;
    color: #b44916;
    font-size: 0.82rem;
    font-weight: 800;
}

.availability-pill {
    padding: 0.32rem 0.72rem;
    font-weight: 800;
}

.product-short-desc {
    margin: 0;
    color: #364a66;
    line-height: 1.7;
}

.product-spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.spec-item {
    min-height: 88px;
    padding: 0.8rem;
    border-radius: 1rem;
}

.product-buy-box {
    padding: 1rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #fff8f2 0%, #fff0e3 100%);
}

.product-buy-cta {
    min-height: 3.3rem;
    border-radius: 1rem;
    font-size: 1.08rem;
}

.product-buy-note {
    line-height: 1.5;
}

.product-quick-points {
    justify-content: flex-start;
    gap: 0.48rem;
}

.product-quick-points span {
    border-color: #dfe7ef;
    background: #fff;
    padding: 0.35rem 0.65rem;
}

.product-detail-image-note {
    margin: 0.85rem 0 0;
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    border: 1px solid #e1e9f1;
    background: #f7fafc;
    color: #5b6d83;
    line-height: 1.55;
}

.vehicle-brand-list {
    gap: 1rem;
}

.vehicle-brand {
    border-radius: 1.1rem;
    box-shadow: none;
}

.vehicle-brand-head {
    padding: 0.85rem 1rem;
}

.vehicle-brand-title {
    font-family: var(--heading-font);
}

.site-footer {
    padding: 1.2rem 0 2rem;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(190, 203, 218, 0.72);
}

.footer-wrap p {
    margin: 0;
    color: #5c6f85;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.footer-links a {
    min-height: auto;
    padding: 0.4rem 0.8rem;
    border: 1px solid #dce5ef;
    border-radius: 999px;
    background: #fff;
    color: #1a3652;
}

.seo-copy {
    color: #304364;
    font-size: 0.98rem;
    line-height: 1.72;
}

@media (max-width: 1100px) {
    .container {
        width: min(1380px, calc(100% - 1.4rem));
    }

    .site-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-selector-card {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 920px) {
    .header-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        justify-content: flex-start;
    }

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

    .section-heading aside,
    .section-note {
        text-align: left;
    }

    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 700px) {
    .container {
        width: min(1380px, calc(100% - 0.95rem));
    }

    .site-topbar {
        display: none;
    }

    .hero,
    .panel,
    .content,
    .list-hero,
    .product-hero {
        border-radius: 1.1rem;
    }

    .hero-copy,
    .hero-selector-card,
    .hero,
    .panel,
    .list-hero,
    .product-hero {
        padding: 1rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-lead,
    .list-intro {
        font-size: 0.98rem;
    }

    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-grid,
    .chip-grid,
    .product-grid,
    .popular-models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card {
        min-height: 0;
    }

    .selector-chip {
        min-height: 120px;
    }

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

    .image-wrap {
        height: 168px;
    }

    .card-body {
        padding: 0.8rem;
    }

    .card-main h2 {
        font-size: 0.95rem;
    }

    .meta {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1.05rem;
    }

    .availability {
        font-size: 0.72rem;
    }

    .product-detail-summary .price {
        font-size: 1.9rem;
    }
}

@media (max-width: 520px) {
    .logo {
        align-items: center;
    }

    .logo-subtext {
        display: none;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .search {
        padding: 0.25rem;
    }

    .search input,
    .search button {
        padding: 0.78rem 0.82rem;
        font-size: 0.9rem;
    }

    .hero-benefits,
    .selection-pill-row,
    .product-hero-pills {
        gap: 0.4rem;
    }

    .hero-benefits span,
    .selection-pill,
    .product-hero-pill,
    .popular-model-link,
    .card-pill {
        font-size: 0.76rem;
    }

    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid {
        gap: 0.55rem;
    }

    .hero-proof,
    .result-stat,
    .product-stat {
        padding: 0.85rem;
    }

    .brand-grid,
    .popular-models-grid,
    .chip-grid,
    .category-chip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

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

    .brand-card {
        padding: 0.85rem;
        border-radius: 1rem;
    }

    .top-brands .brand-card strong {
        font-size: 1rem;
    }

    .brand-card-meta {
        font-size: 0.82rem;
    }

    .brand-card-cta {
        font-size: 0.84rem;
    }

    .chip,
    .selector-chip {
        padding: 0.75rem;
    }

    .selector-title {
        font-size: 0.94rem;
    }

    .card {
        border-radius: 1.05rem;
    }

    .card-media {
        padding: 0.6rem 0.6rem 0;
    }

    .card-badge-row {
        top: 0.78rem;
        left: 0.78rem;
        right: 0.78rem;
        gap: 0.28rem;
    }

    .card-badge {
        min-height: 1.55rem;
        padding: 0.2rem 0.45rem;
        font-size: 0.64rem;
    }

    .image-wrap {
        height: 132px;
        padding: 0.45rem;
    }

    .card-body {
        gap: 0.6rem;
        padding: 0.72rem;
    }

    .card-brand-row {
        gap: 0.28rem;
    }

    .card-pill {
        padding: 0.25rem 0.45rem;
    }

    .card-main h2 {
        -webkit-line-clamp: 4;
        font-size: 0.88rem;
    }

    .meta {
        -webkit-line-clamp: 3;
        font-size: 0.75rem;
    }

    .price-old {
        font-size: 0.72rem;
    }

    .price {
        font-size: 1rem;
    }

    .card-actions {
        gap: 0.42rem;
    }

    .cta,
    .cta-secondary {
        min-height: 2.5rem;
        padding: 0.55rem 0.45rem;
        border-radius: 0.8rem;
        font-size: 0.82rem;
    }

    .list-hero,
    .product-hero {
        padding: 0.95rem;
    }

    .list-head h1,
    .product-hero h1 {
        font-size: 1.6rem;
    }

    .product-detail-grid {
        margin-top: 0.8rem;
    }

    .product-detail-image {
        min-height: 280px;
        padding: 0.85rem;
    }

    .product-detail-summary {
        padding: 0.9rem;
    }

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

    .product-buy-cta {
        max-width: 100%;
    }

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

@media (max-width: 380px) {
    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid {
        grid-template-columns: 1fr;
    }
}

.list-head,
.product-hero-copy {
    max-width: 100% !important;
}

.list-head h1,
.product-hero h1 {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 2.45vw, 2.45rem) !important;
    line-height: 1.04 !important;
}

/* Final hero heading sizing */
.list-head,
.product-hero-copy {
    max-width: 100% !important;
}

.list-head h1,
.product-hero h1 {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 2.45vw, 2.45rem) !important;
    line-height: 1.04 !important;
}

/* Hero heading sizing */
.list-head,
.product-hero-copy {
    max-width: 100%;
}

.list-head h1,
.product-hero h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 2.45vw, 2.45rem);
    line-height: 1.04;
}

/* Runtime performance overrides */
body {
    background: #edf2f7 !important;
}

.site-header {
    position: static !important;
    top: auto !important;
    box-shadow: none !important;
}

.hero,
.panel,
.content,
.list-hero,
.product-hero,
.search,
.logo-image,
.card,
.chip,
.brand-card,
.selling-card,
.product-detail-image,
.product-detail-summary,
.vehicle-brand,
.model-group,
.footer-links a,
.product-buy-box {
    box-shadow: none !important;
}

.list-hero,
.product-hero {
    background: #13263d !important;
}

.card,
.chip,
.brand-card,
.selling-card,
.image-wrap,
.product-detail-image,
.product-detail-summary,
.product-buy-box {
    background-image: none !important;
}

.card:hover,
.chip:hover,
.brand-card:hover,
.selling-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.card,
.chip,
.brand-card,
.selling-card,
.cta,
.cta-secondary,
.load-more-btn,
.search button,
.footer-links a {
    transition: none !important;
}

.card,
.brand-card,
.selling-card,
.vehicle-brand,
.model-group {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}

/* Final overrides */
.product-grid {
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.card-main {
    display: grid;
    flex: 1 1 auto;
    align-content: start;
}

.card-bottom {
    margin-top: auto;
}

.image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-detail-image::after {
    display: none;
}

.product-detail-summary {
    overflow: hidden;
}

.list-hero {
    display: block !important;
    grid-template-columns: minmax(0, 1fr) !important;
}

.list-head {
    max-width: 78rem;
}

.list-hero {
    display: block !important;
    grid-template-columns: minmax(0, 1fr) !important;
}

.list-head {
    max-width: 78rem;
}

/* Latest polish */
.site-topbar {
    display: none !important;
}

.product-hero {
    display: block;
}

.product-detail-image-note,
.results-stat-grid,
.product-stat-grid {
    display: none !important;
}

/* Final mobile/detail overrides */
.site-header {
    position: relative !important;
    top: auto !important;
}

.product-panel-title + .vehicle-brand-list {
    margin-top: 0;
}

.interactive-chip {
    position: relative;
    overflow: hidden;
    contain: layout paint;
    isolation: isolate;
}

.interactive-chip .chip-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    padding-top: 0.65rem;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
}

.interactive-chip .chip-cta::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
}

.interactive-chip:hover,
.interactive-chip:focus-visible {
    border-color: #f08a42 !important;
    box-shadow: none;
}

.interactive-chip.is-active,
.interactive-chip.is-active:hover,
.interactive-chip.is-active:focus-visible {
    border-color: #f08a42 !important;
    background: #fff0e4;
    box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
    .interactive-chip .chip-cta {
        opacity: 0;
        transform: translateY(4px);
        transition: opacity 0.16s ease, transform 0.16s ease;
    }

    .interactive-chip:hover .chip-cta,
    .interactive-chip:focus-visible .chip-cta,
    .interactive-chip.is-active .chip-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 520px) {
    .product-detail > .stacked-panel {
        margin-top: 0.7rem;
        padding: 0.7rem;
    }

    .product-detail > .stacked-panel .product-panel-title {
        display: flex !important;
        gap: 0.45rem;
        margin-bottom: 0.7rem;
    }

    .product-detail > .stacked-panel .product-panel-title h2 {
        display: block;
        margin: 0;
        font-size: 1.22rem;
        line-height: 1.2;
    }

    .product-detail > .stacked-panel .product-panel-title p {
        margin-top: 0.22rem;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .product-detail > .stacked-panel .section-note {
        font-size: 0.8rem;
    }

    .vehicle-brand-list {
        gap: 0.7rem;
    }

    .vehicle-brand-head {
        padding: 0.7rem 0.85rem;
    }

    .vehicle-brand-title {
        font-size: 0.96rem;
    }

    .vehicle-group summary {
        padding: 0.68rem 0.8rem;
    }
}

.list-hero {
    display: block !important;
    grid-template-columns: minmax(0, 1fr) !important;
}

.list-head {
    max-width: 78rem;
}

.product-buy-box {
    padding: 1.2rem;
    border-width: 1px;
    border-color: #f5d8c2;
    background: #fffaf6;
    box-shadow: 0 14px 34px rgba(16, 37, 63, 0.07);
}

.product-buy-cta {
    min-height: 4rem;
    font-size: 1.24rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    border: 1px solid #e96d00;
    background: linear-gradient(135deg, #ff9d20 0%, #ff7000 100%);
    box-shadow: 0 13px 26px rgba(239, 103, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transform: translateZ(0);
}

.product-buy-cta:hover,
.product-buy-cta:focus-visible {
    background: linear-gradient(135deg, #ff8a0a 0%, #e95f00 100%);
    box-shadow: 0 16px 30px rgba(239, 103, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.product-buy-note {
    font-size: 0.88rem;
}

.product-trust-note {
    width: min(100%, 34rem);
    display: grid;
    gap: 0.12rem;
    padding: 0.54rem 0.72rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.78rem;
    background: #f8fafc;
    color: #43536a;
    font-size: 0.82rem;
    line-height: 1.32;
    text-align: center;
}

.product-trust-note strong {
    font-size: 0.84rem;
    color: #263b56;
}

.product-trust-note a {
    color: #0b6bcb;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.14em;
}

.product-spec-grid-subtle {
    gap: 0.5rem;
}

.spec-item-subtle {
    min-height: 0;
    padding: 0.6rem 0.7rem;
    border-radius: 0.9rem;
    border-color: #e2e9f1;
    background: #fbfcfd;
}

.spec-item-subtle .spec-label {
    font-size: 0.68rem;
}

.spec-item-subtle .spec-value {
    font-size: 0.94rem;
}

.spec-item-subtle .spec-note {
    display: block;
    margin-top: 0.18rem;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
}

.spec-item-pickup {
    border-color: #e2e9f1;
    background: #fbfcfd;
}

.availability.availability-pill.is-unavailable {
    border-color: #f2a998;
    background: #fff0ec;
    color: #b42318;
}

@media (max-width: 520px) {
    .product-buy-box {
        padding: 0.95rem;
    }

    .product-buy-cta {
        min-height: 3.65rem;
        font-size: 1.08rem;
    }

    .product-trust-note {
        padding: 0.58rem 0.66rem;
        font-size: 0.82rem;
    }
}

/* Refinements after feedback */
.site-header {
    position: relative;
    top: auto;
    box-shadow: 0 10px 24px rgba(6, 16, 29, 0.16);
}

.header-wrap {
    padding: 0.82rem 0;
}

.logo {
    align-items: center;
}

.logo-mark {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.82rem;
}

.logo-text {
    font-size: 1.28rem;
}

.logo-subtext {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.66rem;
}

.hero-copy {
    padding-bottom: 1.2rem;
}

.hero-selector-card {
    gap: 0.72rem;
}

.hero-selector-card .section-kicker {
    margin-bottom: 0.3rem;
    color: #ffb48a;
    font-size: 0.86rem;
    letter-spacing: 0.16em;
}

.hero-selector-card .section-kicker::before {
    background: rgba(255, 180, 138, 0.48);
}

.hero-selector-card .hero-subtitle {
    margin-top: 0.1rem;
}

.brand-card {
    min-height: 176px;
    gap: 0.55rem;
}

.brand-card-meta {
    gap: 0.14rem;
}

.brand-card-cta {
    margin-top: 0.2rem;
}

.list-hero {
    display: block;
    padding: 1rem 1.15rem;
}

.list-hero::before {
    width: 180px;
    height: 180px;
    opacity: 0.58;
}

.list-head h1 {
    max-width: 28ch;
}

.list-intro {
    max-width: 70rem;
}

.product-results-panel {
    margin-top: 0.85rem;
}

@media (max-width: 700px) {
    .list-hero {
        padding: 0.9rem;
    }

    .brand-card {
        min-height: 0;
    }
}

@media (max-width: 520px) {
    .hero-selector-card .section-kicker {
        font-size: 0.8rem;
    }

    .logo-mark {
        width: 2.15rem;
        height: 2.15rem;
    }

    .logo-subtext {
        display: block;
        font-size: 0.58rem;
    }

    .list-hero {
        padding: 0.82rem;
    }
}

/* Auto Joy transplant */
:root {
    --bg: #eff3f7;
    --panel: #ffffff;
    --card: #ffffff;
    --text: #16263c;
    --muted: #66748a;
    --line: #d9e1ea;
    --brand: #ff861f;
    --brand-dark: #eb6c00;
    --accent: #13263d;
    --accent-soft: #edf3f8;
    --hero: #12253c;
    --hero-soft: #1a304d;
    --ok: #1f8c58;
    --shadow: 0 18px 40px rgba(10, 28, 45, 0.08);
    --shadow-strong: 0 18px 38px rgba(9, 24, 39, 0.18);
    --heading-font: 'Plus Jakarta Sans', sans-serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: #edf2f7;
}

body::before {
    display: none;
}

.site-header {
    position: static;
    top: auto;
    z-index: 40;
    background: rgba(18, 37, 60, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.site-topbar {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 24, 39, 0.55);
}

.site-topbar-inner {
    padding: 0.55rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.site-topbar-copy {
    margin: 0;
}

.topbar-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0.25rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.header-wrap {
    padding: 0.9rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.logo-image {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 0.9rem;
    background: #fff;
    padding: 0.2rem;
    box-shadow: none;
}

.logo-copy {
    display: grid;
    gap: 0.12rem;
}

.logo-text {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-subtext {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.25;
}

.search {
    width: min(660px, 100%);
    gap: 0.4rem;
    padding: 0.3rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.search input {
    border: 0;
    border-radius: 0.82rem;
    padding: 0.88rem 1rem;
    background: #fff;
    color: var(--text);
    font-size: 0.95rem;
}

.search button {
    border: 0;
    border-radius: 0.82rem;
    padding: 0.88rem 1.15rem;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(180deg, #ff8d2d 0%, #ef750b 100%);
}

.search button:hover,
.hero-link:hover,
.quick-submit:hover,
.cta:hover {
    background: linear-gradient(180deg, #ff9a47 0%, #df6800 100%);
}

.breadcrumbs {
    padding: 1rem 0 0.75rem;
    color: #6b7d91;
    font-size: 0.9rem;
}

.main-grid {
    padding: 0.35rem 0 2.4rem;
}

.hero,
.panel,
.content,
.list-hero,
.product-hero {
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: var(--panel);
    box-shadow: none;
}

.hero,
.panel,
.content {
    padding: 1.2rem;
}

.hero h1,
.panel h2,
.list-head h1,
.product-hero h1 {
    color: var(--text);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    color: #ff861f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: '';
    width: 1.35rem;
    height: 1px;
    background: rgba(255, 134, 31, 0.55);
}

.hero-home {
    overflow: hidden;
    padding: 0;
    background: var(--hero);
    border: 0;
    box-shadow: var(--shadow-strong);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 0;
}

.hero-copy {
    padding: 2rem;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 134, 31, 0.16) 0%, rgba(255, 134, 31, 0) 38%),
        linear-gradient(180deg, rgba(18, 37, 60, 1) 0%, rgba(21, 41, 66, 1) 100%);
}

.hero-copy .section-kicker {
    color: #ffb265;
}

.hero-copy .section-kicker::before {
    background: rgba(255, 178, 101, 0.55);
}

.hero-copy h1 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: 0.98;
}

.hero-lead {
    margin: 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.65;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 1.1rem;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0 0 1.1rem;
}

.hero-proof,
.result-stat,
.product-stat {
    padding: 1rem;
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-proof strong,
.result-stat strong,
.product-stat strong {
    display: block;
    color: inherit;
    font-family: var(--heading-font);
    font-size: 1.55rem;
    line-height: 1;
}

.hero-proof span,
.result-stat span,
.product-stat span {
    display: block;
    margin-top: 0.32rem;
    color: inherit;
    font-size: 0.9rem;
    line-height: 1.45;
}

.result-stat small,
.product-stat small {
    display: block;
    margin-top: 0.42rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.4;
}

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

.hero-link,
.ghost-link,
.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    padding: 0.72rem 1rem;
    border-radius: 0.95rem;
    font-weight: 800;
}

.hero-link,
.cta {
    background: linear-gradient(180deg, #ff8d2d 0%, #ef750b 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 134, 31, 0.24);
}

.ghost-link {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-selector-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.8rem;
    color: #fff;
    background: linear-gradient(180deg, #152b46 0%, #183250 100%);
}

.hero-selector-card .section-kicker {
    margin-bottom: 0.25rem;
    color: #ffb265;
}

.hero-selector-card .section-kicker::before {
    background: rgba(255, 178, 101, 0.55);
}

.hero-selector-card .hero-subtitle {
    margin: 0;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 800;
}

.hero-form-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.quick-selector-form {
    margin-top: 0.1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.quick-field {
    gap: 0.42rem;
}

.quick-field label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.step-badge {
    background: #ffecd8;
    color: #b4570f;
}

.quick-field select {
    height: 3rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
}

.quick-field select:disabled {
    background: rgba(255, 255, 255, 0.84);
    color: #8896a9;
}

.quick-submit {
    height: 3rem;
    border-radius: 0.95rem;
    border: 0;
    font-size: 0.98rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ff8d2d 0%, #ef750b 100%);
    color: #fff;
}

.selector-trust {
    display: grid;
    gap: 0.48rem;
}

.selector-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.selector-trust span::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #39b56d;
    box-shadow: 0 0 0 4px rgba(57, 181, 109, 0.14);
}

.panel,
.stacked-panel {
    background: #fff;
}

.section-heading,
.list-panel-title,
.product-panel-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-heading h2,
.list-panel-title h2,
.product-panel-title h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.section-heading p,
.list-panel-title p,
.product-panel-title p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.brand-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 172px;
    padding: 1rem;
    border-radius: 1.15rem;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: none;
}

.brand-card:hover {
    transform: none;
    border-color: #c7d2de;
    box-shadow: none;
}

.brand-card-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 1.5rem;
    padding: 0.18rem 0.48rem;
    border-radius: 999px;
    background: #fff1e5;
    color: #d36a10;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-brands .brand-card strong {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    line-height: 1.15;
}

.brand-card-meta {
    display: grid;
    gap: 0.15rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.brand-card-cta {
    margin-top: auto;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
}

.all-brands-cta {
    border-color: transparent;
    background: var(--accent);
    color: #fff;
}

.popular-model-link-row {
    margin: 0 0 1rem;
}

.popular-model-link {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--accent);
}

.popular-models-grid,
.chip-grid,
.category-chip-grid,
.selector-grid {
    gap: 0.8rem;
}

.popular-models-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chip {
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: none;
}

.chip:hover {
    border-color: #c7d2de;
    box-shadow: none;
}

.popular-model-chip span,
.selector-title {
    font-family: var(--heading-font);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.28;
}

.popular-model-chip small,
.chip small {
    color: var(--muted);
}

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

.selling-card {
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: none;
}

.selling-card strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text);
    font-family: var(--heading-font);
    font-size: 1rem;
}

.selling-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.listing-shell,
.product-detail {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.list-hero,
.product-hero {
    gap: 1rem;
    padding: 1.2rem;
    background: #13263d;
    border: 0;
    box-shadow: none;
}

.list-hero {
    display: block;
}

.product-hero {
    display: block;
}

.product-hero-copy {
    max-width: 100%;
}

.product-hero h1 {
    max-width: none;
    font-size: clamp(1.7rem, 2.7vw, 2.65rem);
    line-height: 1.02;
}

.list-head h1,
.product-hero h1 {
    color: #fff;
}

.list-intro,
.product-hero-copy .meta {
    color: rgba(255, 255, 255, 0.78);
}

.selection-pill,
.product-hero-pill {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.selection-pill.is-strong,
.product-hero-pill.is-strong {
    border-color: rgba(255, 178, 101, 0.3);
    background: rgba(255, 178, 101, 0.16);
    color: #ffd4a3;
}

.results-stat-grid,
.product-stat-grid {
    display: grid;
    gap: 0.8rem;
}

.product-stat-grid {
    align-content: start;
}

.product-results-panel {
    margin-top: 0.85rem;
}

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

.card {
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: none;
}

.card:hover {
    transform: none;
    box-shadow: none;
}

.card-media {
    padding: 0.7rem 0.7rem 0;
}

.card-badge-row {
    top: 0.88rem;
    left: 0.88rem;
    right: 0.88rem;
}

.card-badge {
    min-height: 1.6rem;
    padding: 0.18rem 0.48rem;
    font-size: 0.64rem;
    font-weight: 800;
    background: rgba(18, 37, 60, 0.9);
    border: 0;
    color: #fff;
}

.card-badge-sale {
    background: #ffecd8;
    color: #c25c07;
}

.card-badge-stock,
.card-badge-stock.is-in-stock {
    background: #eef7f2;
    color: #1f8c58;
}

.image-wrap {
    height: 208px;
    border-radius: 1rem;
    border: 1px solid #e4ebf1;
    background: #f7fafc;
}

.card-body {
    gap: 0.75rem;
    padding: 0.9rem;
}

.card-brand-row {
    gap: 0.35rem;
}

.card-pill {
    padding: 0.26rem 0.5rem;
    border-radius: 999px;
    background: #edf3f8;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
}

.card-pill.is-muted {
    background: #f3f6f9;
    color: var(--muted);
}

.card-main h2 {
    font-family: var(--heading-font);
    font-size: 0.96rem;
    line-height: 1.34;
}

.meta {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.price-old {
    color: #8a9aab;
    font-size: 0.76rem;
}

.price {
    color: var(--accent);
    font-family: var(--heading-font);
    font-size: 1.12rem;
    font-weight: 800;
}

.availability {
    color: var(--ok);
    font-size: 0.74rem;
    font-weight: 800;
}

.card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}

.cta,
.cta-secondary {
    min-height: 2.65rem;
    padding: 0.62rem 0.72rem;
    border-radius: 0.86rem;
    font-size: 0.86rem;
    font-weight: 800;
}

.cta-secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--accent);
}

.load-more-btn {
    border: 0;
    background: var(--accent);
    color: #fff;
}

.product-detail-image,
.product-detail-summary,
.vehicle-brand,
.model-group {
    border-radius: 1.2rem;
    border: 1px solid var(--line);
}

.product-detail-summary {
    background: #fff;
}

.vehicle-brand-head,
.admin-table th,
.vehicle-table th,
.vehicle-subtable th {
    background: #eef3f8;
}

.footer-wrap {
    border-top: 1px solid var(--line);
}

.footer-links a {
    min-height: auto;
    padding: 0.44rem 0.82rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--accent);
}

@media (max-width: 1180px) {
    .brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

@media (max-width: 960px) {
    .site-topbar-inner,
    .header-wrap,
    .hero-grid,
    .list-hero,
    .product-hero {
        grid-template-columns: 1fr;
    }

    .site-topbar-inner,
    .header-wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

@media (max-width: 700px) {
    .site-topbar {
        display: none;
    }

    .hero,
    .panel,
    .content,
    .list-hero,
    .product-hero {
        border-radius: 1.1rem;
    }

    .hero-copy,
    .hero-selector-card,
    .list-hero,
    .product-hero,
    .panel,
    .hero {
        padding: 1rem;
    }

    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid,
    .brand-grid,
    .popular-models-grid,
    .chip-grid,
    .category-chip-grid,
    .selling-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .hero-lead,
    .list-intro {
        font-size: 0.96rem;
    }

    .logo-subtext {
        font-size: 0.74rem;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(1380px, calc(100% - 0.9rem));
    }

    .logo {
        gap: 0.65rem;
    }

    .logo-image {
        width: 2.4rem;
        height: 2.4rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-subtext {
        font-size: 0.66rem;
    }

    .search {
        padding: 0.24rem;
    }

    .search input,
    .search button {
        padding: 0.76rem 0.8rem;
        font-size: 0.88rem;
    }

    .hero-benefits,
    .selection-pill-row,
    .product-hero-pills,
    .topbar-pills {
        gap: 0.35rem;
    }

    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid {
        gap: 0.55rem;
    }

    .hero-proof,
    .result-stat,
    .product-stat {
        padding: 0.82rem;
    }

    .brand-grid,
    .popular-models-grid,
    .chip-grid,
    .category-chip-grid,
    .selling-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.62rem;
    }

    .brand-card,
    .chip,
    .selector-chip,
    .selling-card {
        padding: 0.8rem;
    }

    .top-brands .brand-card strong,
    .selector-title,
    .popular-model-chip span {
        font-size: 0.9rem;
    }

    .brand-card-meta,
    .popular-model-chip small,
    .chip small,
    .selling-card p {
        font-size: 0.76rem;
    }

    .card {
        border-radius: 1rem;
    }

    .card-media {
        padding: 0.55rem 0.55rem 0;
    }

    .card-badge-row {
        top: 0.7rem;
        left: 0.7rem;
        right: 0.7rem;
    }

    .image-wrap {
        height: 128px;
        padding: 0.4rem;
    }

    .card-body {
        gap: 0.56rem;
        padding: 0.68rem;
    }

    .card-pill {
        font-size: 0.68rem;
    }

    .card-main h2 {
        font-size: 0.84rem;
        -webkit-line-clamp: 4;
    }

    .meta {
        font-size: 0.72rem;
        -webkit-line-clamp: 3;
    }

    .price-old {
        font-size: 0.68rem;
    }

    .price {
        font-size: 0.96rem;
    }

    .availability {
        font-size: 0.68rem;
    }

    .card-actions {
        grid-template-columns: 1fr;
        gap: 0.38rem;
    }

    .cta,
    .cta-secondary {
        min-height: 2.4rem;
        padding: 0.5rem 0.42rem;
        font-size: 0.78rem;
    }

    .list-hero,
    .product-hero {
        padding: 0.9rem;
    }

    .list-head h1,
    .product-hero h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 380px) {
    .hero-proof-grid,
    .results-stat-grid,
    .product-stat-grid {
        grid-template-columns: 1fr;
    }
}
