:root {
    --ink: #07111f;
    --ink-2: #101a29;
    --muted: #667183;
    --muted-2: #8a94a3;
    --line: #d9e0ea;
    --line-dark: rgba(255, 255, 255, 0.16);
    --canvas: #f2f5f8;
    --panel: #ffffff;
    --panel-2: #f8fafc;
    --blue: #255cff;
    --blue-2: #123dc4;
    --green: #0b8f65;
    --amber: #bd7a11;
    --red: #c63543;
    --silver: #c7ced8;
    --shadow: 0 22px 60px rgba(7, 17, 31, 0.12);
    --shadow-soft: 0 12px 34px rgba(7, 17, 31, 0.08);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    color: var(--ink);
    font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
}

.marketplace-surface {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #9faab3;
}

.marketplace-surface::before,
.marketplace-surface::after {
    position: fixed;
    pointer-events: none;
    content: "";
}

.marketplace-surface::before {
    inset: 0;
    z-index: -2;
    background:
        url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=1920&q=82") center top / cover no-repeat;
}

.marketplace-surface::after {
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 14% 16%, rgba(246, 189, 75, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(232, 237, 241, 0.9), rgba(238, 242, 245, 0.9) 35%, rgba(244, 246, 248, 0.92));
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.container {
    width: min(1240px, calc(100% - 36px));
    margin: 0 auto;
}

.wide-container {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 18px;
    right: 0;
    left: 0;
    z-index: 60;
    padding: 0 28px;
    background: transparent;
    pointer-events: none;
    transition: top 0.22s ease, padding 0.22s ease;
}

.site-header.is-scrolled {
    top: 8px;
    padding: 0 18px;
}

.nav-wrap {
    display: grid;
    width: min(1760px, 100%);
    min-height: 74px;
    margin: 0 auto;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    background: rgba(8, 12, 16, 0.28);
    padding: 0 38px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px) saturate(130%);
    pointer-events: auto;
    transition: min-height 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, border-radius 0.22s ease;
}

.site-header.is-scrolled .nav-wrap {
    min-height: 66px;
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(8, 12, 16, 0.82);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px) saturate(150%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px;
    background: linear-gradient(135deg, #f0c47d, #98611f);
    color: #07111f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 16px 36px rgba(0, 0, 0, 0.26);
}

.brand-mark::after {
    position: absolute;
    inset: -40% auto auto -35%;
    width: 70%;
    height: 170%;
    background: rgba(255, 255, 255, 0.28);
    content: "";
    transform: rotate(24deg);
}

.brand-mark span {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 950;
}

.brand-text {
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-text span {
    color: #f1c77f;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    font-weight: 900;
}

.nav-links a {
    position: relative;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #62c7ff, #f0c47d);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 16px;
    cursor: pointer;
    font-weight: 850;
    white-space: nowrap;
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

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

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37, 92, 255, 0.24);
}

.btn-primary:hover {
    background: var(--blue-2);
}

.btn-outline {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--ink);
}

.site-header .btn-primary {
    min-height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f3ce86 0%, #c58b3d 46%, #8a571d 100%);
    color: #111419;
    padding: 0 11px 0 22px;
    box-shadow: 0 16px 38px rgba(197, 139, 61, 0.28);
    font-size: 15px;
    font-weight: 950;
}

.site-header .btn-primary:hover {
    background: linear-gradient(135deg, #f7d998 0%, #d39a49 46%, #9b6325 100%);
}

.site-header .btn-outline {
    min-height: 50px;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-header .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.16);
}

.btn-arrow {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    place-items: center;
    border-radius: 8px;
    background: rgba(17, 20, 25, 0.18);
    font-size: 15px;
    line-height: 1;
}

.nav-cart {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 20px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-cart:hover {
    border-color: rgba(240, 196, 125, 0.7);
    background: rgba(240, 196, 125, 0.1);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--line-dark);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(37, 92, 255, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.hero-premium {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-premium::before {
    position: absolute;
    inset: 0 0 auto;
    height: 58%;
    background: linear-gradient(135deg, #07111f 0%, #142033 48%, #f2f5f8 48%, #f2f5f8 100%);
    content: "";
}

.hero-stage {
    position: relative;
    display: grid;
    min-height: calc(100vh - 78px);
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
    gap: 34px;
    align-items: end;
    padding: 42px 0 34px;
}

.hero-copy {
    align-self: center;
    color: #fff;
    padding: 28px 0 64px;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 18px 0;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1;
    font-weight: 950;
}

.hero-lead {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.hero-visual img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.78));
    content: "";
}

.hero-floating-panel {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 12px;
}

.glass-stat {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 15px;
    backdrop-filter: blur(16px);
}

.glass-stat strong {
    display: block;
    font-size: 23px;
}

.glass-stat span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 750;
}

.booking-console {
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 14px;
    box-shadow: var(--shadow);
}

.booking-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tab {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    color: var(--muted);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 850;
}

.tab.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.search-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.85fr 0.85fr;
    gap: 10px;
}

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    color: var(--ink);
    padding: 0 12px;
    outline: none;
}

.field textarea {
    min-height: 92px;
    padding-top: 10px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    background: #fff;
}

.console-side {
    display: grid;
    min-width: 210px;
    gap: 10px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.trust-item {
    background: #fff;
    padding: 18px;
}

.trust-item strong {
    display: block;
    font-size: 24px;
}

.trust-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.section {
    padding: 76px 0;
}

.section.white {
    background: #fff;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section-head h2 {
    max-width: 720px;
    margin: 12px 0 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    font-weight: 950;
}

.section-head p {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.68;
}

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

.bike-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.bike-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1.45;
    overflow: hidden;
    background: #dce3ec;
}

.bike-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.bike-card:hover .bike-card-media img {
    transform: scale(1.04);
}

.badge-row {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 7px;
}

.badge-set {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    padding: 0 9px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(7, 17, 31, 0.14);
}

.badge.green {
    background: var(--green);
    color: #fff;
}

.badge.amber {
    background: #fff4dd;
    color: #805004;
}

.badge.dark {
    background: var(--ink);
    color: #fff;
}

.bike-card-body {
    padding: 16px;
}

.bike-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.bike-card h3 {
    margin: 9px 0 0;
    font-size: 21px;
    line-height: 1.2;
}

.spec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.spec {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    padding: 10px;
}

.spec strong {
    display: block;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.spec span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.price {
    font-size: 23px;
    font-weight: 950;
}

.price small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.category-grid,
.city-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.category-tile,
.city-tile {
    min-height: 126px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.category-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    font-weight: 950;
}

.city-tile {
    min-height: 100px;
}

.city-tile strong {
    display: block;
    font-size: 19px;
}

.city-tile span {
    color: var(--muted);
    font-size: 13px;
}

.split-band {
    background: var(--ink);
    color: #fff;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
    align-items: center;
}

.split-grid h2 {
    margin: 12px 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
}

.split-grid p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.74;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.process-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    padding: 18px;
}

.process-number {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 950;
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.panel.dark {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--ink);
    color: #fff;
}

.condition-list {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.condition-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
}

.condition-list li:last-child {
    border-bottom: 0;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(5, 11, 32, 0.92), rgba(5, 11, 32, 0.76)),
        url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=2200&q=82") center / cover;
    color: #fff;
    padding: 42px 0 22px;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 10%, rgba(246, 189, 75, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(5, 11, 32, 0.2), rgba(5, 11, 32, 0.6));
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 0 0 22px;
}

.footer-top p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.footer-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 900;
}

.footer-actions a:first-child {
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
}

.footer-actions a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-body {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 0.7fr)) minmax(260px, 1.2fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 0 18px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-column a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 750;
}

.footer-column a:hover,
.footer-legal a:hover {
    color: #d9991d;
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-pills a {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 11px;
}

.footer-ops {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-ops span {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.78);
    padding: 15px 18px;
    font-size: 13px;
    font-weight: 850;
    text-align: center;
}

.footer-ops span:last-child {
    border-right: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.54);
    padding: 14px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.footer-legal div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.page-hero {
    background: #fff;
    padding: 150px 0 26px;
}

.page-title {
    margin: 14px 0 8px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.02;
    font-weight: 950;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 24px 0 0;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 0 13px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.inventory-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 390px;
    gap: 18px;
    align-items: start;
}

.filter-console,
.map-panel,
.booking-card {
    position: sticky;
    top: 96px;
}

.filter-console {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.filter-group {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
}

.filter-group:first-child {
    padding-top: 0;
}

.filter-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.filter-group strong {
    display: block;
    margin-bottom: 10px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 9px 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.map-panel {
    position: sticky;
    height: 730px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #dce5ef;
    box-shadow: var(--shadow-soft);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.map-panel::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(37, 92, 255, 0.08));
    content: "";
}

.map-pin {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 62px;
    height: 36px;
    place-items: center;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
}

.map-overlay {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 3;
}

.inventory-breadcrumb {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    background:
        linear-gradient(90deg, rgba(5, 11, 32, 0.7), rgba(5, 11, 32, 0.38)),
        url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=1920&q=82") center / cover no-repeat;
    padding: 120px 0 34px;
}

.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 18px;
}

.breadcrumb-trail a:hover,
.breadcrumb-trail strong {
    color: var(--boxcar-blue);
}

.inventory-breadcrumb__head {
    display: block;
    max-width: 720px;
}

.inventory-breadcrumb__head h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4.4vw, 58px);
    font-weight: 850;
    letter-spacing: -0.03em;
    line-height: 1;
}

.inventory-breadcrumb .boxcar-subtitle {
    color: var(--boxcar-blue);
}

.inventory-search-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 22px 60px rgba(5, 11, 32, 0.09);
    backdrop-filter: blur(16px) saturate(125%);
}

.inventory-search-card label {
    display: grid;
    gap: 8px;
    border-right: 1px solid rgba(5, 11, 32, 0.08);
    background: transparent;
    padding: 16px 18px;
}

.inventory-search-card span {
    color: rgba(5, 11, 32, 0.56);
    font-size: 13px;
    font-weight: 850;
}

.inventory-search-card input,
.inventory-search-card select {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--boxcar-dark);
    font-size: 18px;
    font-weight: 900;
    outline: 0;
}

.inventory-search-card input::-webkit-calendar-picker-indicator {
    filter: invert(0);
}

.inventory-search-card button {
    min-width: 142px;
    min-height: 72px;
    border: 0;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    cursor: pointer;
    font-size: 18px;
    font-weight: 950;
}

.inventory-page {
    padding: 24px 0 28px;
}

.inventory-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.inventory-filters {
    position: sticky;
    top: 92px;
    max-height: calc(100vh - 112px);
}

.inventory-filters,
.inventory-map,
.inventory-alert,
.inventory-bottom-cta__inner {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 22px 60px rgba(5, 11, 32, 0.09);
    backdrop-filter: blur(16px) saturate(125%);
}

.inventory-filters {
    overflow: auto;
    border-radius: 18px;
    padding: 12px;
}

.inventory-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.inventory-panel-head span,
.inventory-filter-group strong {
    color: var(--boxcar-dark);
    font-size: 13px;
    font-weight: 950;
}

.inventory-panel-head a {
    color: #9a6510;
    font-size: 12px;
    font-weight: 900;
}

.inventory-filter-group {
    border-top: 1px solid rgba(5, 11, 32, 0.08);
    padding: 10px 0;
}

.inventory-filter-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: rgba(5, 11, 32, 0.68);
    font-size: 12px;
    font-weight: 750;
}

.inventory-filter-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--boxcar-blue);
}

.inventory-filter-group input[type="range"] {
    width: 100%;
    margin-top: 10px;
    accent-color: var(--boxcar-blue);
}

.inventory-range {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    color: rgba(5, 11, 32, 0.62);
    font-size: 11px;
    font-weight: 850;
}

.inventory-apply {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--boxcar-dark);
    color: #fff;
    cursor: pointer;
    font-weight: 950;
}

.inventory-results__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 12px;
}

.inventory-results__head h2 {
    max-width: 560px;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 850;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.inventory-results__head h2 em {
    color: #d9991d;
    font-style: normal;
}

.inventory-sort {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.inventory-sort button {
    min-height: 42px;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--boxcar-dark);
    cursor: pointer;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(5, 11, 32, 0.06);
}

.inventory-sort button.active {
    border-color: rgba(246, 189, 75, 0.5);
    background: rgba(246, 189, 75, 0.2);
}

.inventory-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    margin-bottom: 16px;
    padding: 13px 16px;
}

.inventory-alert strong {
    color: var(--boxcar-dark);
    font-size: 15px;
    font-weight: 950;
    white-space: nowrap;
}

.inventory-alert span {
    color: rgba(5, 11, 32, 0.62);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

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

.inventory-card-grid .bike-card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.inventory-card-grid .bike-card-media {
    aspect-ratio: 1.35;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(5, 11, 32, 0.1);
}

.inventory-card-grid .bike-card-media img {
    transition: none;
}

.inventory-card-grid .bike-card:hover .bike-card-media img {
    transform: none;
}

.inventory-card-grid .badge-row {
    top: 12px;
    right: 12px;
    left: 12px;
    align-items: flex-start;
}

.inventory-card-grid .badge {
    min-height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--boxcar-dark);
    padding: 0 10px;
    font-size: 11px;
    box-shadow: 0 12px 26px rgba(5, 11, 32, 0.12);
}

.bike-favorite {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--boxcar-dark);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(5, 11, 32, 0.12);
}

.inventory-card-grid .bike-card-body {
    padding: 10px 0 0;
}

.bike-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.bike-title-row h3 {
    overflow: hidden;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bike-title-row span {
    color: var(--boxcar-dark);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.bike-location {
    margin: 6px 0 0;
    color: rgba(5, 11, 32, 0.58);
    font-size: 13px;
    font-weight: 700;
}

.inventory-card-grid .spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 0;
}

.inventory-card-grid .spec {
    border: 0;
    background: transparent;
    padding: 0;
}

.inventory-card-grid .spec strong,
.inventory-card-grid .spec span {
    display: inline;
    color: rgba(5, 11, 32, 0.68);
    font-size: 12px;
    font-weight: 800;
}

.inventory-card-grid .spec span::before {
    content: " ";
}

.bike-card-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 9px;
}

.bike-card-trust span {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: rgba(5, 11, 32, 0.62);
    padding: 0 8px;
    font-size: 10px;
    font-weight: 850;
}

.inventory-card-grid .card-footer {
    border-top: 0;
    padding-top: 10px;
}

.inventory-card-grid .price {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: var(--boxcar-dark);
    font-size: 17px;
}

.inventory-card-grid .price small {
    color: rgba(5, 11, 32, 0.6);
}

.inventory-card-grid .btn {
    min-height: 34px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 11px;
}

.inventory-map {
    position: relative;
    top: auto;
    max-height: none;
    grid-column: 1 / -1;
    overflow: hidden;
    min-height: 340px;
    border-radius: 20px;
    margin-top: 6px;
}

.inventory-map__canvas {
    position: absolute;
    inset: 76px 0 62px;
    background:
        linear-gradient(rgba(5, 11, 32, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 11, 32, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 35% 30%, rgba(246, 189, 75, 0.26), transparent 18%),
        radial-gradient(circle at 72% 64%, rgba(5, 11, 32, 0.16), transparent 22%),
        #e8edf0;
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.inventory-map__canvas::after {
    position: absolute;
    inset: 16% 12%;
    border: 2px dashed rgba(5, 11, 32, 0.12);
    border-radius: 42% 58% 48% 52%;
    content: "";
}

.inventory-map__pin {
    position: absolute;
    z-index: 1;
    display: inline-grid;
    min-width: 66px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: var(--boxcar-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(5, 11, 32, 0.22);
}

.inventory-map__top,
.inventory-map__legend {
    position: absolute;
    right: 16px;
    left: 16px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    padding: 16px;
    box-shadow: 0 18px 42px rgba(5, 11, 32, 0.12);
    backdrop-filter: blur(14px) saturate(125%);
}

.inventory-map__top {
    top: 16px;
}

.inventory-map__legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 16px;
}

.inventory-map__top span {
    display: block;
    color: #9a6510;
    font-size: 12px;
    font-weight: 900;
}

.inventory-map__top strong {
    display: block;
    margin-top: 4px;
    color: var(--boxcar-dark);
    font-size: 18px;
    font-weight: 950;
}

.inventory-map__legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(5, 11, 32, 0.62);
    font-size: 13px;
    font-weight: 800;
}

.inventory-map__legend i {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--boxcar-blue);
}

.inventory-bottom-cta {
    padding: 18px 0 42px;
}

.inventory-bottom-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-radius: 24px;
    padding: 24px;
}

.inventory-bottom-cta h2 {
    max-width: 720px;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.08;
}

.inventory-bottom-cta a {
    display: inline-flex;
    min-height: 54px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    padding: 0 24px;
    font-weight: 950;
}

body.inventory-listing {
    background: #f4f6f5;
}

body.inventory-listing .marketplace-surface {
    overflow: visible;
    background:
        radial-gradient(circle at 14% 9%, rgba(246, 189, 75, 0.14), transparent 26%),
        linear-gradient(180deg, #f8faf9, #f3f5f4 42%, #fff);
}

body.inventory-listing .marketplace-surface::before,
body.inventory-listing .marketplace-surface::after {
    display: none;
}

body.inventory-listing .site-header {
    background: rgba(8, 12, 16, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 46px rgba(5, 11, 32, 0.24);
    backdrop-filter: blur(16px) saturate(120%);
}

body.inventory-listing .nav-wrap,
body.inventory-listing .site-header.is-scrolled .nav-wrap {
    width: min(1480px, calc(100% - 56px));
    min-height: 78px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
}

body.inventory-listing .brand-text,
body.inventory-listing .brand-text span,
body.inventory-listing .nav-links a {
    color: #fff;
}

body.inventory-listing .btn-outline,
body.inventory-listing .nav-cart {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

body.inventory-listing .btn-primary {
    box-shadow: 0 14px 30px rgba(246, 189, 75, 0.2);
}

.clean-inventory {
    display: grid;
    width: min(1480px, calc(100% - 56px));
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 38px;
    margin: 0 auto;
    padding: 118px 0 70px;
}

.clean-search-rail {
    position: sticky;
    top: 104px;
    display: grid;
    width: 148px;
    align-self: start;
    overflow: hidden;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 52px rgba(5, 11, 32, 0.08);
    backdrop-filter: blur(14px) saturate(120%);
}

.clean-search-rail label,
.clean-search-rail button {
    display: grid;
    min-height: 70px;
    align-content: center;
    gap: 6px;
    border: 0;
    border-bottom: 1px solid rgba(5, 11, 32, 0.12);
    background: transparent;
    color: var(--boxcar-dark);
    padding: 0 14px;
    font-size: 12px;
    font-weight: 750;
}

.clean-search-rail label span {
    overflow: hidden;
    color: rgba(5, 11, 32, 0.52);
    font-size: 10px;
    font-weight: 900;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.clean-search-rail input,
.clean-search-rail select {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--boxcar-dark);
    font-size: 13px;
    font-weight: 850;
    outline: 0;
}

.clean-search-rail button {
    min-height: 58px;
    border-bottom: 0;
    background: var(--boxcar-dark);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 950;
    place-items: center;
    text-align: center;
    text-transform: uppercase;
}

.clean-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(5, 11, 32, 0.54);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 20px;
}

.clean-breadcrumb a:hover,
.clean-breadcrumb strong {
    color: #b67812;
}

.clean-toolbar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 34px;
}

.clean-toolbar__count,
.clean-toolbar__actions {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    border-radius: 14px;
    border: 1px solid rgba(5, 11, 32, 0.06);
    background: rgba(255, 255, 255, 0.86);
    padding: 6px;
    box-shadow: 0 14px 34px rgba(5, 11, 32, 0.06);
}

.clean-toolbar__count {
    justify-self: start;
    gap: 14px;
    padding: 0 20px;
}

.clean-toolbar__count span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border-radius: 999px;
    background: rgba(246, 189, 75, 0.18);
    color: #8a5d12;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.clean-toolbar__count strong {
    display: block;
    color: var(--boxcar-dark);
    font-size: 15px;
    font-weight: 900;
}

.clean-toolbar__count small {
    display: block;
    margin-top: 2px;
    color: rgba(5, 11, 32, 0.54);
    font-size: 12px;
    font-weight: 750;
}

.clean-toolbar__actions {
    gap: 8px;
}

.clean-toolbar__actions button,
.clean-sort {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 11, 32, 0.1);
    border-radius: 10px;
    background: #fff;
    color: var(--boxcar-dark);
    cursor: pointer;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 850;
}

.clean-sort {
    gap: 8px;
}

.clean-sort span {
    color: rgba(5, 11, 32, 0.52);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.clean-sort select {
    border: 0;
    background: transparent;
    color: var(--boxcar-dark);
    font: inherit;
    outline: 0;
}

.clean-toolbar__actions button.active {
    background: var(--boxcar-dark);
    color: #fff;
}

.clean-toolbar__actions button:hover {
    border-color: rgba(246, 189, 75, 0.48);
}

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

.clean-card-grid .bike-card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.clean-card-grid .bike-card-media {
    aspect-ratio: 1.34;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(5, 11, 32, 0.08);
}

.clean-card-grid .bike-card-media img,
.clean-card-grid .bike-card:hover .bike-card-media img {
    transform: none;
    transition: none;
}

.clean-card-grid .badge-row {
    top: 12px;
    right: 12px;
    left: 12px;
}

.clean-card-grid .badge {
    min-height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--boxcar-dark);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none;
}

.clean-card-grid .badge:first-child {
    border: 1px solid rgba(246, 189, 75, 0.22);
}

.clean-card-grid .bike-favorite {
    width: 30px;
    height: 30px;
    box-shadow: none;
}

.clean-card-grid .bike-card-body {
    padding: 13px 0 0;
}

.clean-card-grid .bike-title-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.clean-card-grid .bike-title-row h3 {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
}

.clean-card-grid .bike-title-row span {
    font-size: 13px;
}

.clean-card-grid .bike-location {
    margin-top: 7px;
    color: rgba(5, 11, 32, 0.58);
    font-size: 14px;
    font-weight: 650;
}

.clean-card-grid .spec-row {
    display: block;
    margin: 7px 0 0;
}

.clean-card-grid .spec {
    display: inline;
    border: 0;
    background: transparent;
    padding: 0;
}

.clean-card-grid .spec strong,
.clean-card-grid .spec span {
    display: inline;
    color: rgba(5, 11, 32, 0.58);
    font-size: 13px;
    font-weight: 650;
}

.clean-card-grid .spec + .spec::before {
    color: rgba(5, 11, 32, 0.42);
    content: " - ";
}

.clean-card-grid .card-footer {
    display: block;
    border-top: 0;
    padding-top: 10px;
}

.clean-card-grid .price {
    color: var(--boxcar-dark);
    font-size: 15px;
    font-weight: 950;
}

.clean-card-grid .price small {
    color: var(--boxcar-dark);
    font-size: 15px;
    font-weight: 950;
}

.clean-card-grid .bike-card:hover .bike-title-row h3 {
    color: #b67812;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 14px;
    margin-top: 26px;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    min-height: 458px;
    border-radius: var(--radius);
    object-fit: cover;
}

.gallery-stack {
    display: grid;
    gap: 14px;
}

.gallery-stack img {
    min-height: 222px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 26px;
    align-items: start;
}

.detail-content {
    display: grid;
    gap: 18px;
}

.booking-card {
    padding: 18px;
}

.price-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.price-line strong {
    font-size: 32px;
}

.assurance-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.assurance-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    padding: 14px;
}

body.motorcycle-detail .marketplace-surface {
    overflow: visible;
    background:
        radial-gradient(circle at 18% 14%, rgba(246, 189, 75, 0.14), transparent 30%),
        linear-gradient(180deg, #eef2f4 0%, #f6f7f7 48%, #fff 100%);
}

body.motorcycle-detail .marketplace-surface::before,
body.motorcycle-detail .marketplace-surface::after {
    display: none;
}

.detail-hero-v2 {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #070b10;
    color: #fff;
    isolation: isolate;
}

.detail-hero-v2__media,
.detail-hero-v2__shade {
    position: absolute;
    inset: 0;
}

.detail-hero-v2__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.detail-hero-v2__shade {
    z-index: 1;
    background:
        radial-gradient(circle at 76% 24%, rgba(246, 189, 75, 0.18), transparent 27%),
        linear-gradient(90deg, rgba(5, 9, 15, 0.94) 0%, rgba(5, 9, 15, 0.78) 50%, rgba(5, 9, 15, 0.24) 100%),
        linear-gradient(180deg, rgba(5, 9, 15, 0.18), #05090f 100%);
}

.detail-hero-v2__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 720px;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: end;
    padding: 150px 0 72px;
}

.detail-hero-v2__copy {
    max-width: 780px;
}

.detail-crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 800;
}

.detail-crumbs a,
.detail-crumbs strong {
    color: #fff;
}

.detail-kicker {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(246, 189, 75, 0.38);
    border-radius: 999px;
    background: rgba(246, 189, 75, 0.12);
    color: #f6d38b;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-hero-v2 h1 {
    max-width: 760px;
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: 0;
}

.detail-hero-v2__copy p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.65;
}

.detail-hero-v2__chips,
.detail-feature-pills,
.detail-owner-card__checks,
.detail-assurance-v2__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.detail-hero-v2__chips {
    margin-top: 24px;
}

.detail-hero-v2__chips span,
.detail-feature-pills span,
.detail-owner-card__checks span,
.detail-assurance-v2__steps span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 850;
}

.detail-quick-book {
    align-self: end;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    padding: 18px;
    backdrop-filter: blur(18px) saturate(135%);
}

.detail-quick-book__label,
.detail-quick-book__meta span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-quick-book__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 8px 0 16px;
}

.detail-quick-book__price strong {
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}

.detail-quick-book__price small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    font-weight: 800;
}

.detail-quick-book__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 0;
}

.detail-quick-book__meta strong {
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}

.detail-quick-book a {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    font-weight: 950;
}

.detail-gallery-v2 {
    position: relative;
    z-index: 3;
    margin-top: -48px;
}

.detail-gallery-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 14px;
}

.detail-gallery-v2__main,
.detail-gallery-v2__stack {
    min-width: 0;
}

.detail-gallery-v2__main {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 22px;
    background: #dce2e7;
    box-shadow: 0 28px 90px rgba(5, 11, 32, 0.18);
}

.detail-gallery-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-gallery-v2__main figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(5, 11, 32, 0.5);
    color: #fff;
    padding: 13px 15px;
    font-size: 14px;
    font-weight: 850;
    backdrop-filter: blur(14px);
}

.detail-gallery-v2__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-gallery-v2__stack img {
    min-height: 233px;
    overflow: hidden;
    border-radius: 18px;
    background: #dce2e7;
    box-shadow: 0 20px 54px rgba(5, 11, 32, 0.1);
}

.detail-gallery-v2__stack img:first-child {
    grid-column: 1 / -1;
}

.detail-content-v2 {
    padding: 58px 0 74px;
    color: var(--boxcar-dark);
}

.detail-content-v2__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.detail-content-v2__main {
    display: grid;
    gap: 22px;
}

.detail-section-head h2 {
    max-width: 720px;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: 0;
}

.detail-spec-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.detail-spec-board article,
.detail-panel-v2,
.detail-booking-v2 {
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 52px rgba(5, 11, 32, 0.06);
}

.detail-spec-board article {
    padding: 17px;
}

.detail-spec-board span {
    display: block;
    color: rgba(5, 11, 32, 0.56);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-spec-board strong {
    display: block;
    margin-top: 8px;
    color: var(--boxcar-dark);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.05;
}

.detail-panel-v2 {
    padding: 24px;
}

.detail-panel-v2 h3,
.detail-assurance-v2 h3 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.detail-panel-v2 p,
.detail-assurance-v2 p,
.detail-booking-v2 p {
    margin: 12px 0 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.62;
}

.detail-feature-pills {
    margin-top: 18px;
}

.detail-feature-pills span,
.detail-owner-card__checks span,
.detail-assurance-v2__steps span {
    border-color: rgba(5, 11, 32, 0.08);
    background: rgba(246, 189, 75, 0.12);
    color: var(--boxcar-dark);
}

.detail-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.detail-owner-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.detail-owner-card__avatar {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 18px;
    background: var(--boxcar-dark);
    color: var(--boxcar-blue);
    font-size: 24px;
    font-weight: 950;
}

.detail-owner-card__checks {
    margin-top: 16px;
}

.detail-condition-list,
.detail-price-list {
    display: grid;
    gap: 0;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.detail-condition-list li,
.detail-price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 12px 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 14px;
    font-weight: 750;
}

.detail-condition-list li:last-child,
.detail-price-list li:last-child {
    border-bottom: 0;
}

.detail-condition-list strong,
.detail-price-list strong {
    color: var(--boxcar-dark);
    font-weight: 950;
    text-align: right;
}

.detail-assurance-v2 {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #07111f, #171d27);
    color: #fff;
    padding: 22px;
    box-shadow: 0 28px 80px rgba(5, 11, 32, 0.18);
}

.detail-assurance-v2__document {
    display: grid;
    min-height: 238px;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background:
        radial-gradient(circle at 78% 14%, rgba(246, 189, 75, 0.24), transparent 34%),
        rgba(255, 255, 255, 0.08);
    padding: 22px;
}

.detail-assurance-v2__document span,
.detail-assurance-v2__document small {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 850;
}

.detail-assurance-v2__document strong {
    display: block;
    margin: 14px 0 9px;
    color: var(--boxcar-blue);
    font-size: 68px;
    font-weight: 950;
    line-height: 0.9;
}

.detail-assurance-v2 h3,
.detail-assurance-v2 .boxcar-subtitle {
    color: #fff;
}

.detail-assurance-v2 p {
    color: rgba(255, 255, 255, 0.68);
}

.detail-assurance-v2__steps {
    margin-top: 18px;
}

.detail-assurance-v2__steps span {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.detail-booking-v2 {
    position: sticky;
    top: 96px;
    padding: 18px;
}

.detail-booking-v2__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.detail-booking-v2__head span {
    display: block;
    color: rgba(5, 11, 32, 0.56);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-booking-v2__head strong {
    display: block;
    margin-top: 5px;
    color: var(--boxcar-dark);
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.detail-booking-v2__head small {
    font-size: 15px;
}

.detail-booking-v2__rating {
    display: grid !important;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: rgba(246, 189, 75, 0.18);
    color: #8a5d12 !important;
    font-size: 15px !important;
}

.detail-booking-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.detail-booking-form label {
    display: grid;
    gap: 7px;
}

.detail-booking-form label span {
    color: rgba(5, 11, 32, 0.56);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-booking-form input,
.detail-booking-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(5, 11, 32, 0.1);
    border-radius: 12px;
    background: #fff;
    color: var(--boxcar-dark);
    padding: 0 13px;
    font-size: 14px;
    font-weight: 850;
    outline: 0;
}

.detail-booking-form button {
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    cursor: pointer;
    font-size: 15px;
    font-weight: 950;
}

.detail-price-list {
    margin-top: 16px;
}

.detail-price-list li:last-child {
    margin-top: 6px;
    border-top: 1px solid rgba(5, 11, 32, 0.12);
    padding-top: 16px;
    font-size: 16px;
}

body.motorcycle-detail .marketplace-surface {
    background:
        radial-gradient(circle at 14% 9%, rgba(246, 189, 75, 0.12), transparent 26%),
        linear-gradient(180deg, #f8faf9, #f3f5f4 42%, #fff);
}

.detail-hero-v2 {
    min-height: 0;
    overflow: visible;
    background: transparent;
    color: var(--boxcar-dark);
}

.detail-hero-v2__media,
.detail-hero-v2__shade {
    display: none;
}

.detail-hero-v2__grid {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 124px 0 26px;
}

.detail-hero-v2__copy {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: end;
}

.detail-crumbs {
    margin-bottom: 0;
    color: rgba(5, 11, 32, 0.54);
    font-size: 13px;
    font-weight: 850;
}

.detail-crumbs a {
    color: rgba(5, 11, 32, 0.62);
}

.detail-crumbs strong,
.detail-crumbs a:hover {
    color: #b67812;
}

.detail-kicker {
    min-height: 30px;
    border-color: rgba(246, 189, 75, 0.22);
    background: rgba(246, 189, 75, 0.14);
    color: #8a5d12;
    padding: 0 12px;
    font-size: 11px;
}

.detail-hero-v2 h1 {
    max-width: 820px;
    margin: 12px 0 8px;
    color: var(--boxcar-dark);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 850;
    line-height: 1.06;
}

.detail-hero-v2__copy p {
    max-width: 700px;
    color: rgba(5, 11, 32, 0.62);
    font-size: 16px;
    line-height: 1.55;
}

.detail-hero-v2__chips {
    margin-top: 0;
}

.detail-hero-v2__chips span {
    min-height: 34px;
    border-color: rgba(5, 11, 32, 0.08);
    background: rgba(255, 255, 255, 0.78);
    color: var(--boxcar-dark);
    box-shadow: 0 10px 26px rgba(5, 11, 32, 0.04);
}

.detail-quick-book {
    border-color: rgba(5, 11, 32, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 44px rgba(5, 11, 32, 0.08);
    padding: 16px;
    backdrop-filter: blur(14px) saturate(120%);
}

.detail-quick-book__label {
    color: rgba(5, 11, 32, 0.52);
}

.detail-quick-book__price {
    margin: 6px 0 12px;
}

.detail-quick-book__price strong {
    color: var(--boxcar-dark);
    font-size: 34px;
}

.detail-quick-book__price small {
    color: rgba(5, 11, 32, 0.56);
}

.detail-quick-book__meta {
    display: none;
}

.detail-gallery-v2 {
    margin-top: 0;
}

.detail-gallery-v2__grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
}

.detail-gallery-v2__main {
    min-height: 410px;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(5, 11, 32, 0.1);
}

.detail-gallery-v2__main figcaption {
    right: 14px;
    bottom: 14px;
    left: auto;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
}

.detail-gallery-v2__stack img {
    min-height: 198px;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(5, 11, 32, 0.08);
}

.detail-content-v2 {
    padding: 38px 0 66px;
}

.detail-content-v2__grid {
    gap: 28px;
}

.detail-content-v2__main {
    gap: 18px;
}

.detail-section-head h2 {
    max-width: 650px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.14;
}

.detail-spec-board {
    gap: 10px;
}

.detail-spec-board article,
.detail-panel-v2,
.detail-booking-v2 {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 38px rgba(5, 11, 32, 0.05);
}

.detail-spec-board article {
    padding: 15px;
}

.detail-spec-board strong {
    font-size: 20px;
}

.detail-panel-v2 {
    padding: 20px;
}

.detail-panel-v2 h3,
.detail-assurance-v2 h3 {
    font-size: 22px;
}

.detail-assurance-v2 {
    grid-template-columns: 180px minmax(0, 1fr);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 48px rgba(5, 11, 32, 0.12);
}

.detail-assurance-v2__document {
    min-height: 180px;
    border-radius: 14px;
    padding: 18px;
}

.detail-assurance-v2__document strong {
    font-size: 52px;
}

.detail-booking-v2 {
    top: 104px;
    padding: 16px;
}

.dashboard-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 300px minmax(0, 1fr);
    background: var(--canvas);
}

.dashboard-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid var(--line);
    background: #fff;
    padding: 22px;
}

.sidebar-profile {
    margin: 22px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    padding: 14px;
}

.sidebar-profile strong {
    display: block;
}

.sidebar-profile span {
    color: var(--muted);
    font-size: 13px;
}

.dashboard-nav {
    display: grid;
    gap: 7px;
}

.dashboard-nav a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    border-radius: var(--radius);
    color: var(--muted);
    padding: 12px;
    font-weight: 800;
}

.dashboard-nav a.active,
.dashboard-nav a:hover {
    background: var(--ink);
    color: #fff;
}

.dashboard-main {
    min-width: 0;
    padding: 28px;
}

.dashboard-command {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.dashboard-title h1 {
    margin: 10px 0 6px;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.04;
    font-weight: 950;
}

.command-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.kpi-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.kpi-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.kpi-card strong {
    display: block;
    margin-top: 9px;
    font-size: 30px;
    line-height: 1;
}

.kpi-card p {
    margin: 8px 0 0;
    font-size: 13px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 18px;
}

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

.ops-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-2);
    padding: 14px;
}

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

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

.table th,
.table td {
    border-bottom: 1px solid var(--line);
    padding: 13px 10px;
    text-align: left;
    vertical-align: middle;
}

.table th {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.status {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    border-radius: 999px;
    padding: 0 9px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.status.green {
    background: #e5f8f1;
    color: #087f57;
}

.status.blue {
    background: #e8edff;
    color: var(--blue-2);
}

.status.amber {
    background: #fff3d8;
    color: #805004;
}

.status.red {
    background: #ffe8ec;
    color: var(--red);
}

.progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--line);
}

.progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--blue);
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.timeline-dot {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
}

.timeline-item strong {
    display: block;
}

.timeline-item span {
    color: var(--muted);
    font-size: 13px;
}

.home-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    background: #07090d;
}

.home-hero__media,
.home-hero__shade {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: homeHeroDrift 18s ease-in-out infinite alternate;
}

.home-hero__shade {
    z-index: 1;
    background:
        radial-gradient(circle at 78% 24%, rgba(194, 143, 77, 0.2), transparent 28%),
        linear-gradient(90deg, rgba(5, 8, 13, 0.94) 0%, rgba(5, 8, 13, 0.75) 47%, rgba(5, 8, 13, 0.2) 100%),
        linear-gradient(180deg, rgba(5, 8, 13, 0.22) 0%, #05080d 100%);
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 760px;
    grid-template-columns: minmax(0, 0.92fr) 330px;
    gap: 26px;
    align-items: end;
    padding: 126px 0 28px;
}

.home-hero__copy {
    align-self: center;
    max-width: 700px;
    color: #fff;
}

.home-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border: 1px solid rgba(236, 193, 122, 0.38);
    border-radius: 999px;
    background: rgba(236, 193, 122, 0.1);
    color: #f0c47d;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-kicker--dark {
    border-color: rgba(9, 17, 27, 0.14);
    background: #fff;
    color: #7d5424;
}

.home-hero h1,
.home-section h2,
.home-footer-cta h2 {
    letter-spacing: 0;
}

.home-hero h1 {
    max-width: 720px;
    margin: 18px 0 16px;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.02;
    font-weight: 950;
}

.home-hero__copy p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-btn {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-btn::after {
    position: absolute;
    inset: 0 auto 0 -55%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    content: "";
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
}

.home-btn:hover::after {
    left: 115%;
}

.home-btn--primary {
    background: linear-gradient(135deg, #e3b76c, #98611f);
    color: #090c10;
    box-shadow: 0 18px 45px rgba(194, 143, 77, 0.26);
}

.home-btn--glass {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(18px);
}

.home-spotlight {
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.home-spotlight__tag {
    display: inline-flex;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(14, 176, 132, 0.18);
    color: #9af4d5;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.home-spotlight strong {
    display: block;
    font-size: 21px;
}

.home-spotlight span:not(.home-spotlight__tag) {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.home-spotlight__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 14px;
}

.home-spotlight__price b {
    font-size: 32px;
}

.home-search {
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    padding: 10px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.home-search__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.home-search__tabs span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border-radius: 999px;
    background: #eef1f5;
    color: #657084;
    padding: 0 13px;
    font-size: 12px;
    font-weight: 900;
}

.home-search__tabs .active {
    background: #07111f;
    color: #fff;
}

.home-search__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.82fr 0.82fr 0.82fr auto;
    gap: 10px;
    align-items: end;
}

.home-search label {
    min-width: 0;
}

.home-search label span {
    display: block;
    margin-bottom: 7px;
    color: #657084;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.home-search input,
.home-search select {
    width: 100%;
    min-height: 43px;
    border: 1px solid #d8dee8;
    border-radius: var(--radius);
    background: #fff;
    color: #07111f;
    padding: 0 12px;
    outline: none;
}

.home-search input:focus,
.home-search select:focus {
    border-color: #c28f4d;
    box-shadow: 0 0 0 4px rgba(194, 143, 77, 0.13);
}

.home-trust {
    background: #05080d;
    color: #fff;
    padding: 0 0 28px;
}

.home-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.home-trust__grid div {
    background: rgba(255, 255, 255, 0.06);
    padding: 22px;
}

.home-trust__grid strong {
    display: block;
    color: #f0c47d;
    font-size: 30px;
    line-height: 1;
}

.home-trust__grid span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.45;
}

.home-section {
    padding: 92px 0;
    background: #05080d;
    color: #fff;
}

.home-section--light {
    background: #f6f1e9;
    color: #07111f;
}

.home-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.home-section__head h2,
.home-journey h2,
.home-owner h2,
.home-assurance h2,
.home-footer-cta h2 {
    max-width: 820px;
    margin: 14px 0 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    font-weight: 950;
}

.home-link {
    color: #8a5d27;
    font-weight: 950;
}

.home-bike-showcase {
    display: grid;
    grid-template-columns: 1.25fr 0.875fr 0.875fr;
    gap: 18px;
}

.home-bike-card {
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.1);
    border-radius: var(--radius);
    background: #fff;
    color: #07111f;
    box-shadow: 0 28px 70px rgba(42, 30, 18, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 90px rgba(42, 30, 18, 0.18);
}

.home-bike-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.home-bike-card--large img {
    height: 360px;
}

.home-bike-card__body {
    padding: 18px;
}

.home-bike-card__meta,
.home-bike-card__footer,
.home-mini-specs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.home-bike-card__meta {
    color: #7c8798;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-bike-card h3 {
    margin: 10px 0 14px;
    font-size: 25px;
    line-height: 1.12;
}

.home-mini-specs span {
    border-radius: 999px;
    background: #f1f4f7;
    color: #485466;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 900;
}

.home-bike-card__footer {
    margin-top: 18px;
    border-top: 1px solid #e4e8ef;
    padding-top: 15px;
}

.home-bike-card__footer strong {
    font-size: 28px;
}

.home-bike-card__footer small {
    color: #7c8798;
    font-size: 12px;
}

.home-bike-card__footer a {
    color: #8a5d27;
    font-weight: 950;
}

.home-categories {
    background: #10151d;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.home-category {
    min-height: 174px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    color: #fff;
    padding: 18px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.home-category:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 196, 125, 0.56);
    background: linear-gradient(180deg, rgba(240, 196, 125, 0.14), rgba(255, 255, 255, 0.04));
}

.home-category span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius);
    background: #f0c47d;
    color: #07111f;
    font-weight: 950;
}

.home-category strong {
    display: block;
    margin-top: 26px;
    font-size: 20px;
}

.home-category small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.home-journey {
    background: #f6f1e9;
    color: #07111f;
}

.home-journey__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.home-journey p,
.home-owner p {
    max-width: 620px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.home-steps div {
    border: 1px solid rgba(7, 17, 31, 0.1);
    border-radius: var(--radius);
    background: #fff;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(42, 30, 18, 0.09);
}

.home-steps b {
    display: block;
    color: #c28f4d;
    font-size: 13px;
}

.home-steps strong {
    display: block;
    margin-top: 20px;
    font-size: 20px;
}

.home-steps span {
    display: block;
    margin-top: 8px;
    color: #6b7280;
    line-height: 1.55;
}

.home-owner {
    background:
        linear-gradient(90deg, rgba(5, 8, 13, 0.95), rgba(5, 8, 13, 0.7)),
        url("https://images.unsplash.com/photo-1508357941501-0924cf312bbd?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.home-owner__grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 34px;
    align-items: center;
}

.home-owner__copy p {
    color: rgba(255, 255, 255, 0.68);
}

.home-owner__panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-owner__panel div {
    min-height: 144px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px;
    backdrop-filter: blur(18px);
}

.home-owner__panel span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-owner__panel strong {
    display: block;
    margin-top: 28px;
    font-size: 36px;
}

.home-assurance {
    background: #f7f9fb;
    color: #07111f;
}

.home-assurance__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.home-assurance__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-assurance__cards article {
    border: 1px solid #dfe5ee;
    border-radius: var(--radius);
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.home-assurance__cards span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: var(--radius);
    background: #07111f;
    color: #f0c47d;
    font-weight: 950;
}

.home-assurance__cards strong {
    display: block;
    margin-top: 22px;
    font-size: 20px;
}

.home-assurance__cards p {
    color: #667183;
    line-height: 1.6;
}

.home-footer-cta {
    background: #05080d;
    color: #fff;
    padding: 82px 0;
}

.home-footer-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(240, 196, 125, 0.13), rgba(255, 255, 255, 0.04));
    padding: 28px;
}

@keyframes homeHeroDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.1) translate3d(-18px, -10px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__media img {
        animation: none;
    }

    .home-btn,
    .home-bike-card,
    .home-category {
        transition: none;
    }
}

@media (max-width: 1180px) {
    .hero-stage,
    .split-grid,
    .inventory-shell,
    .detail-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .hero-premium::before {
        height: 66%;
        background: var(--ink);
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .filter-console,
    .map-panel,
    .booking-card {
        position: static;
    }

    .map-panel {
        height: 480px;
    }

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

    .category-grid,
    .city-grid,
    .trust-strip,
    .home-search__grid,
    .home-bike-showcase,
    .home-category-grid,
    .home-journey__grid,
    .home-owner__grid,
    .home-assurance__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-hero__inner,
    .home-section__head,
    .home-owner__grid,
    .home-assurance__grid {
        grid-template-columns: 1fr;
    }

    .home-search__grid,
    .home-bike-showcase,
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .container,
    .wide-container {
        width: min(100% - 24px, 1240px);
    }

    .nav-wrap,
    .footer-grid,
    .section-head,
    .toolbar,
    .dashboard-command,
    .booking-console {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .nav-links {
        display: none;
    }

    .nav-actions,
    .hero-actions,
    .command-actions {
        width: 100%;
        justify-content: stretch;
    }

    .nav-actions .btn,
    .hero-actions .btn,
    .command-actions .btn {
        flex: 1 1 auto;
    }

    .hero-stage {
        min-height: auto;
        padding-top: 28px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 430px;
        height: 430px;
    }

    .hero-floating-panel,
    .search-panel,
    .home-search__grid,
    .home-trust__grid,
    .home-bike-showcase,
    .home-category-grid,
    .home-steps,
    .home-owner__panel,
    .home-assurance__cards,
    .home-footer-cta__inner,
    .listing-grid,
    .category-grid,
    .city-grid,
    .trust-strip,
    .process-grid,
    .detail-gallery,
    .assurance-rail,
    .kpi-grid,
    .ops-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 52px 0;
    }

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

    .dashboard-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .dashboard-main {
        padding: 18px;
    }

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

    .home-hero,
    .home-hero__inner {
        min-height: auto;
    }

    .home-hero__inner {
        padding: 116px 0 22px;
    }

    .home-spotlight {
        align-self: auto;
    }

    .home-section {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .nav-actions,
    .hero-actions,
    .command-actions,
    .dashboard-nav {
        grid-template-columns: 1fr;
        display: grid;
    }

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

    .condition-list li,
    .card-footer,
    .price-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-hero h1 {
        font-size: 39px;
    }

    .home-hero__actions,
    .home-search__tabs {
        display: grid;
    }

    .home-btn {
        width: 100%;
    }
}

@media (max-width: 1320px) {
    .nav-wrap {
        gap: 20px;
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
        font-size: 15px;
    }

    .brand-text {
        font-size: 25px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .site-header .btn-primary,
    .site-header .btn-outline {
        min-height: 46px;
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .site-header {
        top: 12px;
        padding: 0 14px;
    }

    .site-header.is-scrolled {
        top: 8px;
        padding: 0 10px;
    }

    .nav-wrap {
        grid-template-columns: auto auto;
        min-height: 66px;
        justify-content: space-between;
        border-radius: 18px;
        padding: 0 14px;
    }

    .site-header.is-scrolled .nav-wrap {
        min-height: 62px;
        border-radius: 16px;
    }

    .nav-links {
        display: none;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 23px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-cart {
        width: 40px;
        height: 40px;
    }

    .site-header .btn-primary,
    .site-header .btn-outline {
        min-height: 42px;
        padding: 0 13px;
        font-size: 13px;
    }

    .btn-arrow {
        width: 28px;
        height: 28px;
    }

    .page-hero {
        padding-top: 108px;
    }
}

@media (max-width: 620px) {
    .nav-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }

    .brand {
        justify-content: center;
    }

    .nav-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1.4fr;
    }

    .nav-cart {
        display: none;
    }

    .site-header .btn-primary,
    .site-header .btn-outline {
        width: 100%;
    }

    .page-hero {
        padding-top: 142px;
    }
}

/* Boxcar Home 3 direction approved by client */
:root {
    --boxcar-blue: #f6bd4b;
    --boxcar-blue-hover: #e9aa2f;
    --boxcar-dark: #050b20;
    --boxcar-muted: #616670;
    --boxcar-soft: #f6f6f6;
    --boxcar-line: #e9e9e9;
}

.site-header {
    top: 0;
    padding: 0;
}

.site-header.is-scrolled {
    top: 0;
    padding: 0;
}

.nav-wrap {
    width: min(1430px, calc(100% - 40px));
    min-height: 90px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.site-header.is-scrolled .nav-wrap {
    width: 100%;
    min-height: 76px;
    border-radius: 0;
    background: rgba(18, 26, 34, 0.78);
    box-shadow: 0 10px 35px rgba(8, 12, 16, 0.16);
    padding: 0 max(24px, calc((100vw - 1430px) / 2));
    backdrop-filter: blur(18px) saturate(115%);
}

.brand {
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--boxcar-blue);
    color: #fff;
    box-shadow: none;
}

.brand-mark::after {
    display: none;
}

.brand-mark span {
    font-size: 13px;
}

.brand-text,
.brand-text span {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-links {
    gap: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 700;
}

.nav-links a {
    padding: 31px 0;
}

.site-header.is-scrolled .nav-links a {
    padding: 24px 0;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: #fff;
}

.site-header .btn-outline {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: transparent;
    color: #fff;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
}

.site-header .btn-primary {
    min-height: 48px;
    border-radius: 16px;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    padding: 0 10px 0 22px;
    box-shadow: none;
    font-size: 15px;
    font-weight: 700;
}

.site-header .btn-primary:hover {
    background: var(--boxcar-blue-hover);
}

.btn-arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
}

.nav-cart {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.28);
    font-size: 18px;
}

.boxcar-hero {
    position: relative;
    min-height: 760px;
    background:
        linear-gradient(90deg, rgba(5, 11, 32, 0.78), rgba(5, 11, 32, 0.35) 56%, rgba(5, 11, 32, 0.3)),
        url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=1900&q=86") center/cover;
    color: #fff;
    overflow: visible;
    z-index: 2;
}

.boxcar-hero__inner {
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
}

.boxcar-hero__content {
    max-width: 700px;
}

.boxcar-hero__content span {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.boxcar-hero__content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.boxcar-hero__content p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.boxcar-search {
    position: relative;
    z-index: 30;
    width: min(960px, 100%);
    margin-top: 36px;
}

.boxcar-search__tabs {
    display: flex;
    gap: 36px;
    margin-bottom: 18px;
}

.boxcar-search__tabs button {
    position: relative;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    cursor: pointer;
    padding: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.boxcar-search__tabs button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #fff;
    content: "";
    opacity: 0;
}

.boxcar-search__tabs button.active {
    color: #fff;
}

.boxcar-search__tabs button.active::after {
    opacity: 1;
}

.boxcar-search__fields {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 80px rgba(5, 11, 32, 0.26);
    backdrop-filter: blur(20px) saturate(145%);
}

.boxcar-search__fields label,
.boxcar-search__fields .boxcar-field {
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    padding: 15px 22px;
}

.boxcar-search__fields label > span,
.boxcar-search__fields .boxcar-field > span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
}

.boxcar-search__fields input,
.boxcar-search__fields select {
    width: 100%;
    height: 28px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.boxcar-type-menu {
    position: relative;
    display: inline-block;
    height: 28px;
    min-width: 132px;
    z-index: 60;
}

.boxcar-type-field {
    position: relative;
    overflow: visible;
    z-index: 80;
}

.boxcar-type-menu[open] {
    z-index: 1000;
}

.boxcar-type-menu summary {
    display: flex;
    width: max-content;
    height: 28px;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.boxcar-type-menu summary::-webkit-details-marker {
    display: none;
}

.boxcar-type-menu summary::after {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    border-bottom: 2px solid rgba(255, 255, 255, 0.86);
    content: "";
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.boxcar-type-menu[open] summary::after {
    transform: rotate(225deg) translateY(-2px);
}

.boxcar-type-menu__list {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    z-index: 2000;
    display: grid;
    min-width: 190px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(45, 58, 77, 0.72);
    box-shadow: 0 18px 54px rgba(5, 11, 32, 0.24);
    padding: 8px;
    backdrop-filter: blur(18px) saturate(140%);
}

.boxcar-type-menu__list button {
    min-width: 0;
    min-height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: #fff;
    cursor: pointer;
    padding: 0 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}

.boxcar-type-menu__list button:hover,
.boxcar-type-menu__list button:first-child {
    background: transparent !important;
    color: #fff;
}

.boxcar-type-menu[open] .boxcar-type-menu__list button,
.boxcar-type-menu[open] .boxcar-type-menu__list button:focus,
.boxcar-type-menu[open] .boxcar-type-menu__list button:first-child {
    background: transparent !important;
    color: #fff;
}

.boxcar-type-menu[open] .boxcar-type-menu__list button:hover,
.boxcar-type-menu[open] .boxcar-type-menu__list button:focus {
    background: rgba(5, 11, 32, 0.22) !important;
    color: #fff;
}

.boxcar-search__fields input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.boxcar-search__fields select option {
    color: var(--boxcar-dark);
}

.boxcar-search__fields button {
    min-width: 190px;
    border: 0;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    cursor: pointer;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
}

.boxcar-search__links {
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.boxcar-search__links span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(246, 189, 75, 0.36);
    border-radius: 999px;
    background: rgba(246, 189, 75, 0.12);
    color: #ffd887;
    padding: 0 14px;
    font-weight: 800;
}

.boxcar-search__links a {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.boxcar-search__links a:hover {
    border-color: rgba(246, 189, 75, 0.54);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.boxcar-category-strip {
    gap: 14px;
}

.boxcar-category-strip .boxcar-category-strip__label {
    border-color: rgba(246, 189, 75, 0.3);
}

.boxcar-category-strip a {
    position: relative;
    display: grid;
    min-width: 168px;
    min-height: 74px;
    align-content: center;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(7, 12, 18, 0.82), rgba(7, 12, 18, 0.42)),
        var(--category-image) center/cover;
    padding: 0 18px;
    box-shadow: 0 18px 44px rgba(5, 11, 32, 0.18);
}

.boxcar-category-strip a::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    content: "";
    opacity: 0;
    transition: opacity 0.18s ease;
}

.boxcar-category-strip a:hover {
    border-color: rgba(246, 189, 75, 0.46);
    background:
        linear-gradient(90deg, rgba(7, 12, 18, 0.7), rgba(7, 12, 18, 0.28)),
        var(--category-image) center/cover;
    transform: translateY(-3px);
}

.boxcar-category-strip a:hover::after {
    opacity: 1;
}

.boxcar-category-strip strong,
.boxcar-category-strip small {
    position: relative;
    z-index: 1;
}

.boxcar-category-strip strong {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.boxcar-category-strip small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.boxcar-stats {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 32px 0 4px;
    color: var(--boxcar-dark);
}

.boxcar-stats::before {
    display: none;
}

.boxcar-stats .container {
    position: relative;
    z-index: 1;
}

.boxcar-trust-band__head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.boxcar-trust-band__head span {
    color: #d9991d;
    font-size: 15px;
    font-weight: 700;
}

.boxcar-trust-band__head strong {
    max-width: 760px;
    color: var(--boxcar-dark);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.18;
    text-align: left;
}

.boxcar-trust-band__head strong em {
    color: #d9991d;
    font-style: normal;
}

.boxcar-section__head h2 em,
.boxcar-owner-cta h2 em {
    color: #d9991d;
    font-style: normal;
}

.boxcar-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.boxcar-stats__grid article {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    min-height: 168px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
    padding: 20px;
    box-shadow: 0 24px 72px rgba(5, 11, 32, 0.09);
    backdrop-filter: blur(18px) saturate(135%);
}

.boxcar-stats__grid article::after {
    display: none;
}

.boxcar-stats__grid article:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.74);
    box-shadow: 0 24px 72px rgba(5, 11, 32, 0.09);
}

.boxcar-stats__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(246, 189, 75, 0.36);
    border-radius: 16px;
    background: rgba(246, 189, 75, 0.16);
    color: #9a6510;
    font-size: 16px;
    font-weight: 900;
}

.boxcar-stats__grid article div > span {
    display: block;
    color: rgba(5, 11, 32, 0.58);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.boxcar-stats__grid strong {
    display: block;
    margin-top: 16px;
    color: var(--boxcar-dark);
    font-size: 38px;
    line-height: 1;
}

.boxcar-stats__grid small {
    display: block;
    margin-top: 12px;
    color: var(--boxcar-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.boxcar-section {
    background: transparent;
    padding: 36px 0;
    color: var(--boxcar-dark);
}

.boxcar-featured-section {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding-top: 30px;
}

.boxcar-featured-section::before {
    display: none;
}

.boxcar-featured-section .container {
    position: relative;
    z-index: 1;
}

.boxcar-section--soft {
    background: transparent;
}

.boxcar-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.boxcar-subtitle {
    display: block;
    margin-bottom: 8px;
    color: #d9991d;
    font-size: 15px;
    font-weight: 700;
}

.boxcar-section__head h2,
.boxcar-owner-cta h2 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.22;
}

.boxcar-title-btn,
.boxcar-primary-link {
    display: inline-flex;
    align-items: center;
    color: var(--boxcar-dark);
    font-weight: 700;
}

.boxcar-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.boxcar-section__actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--boxcar-dark);
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(5, 11, 32, 0.05);
}

.boxcar-section__actions a.active,
.boxcar-section__actions a:hover {
    border-color: rgba(246, 189, 75, 0.48);
    background: rgba(246, 189, 75, 0.18);
    color: var(--boxcar-dark);
}

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

.boxcar-bike-card {
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: none;
}

.boxcar-bike-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.boxcar-bike-card__image {
    position: relative;
    display: block;
    height: 218px;
    overflow: hidden;
    border-radius: 12px;
    background: #e9edf0;
}

.boxcar-bike-card__image::after {
    display: none;
}

.boxcar-bike-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.boxcar-bike-card:hover .boxcar-bike-card__image img {
    transform: none;
}

.boxcar-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--boxcar-dark);
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(5, 11, 32, 0.12);
}

.boxcar-bike-card__image button {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--boxcar-dark);
    cursor: pointer;
}

.boxcar-bike-card__body {
    margin-top: 10px;
    padding: 0;
}

.boxcar-bike-card__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.boxcar-bike-card__title-row h3 {
    min-width: 0;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.boxcar-bike-card__title-row span {
    flex: 0 0 auto;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.boxcar-bike-card__body p {
    margin: 7px 0 0;
    color: var(--boxcar-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.boxcar-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 7px 0 0;
    color: var(--boxcar-muted);
    font-size: 15px;
}

.boxcar-specs span {
    display: inline;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--boxcar-muted);
    font-weight: 700;
}

.boxcar-specs span:not(:last-child)::after {
    margin: 0 7px;
    content: "-";
}

.boxcar-bike-card__foot {
    display: block;
    border-top: 0;
    padding-top: 8px;
}

.boxcar-bike-card__foot strong {
    color: var(--boxcar-dark);
    font-size: 16px;
    font-weight: 900;
}

.boxcar-bike-card__foot small {
    color: var(--boxcar-dark);
    font-size: 16px;
    font-weight: 900;
}

.boxcar-bike-card__foot a {
    color: #9a6510;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.boxcar-featured-cta {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.boxcar-featured-cta a {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    border: 1px solid rgba(246, 189, 75, 0.5);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(246, 189, 75, 0.98), rgba(246, 189, 75, 0.78));
    color: var(--boxcar-dark);
    padding: 0 30px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(246, 189, 75, 0.24);
}

.boxcar-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.boxcar-feature-grid article {
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    padding: 22px;
    box-shadow: 0 18px 50px rgba(5, 11, 32, 0.06);
    backdrop-filter: blur(14px);
}

.boxcar-feature-grid span {
    color: var(--boxcar-blue);
    font-size: 15px;
    font-weight: 700;
}

.boxcar-feature-grid h3 {
    display: block;
    margin: 18px 0 10px;
    color: var(--boxcar-dark);
    font-size: 20px;
    font-weight: 700;
}

.boxcar-feature-grid p {
    color: var(--boxcar-muted);
    font-size: 15px;
    line-height: 1.65;
}

.boxcar-assurance-section {
    padding-top: 28px;
}

.boxcar-assurance-nova {
    display: grid;
    grid-template-columns: minmax(420px, 0.56fr) minmax(0, 0.44fr);
    gap: 34px;
    align-items: center;
}

.boxcar-assurance-media {
    position: relative;
    min-height: 500px;
}

.boxcar-assurance-media figure {
    margin: 0;
}

.boxcar-assurance-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxcar-assurance-media__main,
.boxcar-assurance-media__small {
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    box-shadow: 0 28px 74px rgba(5, 11, 32, 0.16);
}

.boxcar-assurance-media__main {
    width: 78%;
    height: 430px;
}

.boxcar-assurance-media__small {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: 43%;
    height: 252px;
}

.boxcar-assurance-number {
    position: absolute;
    left: 28px;
    bottom: 26px;
    display: grid;
    width: 176px;
    min-height: 150px;
    place-items: center;
    border: 1px solid rgba(246, 189, 75, 0.44);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(246, 189, 75, 0.98), rgba(246, 189, 75, 0.76));
    color: var(--boxcar-dark);
    padding: 18px;
    text-align: center;
    box-shadow: 0 22px 48px rgba(5, 11, 32, 0.18);
}

.boxcar-assurance-number strong {
    display: block;
    font-size: 52px;
    font-weight: 900;
    line-height: 0.95;
}

.boxcar-assurance-number span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.boxcar-assurance-content h2 {
    max-width: 560px;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1.05;
}

.boxcar-assurance-content h2 em {
    color: #d9991d;
    font-style: normal;
}

.boxcar-assurance-content > p {
    max-width: 560px;
    margin: 12px 0 0;
    color: rgba(5, 11, 32, 0.66);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.58;
}

.boxcar-assurance-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.boxcar-assurance-list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    padding: 14px;
    box-shadow: 0 12px 30px rgba(5, 11, 32, 0.05);
    backdrop-filter: blur(14px) saturate(120%);
}

.boxcar-assurance-list article > span {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 14px;
    background: rgba(246, 189, 75, 0.18);
    color: #9a6510;
    font-size: 14px;
    font-weight: 900;
}

.boxcar-assurance-list h3 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.12;
}

.boxcar-assurance-list p {
    margin: 5px 0 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.boxcar-assurance-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 18px;
}

.boxcar-assurance-actions span,
.boxcar-assurance-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(5, 11, 32, 0.72);
    padding: 0 14px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.boxcar-assurance-link {
    width: max-content;
    color: var(--boxcar-dark);
    box-shadow: 0 12px 30px rgba(5, 11, 32, 0.05);
}

.boxcar-assurance-link:hover {
    border-color: rgba(246, 189, 75, 0.48);
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
}

.boxcar-questions-section {
    padding-top: 24px;
}

.boxcar-questions-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
    gap: 30px;
    align-items: stretch;
}

.boxcar-questions-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
        radial-gradient(circle at 6% 8%, rgba(246, 189, 75, 0.18), transparent 34%);
    padding: 30px;
    box-shadow: 0 24px 70px rgba(5, 11, 32, 0.1);
    backdrop-filter: blur(16px) saturate(125%);
}

.boxcar-questions-copy h2 {
    max-width: 460px;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(31px, 3vw, 46px);
    font-weight: 850;
    line-height: 1.05;
}

.boxcar-questions-copy h2 em {
    color: #d9991d;
    font-style: normal;
}

.boxcar-questions-copy p {
    max-width: 440px;
    margin: 14px 0 18px;
    color: rgba(5, 11, 32, 0.66);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.58;
}

.boxcar-questions-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 18px;
}

.boxcar-questions-proof span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: rgba(5, 11, 32, 0.7);
    padding: 0 10px;
    font-size: 11px;
    font-weight: 850;
    text-align: center;
    white-space: nowrap;
}

.boxcar-questions-visual {
    position: relative;
    min-height: 260px;
    flex: 1;
    overflow: hidden;
    margin: auto 0 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    background: rgba(5, 11, 32, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 18px 44px rgba(5, 11, 32, 0.12);
}

.boxcar-questions-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 11, 32, 0.04), rgba(5, 11, 32, 0.68));
    content: "";
}

.boxcar-questions-visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.boxcar-questions-visual figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(8, 12, 16, 0.52);
    color: #fff;
    padding: 14px;
    backdrop-filter: blur(12px) saturate(120%);
}

.boxcar-questions-visual strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
}

.boxcar-questions-visual span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.boxcar-questions-list {
    display: grid;
    gap: 12px;
}

.boxcar-questions-list details {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 52px rgba(5, 11, 32, 0.08);
    backdrop-filter: blur(16px) saturate(125%);
}

.boxcar-questions-list details[open] {
    border-color: rgba(246, 189, 75, 0.38);
    background: rgba(255, 255, 255, 0.78);
}

.boxcar-questions-list summary {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--boxcar-dark);
    cursor: pointer;
    list-style: none;
    padding: 0 22px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.boxcar-questions-list summary::-webkit-details-marker {
    display: none;
}

.boxcar-questions-list summary::after {
    display: inline-grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: var(--boxcar-dark);
    content: "+";
    font-size: 20px;
    font-weight: 850;
    line-height: 1;
}

.boxcar-questions-list details[open] summary::after {
    border-color: rgba(246, 189, 75, 0.54);
    background: var(--boxcar-blue);
    content: "-";
}

.boxcar-questions-list p {
    max-width: 820px;
    margin: -4px 0 0;
    padding: 0 76px 20px 22px;
    color: rgba(5, 11, 32, 0.64);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.62;
}

.boxcar-why-section {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--boxcar-dark);
    padding-top: 22px;
}

.boxcar-why-section::before {
    display: none;
}

.boxcar-why-section .container {
    position: relative;
    z-index: 1;
}

.boxcar-why-intro {
    max-width: 820px;
    margin: 0 0 20px;
    text-align: left;
}

.boxcar-why-intro h2 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
}

.boxcar-why-intro h2 em,
.boxcar-why-process h3 em {
    color: var(--boxcar-blue);
    font-style: normal;
}

.boxcar-why-intro p {
    max-width: 780px;
    margin: 14px 0 0;
    color: rgba(5, 11, 32, 0.66);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.boxcar-why-board {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 14px;
}

.boxcar-why-main,
.boxcar-why-info,
.boxcar-why-process {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 26px 80px rgba(5, 11, 32, 0.11);
    backdrop-filter: blur(18px) saturate(135%);
}

.boxcar-why-main {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 320px;
    background:
        linear-gradient(180deg, rgba(5, 11, 32, 0.04), rgba(5, 11, 32, 0.74)),
        url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1300&q=86") center / cover;
    padding: 20px;
}

.boxcar-why-main > div {
    position: relative;
    z-index: 1;
    max-width: 560px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    padding: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(135%);
}

.boxcar-why-main > span,
.boxcar-why-main h3,
.boxcar-why-main p,
.boxcar-why-checks span {
    color: #fff;
}

.boxcar-why-main div > span,
.boxcar-why-info > span,
.boxcar-why-process > div > span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #d9991d;
    font-size: 13px;
    font-weight: 800;
}

.boxcar-why-main h3,
.boxcar-why-info h3,
.boxcar-why-process h3 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(24px, 2.45vw, 36px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.boxcar-why-main h3 {
    color: #fff;
}

.boxcar-why-main p,
.boxcar-why-info p,
.boxcar-why-process p {
    margin: 12px 0 0;
    color: rgba(5, 11, 32, 0.66);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.boxcar-why-main p {
    color: rgba(255, 255, 255, 0.72);
}

.boxcar-why-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.boxcar-why-checks span {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 800;
}

.boxcar-why-stack {
    display: grid;
    gap: 14px;
}

.boxcar-why-info {
    min-height: 150px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54));
    padding: 20px;
}

.boxcar-why-info--fee {
    background:
        radial-gradient(circle at 84% 16%, rgba(246, 189, 75, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
}

.boxcar-why-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.boxcar-why-price-grid div {
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    padding: 12px;
}

.boxcar-why-price-grid strong {
    display: block;
    color: var(--boxcar-dark);
    font-size: 26px;
    font-weight: 800;
}

.boxcar-why-price-grid small {
    display: block;
    margin-top: 6px;
    color: rgba(5, 11, 32, 0.56);
    font-size: 12px;
    font-weight: 800;
}

.boxcar-why-process {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    gap: 18px;
    align-items: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58));
    padding: 22px 24px;
}

.boxcar-why-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.boxcar-why-steps::before {
    position: absolute;
    top: 26px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: rgba(5, 11, 32, 0.12);
    content: "";
}

.boxcar-why-steps div {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    padding: 14px;
    box-shadow: 0 16px 42px rgba(5, 11, 32, 0.06);
}

.boxcar-why-steps strong {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(246, 189, 75, 0.42);
    border-radius: 999px;
    background: rgba(246, 189, 75, 0.18);
    color: #9a6510;
    font-size: 14px;
    font-weight: 900;
}

.boxcar-why-steps span {
    display: block;
    margin-top: 12px;
    color: var(--boxcar-dark);
    font-size: 16px;
    font-weight: 900;
}

.boxcar-why-steps small {
    display: block;
    margin-top: 6px;
    color: rgba(5, 11, 32, 0.58);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.boxcar-owner-cta {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--boxcar-dark);
    padding: 30px 0 38px;
}

.boxcar-owner-cta::before {
    display: none;
}

.boxcar-owner-cta__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(360px, 0.48fr);
    gap: 22px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
    padding: 22px;
    box-shadow: 0 26px 80px rgba(5, 11, 32, 0.12);
    backdrop-filter: blur(18px) saturate(130%);
}

.boxcar-owner-cta__copy {
    padding: 12px 8px 12px 12px;
}

.boxcar-owner-cta .boxcar-subtitle {
    color: #d9991d;
}

.boxcar-owner-cta h2 {
    max-width: 620px;
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(38px, 4.4vw, 64px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.04;
}

.boxcar-owner-cta p {
    max-width: 560px;
    margin: 12px 0 0;
    color: rgba(5, 11, 32, 0.66);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}

.boxcar-owner-cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 20px;
}

.boxcar-owner-cta__points span {
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--boxcar-dark);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}

.boxcar-primary-link {
    min-height: 58px;
    border-radius: 999px;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark) !important;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(246, 189, 75, 0.28);
}

.boxcar-owner-cta__visual {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border-radius: 22px;
    background: #dce3e8;
}

.boxcar-owner-cta__visual img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.boxcar-owner-cta__visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 32, 0.02), rgba(5, 11, 32, 0.42));
    content: "";
}

.boxcar-owner-cta__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    padding: 18px;
    color: #fff;
    box-shadow: 0 20px 48px rgba(5, 11, 32, 0.22);
    backdrop-filter: blur(16px) saturate(130%);
}

.boxcar-owner-cta__badge span,
.boxcar-owner-cta__badge small {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 800;
}

.boxcar-owner-cta__badge strong {
    display: block;
    margin: 6px 0;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 1180px) {
    .footer-top,
    .footer-body {
        grid-template-columns: 1fr;
    }

    .footer-actions {
        justify-content: flex-start;
    }

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

    .footer-ops span:nth-child(2) {
        border-right: 0;
    }

    .boxcar-assurance-nova {
        grid-template-columns: 1fr;
    }

    .boxcar-assurance-media {
        max-width: 760px;
    }

    .boxcar-questions-grid {
        grid-template-columns: 1fr;
    }

    .boxcar-why-board {
        grid-template-columns: 1fr;
    }

    .boxcar-why-main {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    }

    .boxcar-owner-cta__grid {
        grid-template-columns: 1fr;
    }

    .boxcar-search__fields,
    .boxcar-card-grid,
    .boxcar-feature-grid,
    .boxcar-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxcar-search__fields button {
        min-height: 58px;
    }
}

@media (max-width: 820px) {
    .marketplace-surface::before,
    .marketplace-surface::after {
        position: absolute;
    }

    .boxcar-hero,
    .boxcar-hero__inner {
        min-height: auto;
    }

    .boxcar-hero__inner {
        padding: 116px 0 54px;
    }

    .boxcar-search__fields,
    .boxcar-card-grid,
    .boxcar-feature-grid,
    .boxcar-stats__grid,
    .boxcar-owner-cta__grid {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-body,
    .footer-legal {
        padding-right: 0;
        padding-left: 0;
    }

    .footer-actions,
    .footer-legal {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-actions a {
        width: 100%;
    }

    .footer-ops {
        grid-template-columns: 1fr;
    }

    .footer-ops span {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        text-align: left;
    }

    .footer-ops span:last-child {
        border-bottom: 0;
    }

    .boxcar-assurance-section {
        padding-top: 24px;
    }

    .boxcar-assurance-nova {
        gap: 24px;
    }

    .boxcar-assurance-media {
        min-height: 390px;
    }

    .boxcar-assurance-media__main {
        width: 78%;
        height: 330px;
    }

    .boxcar-assurance-media__small {
        width: 44%;
        height: 205px;
    }

    .boxcar-assurance-number {
        left: 18px;
        bottom: 22px;
        width: 146px;
        min-height: 124px;
        padding: 14px;
    }

    .boxcar-assurance-number strong {
        font-size: 42px;
    }

    .boxcar-assurance-list article {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .boxcar-assurance-actions {
        flex-wrap: wrap;
    }

    .boxcar-assurance-link {
        width: auto;
    }

    .boxcar-questions-section {
        padding-top: 22px;
    }

    .boxcar-questions-grid {
        gap: 18px;
    }

    .boxcar-questions-copy {
        padding: 22px;
    }

    .boxcar-questions-proof {
        gap: 8px;
    }

    .boxcar-questions-proof span {
        min-height: 34px;
        padding: 0 8px;
        font-size: 10px;
    }

    .boxcar-questions-visual,
    .boxcar-questions-visual img {
        min-height: 220px;
    }

    .boxcar-questions-list summary {
        min-height: 64px;
        padding: 0 16px;
        font-size: 16px;
    }

    .boxcar-questions-list summary::after {
        width: 30px;
        height: 30px;
    }

    .boxcar-questions-list p {
        padding: 0 16px 17px;
        font-size: 14px;
    }

    .boxcar-search__fields label,
    .boxcar-search__fields .boxcar-field {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .boxcar-section__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .boxcar-trust-band__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .boxcar-trust-band__head strong {
        text-align: left;
    }

    .boxcar-section__actions {
        justify-content: flex-start;
    }

    .boxcar-why-process {
        grid-template-columns: 1fr;
    }

    .boxcar-why-main {
        min-height: 320px;
        align-items: flex-end;
        padding: 18px;
    }

    .boxcar-why-main > div {
        max-width: none;
        padding: 18px;
    }

    .boxcar-why-steps {
        grid-template-columns: 1fr;
    }

    .boxcar-why-steps::before {
        display: none;
    }

    .boxcar-why-price-grid {
        grid-template-columns: 1fr;
    }

    .boxcar-owner-cta {
        padding: 38px 0 42px;
    }

    .boxcar-owner-cta__copy {
        padding: 0;
    }

    .boxcar-owner-cta__visual,
    .boxcar-owner-cta__visual img {
        min-height: 320px;
    }

    .boxcar-category-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .boxcar-category-strip .boxcar-category-strip__label {
        grid-column: 1 / -1;
    }

    .boxcar-category-strip a {
        min-width: 0;
    }
}

@media (max-width: 1280px) {
    .clean-inventory {
        gap: 42px;
    }

    .inventory-layout {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .inventory-map {
        position: relative;
        top: auto;
        max-height: none;
        min-height: 420px;
        grid-column: 1 / -1;
    }

    .inventory-map__canvas {
        inset: 76px 0 62px;
    }
}

@media (max-width: 1100px) {
    .clean-toolbar {
        grid-template-columns: 1fr;
    }

    .clean-toolbar__count,
    .clean-toolbar__actions {
        justify-self: start;
    }

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

@media (max-width: 1180px) {
    .inventory-layout {
        grid-template-columns: 1fr;
    }

    .inventory-filters,
    .inventory-map {
        position: relative;
        top: auto;
        max-height: none;
    }

    .inventory-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .inventory-panel-head,
    .inventory-apply {
        grid-column: 1 / -1;
    }

    .inventory-filter-group {
        border-top: 1px solid rgba(5, 11, 32, 0.08);
        padding: 14px;
    }

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

@media (max-width: 980px) {
    .inventory-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.inventory-listing .nav-wrap,
    body.inventory-listing .site-header.is-scrolled .nav-wrap {
        width: min(100% - 24px, 1240px);
    }

    .clean-inventory {
        width: min(100% - 24px, 1240px);
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 104px;
    }

    .clean-search-rail {
        position: static;
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clean-search-rail label,
    .clean-search-rail button {
        min-height: 62px;
        border-right: 1px solid rgba(5, 11, 32, 0.12);
        border-bottom: 0;
    }

    .clean-search-rail label:nth-child(3n),
    .clean-search-rail button {
        border-right: 0;
    }

    .clean-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 18px;
    }

    .clean-toolbar__actions {
        flex-wrap: wrap;
    }

    .inventory-breadcrumb {
        min-height: 230px;
        padding: 98px 0 28px;
    }

    .inventory-breadcrumb__head h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .inventory-filters,
    .inventory-card-grid {
        grid-template-columns: 1fr;
    }

    .inventory-results__head,
    .inventory-alert,
    .inventory-bottom-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .inventory-sort {
        justify-content: flex-start;
    }

    .inventory-map {
        min-height: 390px;
    }

    .bike-title-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .bike-title-row h3 {
        white-space: normal;
    }

    .inventory-card-grid .card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .inventory-card-grid .btn,
    .inventory-bottom-cta a {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .clean-card-grid {
        grid-template-columns: 1fr;
    }

    .clean-toolbar__count,
    .clean-toolbar__actions {
        width: 100%;
    }

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

    .clean-search-rail label:nth-child(3n) {
        border-right: 1px solid rgba(5, 11, 32, 0.12);
    }

    .clean-search-rail label:nth-child(2n),
    .clean-search-rail button {
        border-right: 0;
    }

    .clean-toolbar__actions button {
        flex: 1;
        padding: 0 10px;
    }

    .clean-sort {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 1180px) {
    .detail-hero-v2,
    .detail-hero-v2__grid {
        min-height: auto;
    }

    .detail-hero-v2__grid {
        grid-template-columns: 1fr;
        padding: 112px 0 24px;
    }

    .detail-hero-v2__copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .detail-quick-book {
        max-width: 420px;
    }

    .detail-gallery-v2__grid,
    .detail-content-v2__grid,
    .detail-two-col {
        grid-template-columns: 1fr;
    }

    .detail-booking-v2 {
        position: relative;
        top: auto;
    }
}

@media (max-width: 820px) {
    .detail-hero-v2__grid {
        padding: 104px 0 22px;
    }

    .detail-hero-v2 h1 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .detail-gallery-v2 {
        margin-top: 0;
    }

    .detail-gallery-v2__main {
        min-height: 300px;
    }

    .detail-gallery-v2__stack,
    .detail-spec-board,
    .detail-assurance-v2 {
        grid-template-columns: 1fr;
    }

    .detail-gallery-v2__stack img,
    .detail-gallery-v2__stack img:first-child {
        min-height: 190px;
        grid-column: auto;
    }

    .detail-content-v2 {
        padding: 34px 0 54px;
    }

    .detail-assurance-v2__document {
        min-height: 160px;
    }
}

@media (max-width: 560px) {
    .detail-hero-v2__chips span,
    .detail-feature-pills span,
    .detail-owner-card__checks span,
    .detail-assurance-v2__steps span {
        width: 100%;
        justify-content: center;
    }

    .detail-quick-book,
    .detail-panel-v2,
    .detail-booking-v2,
    .detail-assurance-v2 {
        border-radius: 16px;
    }

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

    .detail-condition-list li,
    .detail-price-list li {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-condition-list strong,
    .detail-price-list strong {
        text-align: left;
    }
}

body.motorcycle-detail {
    background: #f8faf9;
}

body.motorcycle-detail .marketplace-surface {
    overflow: visible;
    background: #f8faf9;
}

body.motorcycle-detail .marketplace-surface::before,
body.motorcycle-detail .marketplace-surface::after {
    display: none;
}

body.motorcycle-detail .site-header {
    background: rgba(8, 12, 16, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 46px rgba(5, 11, 32, 0.24);
    backdrop-filter: blur(16px) saturate(120%);
}

body.motorcycle-detail .nav-wrap,
body.motorcycle-detail .site-header.is-scrolled .nav-wrap {
    width: min(1480px, calc(100% - 56px));
    min-height: 78px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
}

body.motorcycle-detail .brand-text,
body.motorcycle-detail .brand-text span,
body.motorcycle-detail .nav-links a {
    color: #fff;
}

body.motorcycle-detail .btn-outline,
body.motorcycle-detail .nav-cart {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.detail-v3 {
    position: relative;
    padding: 116px 0 70px;
    color: var(--boxcar-dark);
}

.detail-v3__wrap {
    max-width: 1160px;
}

.detail-v3-rail {
    position: sticky;
    top: 104px;
    float: left;
    display: grid;
    width: 74px;
    margin-left: 20px;
    overflow: hidden;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(5, 11, 32, 0.06);
}

.detail-v3-rail label,
.detail-v3-rail button {
    display: grid;
    min-height: 66px;
    align-content: center;
    gap: 5px;
    border: 0;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    background: transparent;
    padding: 8px;
}

.detail-v3-rail span {
    overflow: hidden;
    color: rgba(5, 11, 32, 0.52);
    font-size: 9px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-v3-rail input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--boxcar-dark);
    font-size: 10px;
    font-weight: 850;
    outline: 0;
}

.detail-v3-rail button {
    border-bottom: 0;
    background: var(--boxcar-dark);
    color: #fff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 900;
}

.detail-v3-crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(5, 11, 32, 0.54);
    font-size: 13px;
    font-weight: 850;
}

.detail-v3-crumbs a {
    color: rgba(5, 11, 32, 0.62);
}

.detail-v3-crumbs strong,
.detail-v3-crumbs a:hover {
    color: #b67812;
}

.detail-v3__titlebar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
}

.detail-v3__titlebar h1 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: 0;
}

.detail-v3__titlebar p {
    margin: 8px 0 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 14px;
    font-weight: 750;
}

.detail-v3-actions {
    display: flex;
    gap: 8px;
}

.detail-v3-actions button {
    min-height: 36px;
    border: 1px solid rgba(5, 11, 32, 0.1);
    border-radius: 999px;
    background: #fff;
    color: var(--boxcar-dark);
    cursor: pointer;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 850;
}

.detail-v3__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 24px;
    align-items: start;
    margin-top: 18px;
}

.detail-v3__main {
    min-width: 0;
}

.detail-v3-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 10px;
}

.detail-v3-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-v3-gallery__main {
    min-height: 430px;
    overflow: hidden;
    border-radius: 10px;
    background: #dce2e7;
}

.detail-v3-gallery__side {
    display: grid;
    gap: 10px;
    position: relative;
}

.detail-v3-gallery__side img {
    min-height: 210px;
    overflow: hidden;
    border-radius: 10px;
    background: #dce2e7;
}

.detail-v3-gallery__side a {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--boxcar-dark);
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
}

.detail-v3-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 16px;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 10px;
    background: #fff;
}

.detail-v3-trust article {
    padding: 14px;
    border-right: 1px solid rgba(5, 11, 32, 0.08);
}

.detail-v3-trust article:last-child {
    border-right: 0;
}

.detail-v3-trust span,
.detail-v3-section p,
.detail-v3-owner p,
.detail-v3-side-note p {
    color: rgba(5, 11, 32, 0.62);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.detail-v3-trust strong {
    display: block;
    margin-top: 4px;
    color: var(--boxcar-dark);
    font-size: 15px;
    font-weight: 900;
}

.detail-v3-section,
.detail-v3-owner {
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 22px 0;
}

.detail-v3-section h2,
.detail-v3-owner h3 {
    margin: 0 0 12px;
    color: var(--boxcar-dark);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.detail-v3-section p,
.detail-v3-owner p,
.detail-v3-side-note p {
    margin: 0;
}

.detail-v3-owner {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 18px 0;
}

.detail-v3-owner__avatar {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--boxcar-dark);
    color: var(--boxcar-blue);
    font-size: 18px;
    font-weight: 950;
}

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

.detail-v3-specs span {
    display: grid;
    min-height: 58px;
    align-items: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 8px;
    background: #fff;
    color: rgba(5, 11, 32, 0.72);
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
}

.detail-v3-specs b {
    display: block;
    margin-bottom: 4px;
    color: rgba(5, 11, 32, 0.42);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-v3-included,
.detail-v3-conditions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.detail-v3-included article,
.detail-v3-conditions article {
    display: grid;
    min-width: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    border: 1px solid rgba(5, 11, 32, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    padding: 13px;
}

.detail-v3-included article i,
.detail-v3-conditions article i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: rgba(246, 189, 75, 0.18);
    color: #8a5d12;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.detail-v3-included article div,
.detail-v3-conditions article div {
    min-width: 0;
}

.detail-v3-included strong,
.detail-v3-conditions strong {
    display: block;
    margin-bottom: 4px;
    color: var(--boxcar-dark);
    font-size: 13px;
    font-weight: 900;
}

.detail-v3-included span,
.detail-v3-conditions span {
    color: rgba(5, 11, 32, 0.6);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.detail-v3-reviews {
    text-align: center;
    padding: 28px 0;
}

.detail-v3-reviews h2 {
    margin-bottom: 2px;
    font-size: 36px;
    line-height: 1;
}

.detail-v3-reviews > strong {
    display: block;
    color: var(--boxcar-dark);
    font-size: 17px;
    font-weight: 900;
}

.detail-v3-reviews p {
    max-width: 460px;
    margin: 8px auto 0;
    font-size: 12px;
}

.detail-v3-review-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.detail-v3-review-grid span {
    border-radius: 8px;
    background: #fff;
    padding: 11px 8px;
    color: rgba(5, 11, 32, 0.78);
    font-size: 11px;
    font-weight: 850;
}

.detail-v3-map-section p {
    margin-bottom: 14px;
}

.detail-v3-map {
    overflow: hidden;
    height: 350px;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 10px;
    background: #e7ecef;
}

.detail-v3-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.detail-v3-similar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.detail-v3-similar article {
    min-width: 0;
}

.detail-v3-similar img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.detail-v3-similar h3 {
    overflow: hidden;
    margin: 10px 0 4px;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-v3-similar p {
    margin: 0;
    color: rgba(5, 11, 32, 0.6);
    font-size: 12px;
    font-weight: 750;
}

.detail-v3-similar p span {
    color: var(--boxcar-dark);
}

.detail-v3-similar strong {
    display: block;
    margin-top: 7px;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 950;
}

.detail-v3-similar small {
    font-size: 12px;
}

.detail-v3-booking {
    position: sticky;
    top: 102px;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(5, 11, 32, 0.1);
    padding: 16px;
}

.detail-v3-booking__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.detail-v3-booking__price del {
    color: rgba(5, 11, 32, 0.38);
    font-size: 14px;
    font-weight: 850;
}

.detail-v3-booking__price strong {
    color: var(--boxcar-dark);
    font-size: 24px;
    font-weight: 950;
}

.detail-v3-booking__price span {
    color: rgba(5, 11, 32, 0.62);
    font-size: 13px;
    font-weight: 800;
}

.detail-v3-booking form {
    display: grid;
    gap: 9px;
}

.detail-v3-booking label {
    display: grid;
    gap: 6px;
}

.detail-v3-booking label span {
    color: rgba(5, 11, 32, 0.5);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
}

.detail-v3-booking input,
.detail-v3-booking select {
    min-height: 42px;
    border: 1px solid rgba(5, 11, 32, 0.1);
    border-radius: 8px;
    background: #fff;
    color: var(--boxcar-dark);
    padding: 0 10px;
    font-size: 12px;
    font-weight: 800;
}

.detail-v3-booking button {
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
    cursor: pointer;
    font-size: 13px;
    font-weight: 950;
}

.detail-v3-booking__total {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    border-top: 1px solid rgba(5, 11, 32, 0.08);
    padding-top: 14px;
    color: rgba(5, 11, 32, 0.62);
    font-size: 13px;
    font-weight: 800;
}

.detail-v3-booking__total strong {
    color: var(--boxcar-dark);
    font-weight: 950;
}

.detail-v3-side-note {
    margin-top: 12px;
    border-top: 1px solid rgba(5, 11, 32, 0.08);
    padding-top: 12px;
}

.detail-v3-side-note strong {
    color: var(--boxcar-dark);
    font-size: 13px;
    font-weight: 950;
}

@media (max-width: 1280px) {
    .detail-v3-rail {
        display: none;
    }
}

@media (max-width: 980px) {
    .detail-v3 {
        padding-top: 104px;
    }

    .detail-v3__titlebar,
    .detail-v3__top {
        grid-template-columns: 1fr;
    }

    .detail-v3__titlebar {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-v3-booking {
        position: relative;
        top: auto;
    }

    .detail-v3-specs,
    .detail-v3-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.motorcycle-detail .nav-wrap,
    body.motorcycle-detail .site-header.is-scrolled .nav-wrap {
        width: min(100% - 24px, 1240px);
    }

    .detail-v3-gallery,
    .detail-v3-trust,
    .detail-v3-specs,
    .detail-v3-included,
    .detail-v3-conditions,
    .detail-v3-similar,
    .detail-v3-review-grid {
        grid-template-columns: 1fr;
    }

    .detail-v3-gallery__main,
    .detail-v3-gallery__side img {
        min-height: 240px;
    }

    .detail-v3-trust article {
        border-right: 0;
        border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    }

    .detail-v3-trust article:last-child {
        border-bottom: 0;
    }
}

.dashboard-page {
    background: #f6f7f7;
}

.dashboard-page .dashboard-shell {
    background:
        radial-gradient(circle at 78% 0%, rgba(246, 189, 75, 0.12), transparent 30%),
        #f6f7f7;
}

.dashboard-page .dashboard-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b1018;
    color: #fff;
}

.dashboard-page .dashboard-sidebar .brand {
    color: #fff;
}

.dashboard-page .dashboard-sidebar .brand-mark {
    border: 0;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
}

.dashboard-page .sidebar-profile {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.dashboard-page .sidebar-profile strong {
    display: block;
    color: #fff;
}

.dashboard-page .sidebar-profile span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.dashboard-page .dashboard-nav a {
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-page .dashboard-nav a.active,
.dashboard-page .dashboard-nav a:hover {
    border-color: rgba(246, 189, 75, 0.24);
    background: rgba(246, 189, 75, 0.12);
    color: #fff;
}

.renter-v2 {
    display: grid;
    gap: 18px;
}

.renter-v2-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding-bottom: 20px;
}

.renter-v2-crumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(5, 11, 32, 0.52);
    font-size: 13px;
    font-weight: 850;
}

.renter-v2-crumbs a {
    color: rgba(5, 11, 32, 0.62);
}

.renter-v2-crumbs strong {
    color: #b67812;
}

.renter-v2-kicker,
.renter-v2-panel-head span,
.renter-v2-kpis article > span {
    display: block;
    color: #9a6510;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-v2-header h1 {
    max-width: 720px;
    margin: 10px 0 8px;
    color: var(--boxcar-dark);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: 0;
}

.renter-v2-header p {
    max-width: 760px;
    margin: 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.renter-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.renter-v2-actions a,
.renter-v2-panel-head a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 11, 32, 0.09);
    border-radius: 999px;
    background: #fff;
    color: var(--boxcar-dark);
    padding: 0 15px;
    font-size: 13px;
    font-weight: 900;
}

.renter-v2-actions a:first-child {
    border-color: transparent;
    background: var(--boxcar-blue);
}

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

.renter-v2-kpis article,
.renter-v2-panel {
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(5, 11, 32, 0.05);
}

.renter-v2-kpis article {
    min-height: 126px;
    padding: 16px;
}

.renter-v2-kpis strong {
    display: block;
    margin-top: 10px;
    color: var(--boxcar-dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.renter-v2-kpis small {
    display: block;
    margin-top: 8px;
    color: rgba(5, 11, 32, 0.58);
    font-size: 12px;
    font-weight: 750;
}

.renter-v2-progress {
    overflow: hidden;
    height: 7px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(5, 11, 32, 0.08);
}

.renter-v2-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--boxcar-blue);
}

.renter-v2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    align-items: start;
}

.renter-v2-grid--balanced {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.renter-v2-panel {
    min-width: 0;
    padding: 18px;
}

.renter-v2-panel-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.renter-v2-panel-head h2 {
    margin: 5px 0 0;
    color: var(--boxcar-dark);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: 0;
}

.renter-v2-trip-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

.renter-v2-trip-card img {
    width: 100%;
    height: 118px;
    border-radius: 8px;
    object-fit: cover;
}

.renter-v2-trip-card strong,
.renter-v2-saved strong,
.renter-v2-messages strong {
    display: block;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 950;
}

.renter-v2-trip-card span,
.renter-v2-saved span,
.renter-v2-messages span {
    display: block;
    margin-top: 5px;
    color: rgba(5, 11, 32, 0.6);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.renter-v2-timeline {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.renter-v2-timeline > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.renter-v2-timeline i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(5, 11, 32, 0.08);
    color: rgba(5, 11, 32, 0.64);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.renter-v2-timeline .done i,
.renter-v2-timeline .active i {
    background: rgba(246, 189, 75, 0.2);
    color: #8a5d12;
}

.renter-v2-timeline strong {
    display: block;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 900;
}

.renter-v2-timeline span {
    display: block;
    margin-top: 3px;
    color: rgba(5, 11, 32, 0.58);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.renter-v2-readiness ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.renter-v2-readiness li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 12px 0;
    color: rgba(5, 11, 32, 0.6);
    font-size: 13px;
    font-weight: 750;
}

.renter-v2-readiness li:last-child {
    border-bottom: 0;
}

.renter-v2-readiness strong,
.renter-v2-table span {
    border-radius: 999px;
    background: rgba(5, 11, 32, 0.07);
    color: var(--boxcar-dark);
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 950;
}

.renter-v2-readiness .ok {
    background: rgba(24, 154, 108, 0.12);
    color: #147451;
}

.renter-v2-readiness .warn,
.renter-v2-table .warn {
    background: rgba(246, 189, 75, 0.2);
    color: #8a5d12;
}

.renter-v2-saved,
.renter-v2-messages {
    display: grid;
    gap: 10px;
}

.renter-v2-saved article {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
}

.renter-v2-saved img {
    width: 78px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
}

.renter-v2-messages div {
    position: relative;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 0 54px 12px 0;
}

.renter-v2-messages div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.renter-v2-messages small {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(5, 11, 32, 0.46);
    font-size: 11px;
    font-weight: 850;
}

.renter-v2-table-wrap {
    overflow-x: auto;
}

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

.renter-v2-table th,
.renter-v2-table td {
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 13px 10px;
    text-align: left;
    white-space: nowrap;
}

.renter-v2-table th {
    color: rgba(5, 11, 32, 0.48);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-v2-table td {
    color: rgba(5, 11, 32, 0.72);
    font-size: 13px;
    font-weight: 750;
}

@media (max-width: 1180px) {
    .renter-v2-header,
    .renter-v2-grid,
    .renter-v2-grid--balanced {
        grid-template-columns: 1fr;
    }

    .renter-v2-actions {
        justify-content: flex-start;
    }

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

@media (max-width: 680px) {
    .renter-v2-kpis,
    .renter-v2-trip-card {
        grid-template-columns: 1fr;
    }

    .renter-v2-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .renter-v2-actions a {
        width: 100%;
    }
}

.renter-dashboard .dashboard-main {
    padding: 24px;
}

.renter-pro {
    width: min(1380px, 100%);
    margin: 0 auto;
}

.renter-pro-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 18px;
}

.renter-pro-crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    color: rgba(5, 11, 32, 0.5);
    font-size: 13px;
    font-weight: 850;
}

.renter-pro-crumbs a {
    color: rgba(5, 11, 32, 0.62);
}

.renter-pro-crumbs strong {
    color: #b67812;
}

.renter-pro-top h1 {
    margin: 0;
    color: var(--boxcar-dark);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: 0;
}

.renter-pro-top p {
    max-width: 690px;
    margin: 10px 0 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.renter-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.renter-pro-actions a,
.renter-pro-section-head a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 999px;
    background: #fff;
    color: var(--boxcar-dark);
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
}

.renter-pro-actions a:first-child,
.renter-pro-ride__actions a:last-child {
    border-color: transparent;
    background: var(--boxcar-blue);
    color: var(--boxcar-dark);
}

.renter-pro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
    align-items: start;
}

.renter-pro-main {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.renter-pro-ride {
    position: relative;
    display: grid;
    min-height: 330px;
    grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.58fr) 190px;
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #0b1018;
    color: #fff;
    box-shadow: 0 24px 70px rgba(5, 11, 32, 0.18);
}

.renter-pro-ride::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 22%, rgba(246, 189, 75, 0.18), transparent 26%),
        linear-gradient(90deg, rgba(11, 16, 24, 0.04), rgba(11, 16, 24, 0.72) 58%, #0b1018 100%);
    content: "";
}

.renter-pro-ride__media {
    min-height: 330px;
}

.renter-pro-ride__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.renter-pro-ride__content,
.renter-pro-ride__price {
    position: relative;
    z-index: 1;
}

.renter-pro-ride__content {
    align-self: center;
    padding: 26px;
}

.renter-pro-label {
    display: block;
    color: #b67812;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-pro-ride .renter-pro-label,
.renter-pro-mini-card--dark span {
    color: #f6bd4b;
}

.renter-pro-ride h2 {
    margin: 9px 0 8px;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.renter-pro-ride p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.renter-pro-ride__meta,
.renter-pro-ride__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.renter-pro-ride__meta span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 850;
}

.renter-pro-ride__actions a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 900;
}

.renter-pro-ride__price {
    display: grid;
    align-content: end;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
}

.renter-pro-ride__price span,
.renter-pro-ride__price small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 850;
}

.renter-pro-ride__price strong {
    display: block;
    margin: 8px 0;
    color: var(--boxcar-blue);
    font-size: 36px;
    font-weight: 950;
    line-height: 1;
}

.renter-pro-steps,
.renter-pro-card,
.renter-pro-status,
.renter-pro-mini-card {
    border: 1px solid rgba(5, 11, 32, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 38px rgba(5, 11, 32, 0.05);
}

.renter-pro-steps,
.renter-pro-card,
.renter-pro-status,
.renter-pro-mini-card {
    padding: 18px;
}

.renter-pro-section-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.renter-pro-section-head h2 {
    margin: 5px 0 0;
    color: var(--boxcar-dark);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: 0;
}

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

.renter-pro-step-grid article {
    min-width: 0;
    border: 1px solid rgba(5, 11, 32, 0.07);
    border-radius: 12px;
    background: #fff;
    padding: 14px;
}

.renter-pro-step-grid i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(5, 11, 32, 0.08);
    color: rgba(5, 11, 32, 0.62);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.renter-pro-step-grid .is-done i,
.renter-pro-step-grid .is-active i {
    background: rgba(246, 189, 75, 0.2);
    color: #8a5d12;
}

.renter-pro-step-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 900;
}

.renter-pro-step-grid span,
.renter-pro-bike-list span,
.renter-pro-inbox span,
.renter-pro-mini-card p {
    display: block;
    margin-top: 5px;
    color: rgba(5, 11, 32, 0.6);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.renter-pro-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    gap: 18px;
}

.renter-pro-bike-list,
.renter-pro-inbox {
    display: grid;
    gap: 10px;
}

.renter-pro-bike-list a {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    color: var(--boxcar-dark);
}

.renter-pro-bike-list img {
    width: 78px;
    height: 60px;
    border-radius: 9px;
    object-fit: cover;
}

.renter-pro-bike-list strong,
.renter-pro-inbox strong {
    display: block;
    color: var(--boxcar-dark);
    font-size: 14px;
    font-weight: 950;
}

.renter-pro-bike-list small {
    color: #8a5d12;
    font-size: 12px;
    font-weight: 950;
}

.renter-pro-inbox article {
    position: relative;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 0 62px 11px 0;
}

.renter-pro-inbox article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.renter-pro-inbox small {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(5, 11, 32, 0.46);
    font-size: 11px;
    font-weight: 850;
}

.renter-pro-table-wrap {
    overflow-x: auto;
}

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

.renter-pro-table th,
.renter-pro-table td {
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 13px 10px;
    text-align: left;
    white-space: nowrap;
}

.renter-pro-table th {
    color: rgba(5, 11, 32, 0.46);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-pro-table td {
    color: rgba(5, 11, 32, 0.72);
    font-size: 13px;
    font-weight: 750;
}

.renter-pro-table span,
.renter-pro-status b {
    border-radius: 999px;
    background: rgba(5, 11, 32, 0.07);
    color: var(--boxcar-dark);
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 950;
}

.renter-pro-table .is-warning,
.renter-pro-status .is-warning {
    background: rgba(246, 189, 75, 0.2);
    color: #8a5d12;
}

.renter-pro-rail {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 14px;
}

.renter-pro-status strong {
    display: block;
    margin-top: 8px;
    color: var(--boxcar-dark);
    font-size: 48px;
    font-weight: 950;
    line-height: 1;
}

.renter-pro-meter {
    overflow: hidden;
    height: 8px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(5, 11, 32, 0.08);
}

.renter-pro-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--boxcar-blue);
}

.renter-pro-status ul {
    display: grid;
    gap: 0;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.renter-pro-status li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(5, 11, 32, 0.08);
    padding: 12px 0;
    color: rgba(5, 11, 32, 0.62);
    font-size: 13px;
    font-weight: 750;
}

.renter-pro-status li:last-child {
    border-bottom: 0;
}

.renter-pro-status .is-ok {
    background: rgba(24, 154, 108, 0.12);
    color: #147451;
}

.renter-pro-mini-card span {
    color: rgba(5, 11, 32, 0.52);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-pro-mini-card strong {
    display: block;
    margin-top: 8px;
    color: var(--boxcar-dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1;
}

.renter-pro-mini-card p {
    margin-top: 10px;
}

.renter-pro-mini-card--dark {
    background:
        radial-gradient(circle at 80% 0%, rgba(246, 189, 75, 0.18), transparent 38%),
        #0b1018;
    color: #fff;
}

.renter-pro-mini-card--dark strong {
    color: var(--boxcar-blue);
}

.renter-pro-mini-card--dark p {
    color: rgba(255, 255, 255, 0.66);
}

.renter-pro-fees {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.renter-pro-fees div {
    border-radius: 10px;
    background: rgba(246, 189, 75, 0.14);
    padding: 11px;
}

.renter-pro-fees strong {
    margin: 0;
    font-size: 20px;
}

.renter-pro-fees small {
    display: block;
    margin-top: 4px;
    color: rgba(5, 11, 32, 0.58);
    font-size: 11px;
    font-weight: 800;
}

@media (max-width: 1280px) {
    .renter-pro-grid,
    .renter-pro-top,
    .renter-pro-split {
        grid-template-columns: 1fr;
    }

    .renter-pro-actions {
        justify-content: flex-start;
    }

    .renter-pro-rail {
        position: relative;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .renter-pro-ride,
    .renter-pro-step-grid {
        grid-template-columns: 1fr;
    }

    .renter-pro-ride::after {
        background: linear-gradient(180deg, rgba(11, 16, 24, 0.06), #0b1018 72%);
    }

    .renter-pro-ride__media {
        min-height: 280px;
    }

    .renter-pro-ride__price {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 680px) {
    .renter-dashboard .dashboard-main {
        padding: 16px;
    }

    .renter-pro-rail,
    .renter-pro-bike-list a {
        grid-template-columns: 1fr;
    }

    .renter-pro-actions a,
    .renter-pro-section-head a,
    .renter-pro-ride__actions a {
        width: 100%;
    }

    .renter-pro-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

body.renter-dashboard {
    background: #f7f8f7;
}

body.renter-dashboard .dashboard-shell {
    grid-template-columns: 270px minmax(0, 1fr);
    background: #f7f8f7;
}

body.renter-dashboard .dashboard-sidebar {
    border-right: 1px solid rgba(7, 17, 31, 0.1);
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}

body.renter-dashboard .dashboard-sidebar .brand {
    color: var(--ink);
}

body.renter-dashboard .dashboard-sidebar .brand-mark {
    border: 0;
    background: #f6bd4b;
    color: var(--ink);
    box-shadow: none;
}

body.renter-dashboard .sidebar-profile {
    border: 1px solid rgba(7, 17, 31, 0.09);
    background: #f7f8f7;
    color: var(--ink);
}

body.renter-dashboard .sidebar-profile span {
    color: rgba(7, 17, 31, 0.55);
}

body.renter-dashboard .dashboard-nav a {
    border: 1px solid transparent;
    border-radius: 10px;
    color: rgba(7, 17, 31, 0.62);
}

body.renter-dashboard .dashboard-nav a.active,
body.renter-dashboard .dashboard-nav a:hover {
    border-color: rgba(246, 189, 75, 0.34);
    background: rgba(246, 189, 75, 0.16);
    color: var(--ink);
}

body.renter-dashboard .dashboard-main {
    padding: 28px;
}

.renter-clean {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    color: var(--ink);
}

.renter-clean-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding-bottom: 4px;
}

.renter-clean-crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(7, 17, 31, 0.5);
    font-size: 13px;
    font-weight: 850;
}

.renter-clean-crumbs strong {
    color: #a86d13;
}

.renter-clean-top h1 {
    margin: 10px 0 6px;
    color: var(--ink);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
}

.renter-clean-top p,
.renter-clean-booking-copy p,
.renter-clean-next p,
.renter-clean-assurance p,
.renter-clean-messages p {
    margin: 0;
    color: rgba(7, 17, 31, 0.58);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.renter-clean-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.renter-clean-actions a,
.renter-clean-next a,
.renter-clean-panel-head a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 17, 31, 0.12);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: none;
}

.renter-clean-actions .primary,
.renter-clean-next a {
    border-color: #f6bd4b;
    background: #f6bd4b;
}

.renter-clean-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    align-items: stretch;
}

.renter-clean-booking,
.renter-clean-next,
.renter-clean-panel,
.renter-clean-stats article {
    border: 1px solid rgba(7, 17, 31, 0.09);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(7, 17, 31, 0.04);
}

.renter-clean-booking {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr) 150px;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.renter-clean-bike {
    overflow: hidden;
    border-radius: 9px;
    background: #eef1f3;
    aspect-ratio: 16 / 10;
}

.renter-clean-bike img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.renter-clean-eyebrow {
    display: inline-flex;
    align-items: center;
    color: rgba(7, 17, 31, 0.46);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.renter-clean-booking h2,
.renter-clean-next h2,
.renter-clean-panel h2 {
    margin: 6px 0 6px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: 0;
}

.renter-clean-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.renter-clean-tags span {
    border: 1px solid rgba(7, 17, 31, 0.09);
    border-radius: 999px;
    background: #fbfbfa;
    color: rgba(7, 17, 31, 0.72);
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 850;
}

.renter-clean-total {
    border-left: 1px solid rgba(7, 17, 31, 0.08);
    padding-left: 16px;
    text-align: right;
}

.renter-clean-total span,
.renter-clean-total small,
.renter-clean-stats small,
.renter-clean-list span,
.renter-clean-checklist small,
.renter-clean-table td {
    color: rgba(7, 17, 31, 0.58);
    font-size: 12px;
    font-weight: 750;
}

.renter-clean-total strong {
    display: block;
    margin: 4px 0;
    color: var(--ink);
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
}

.renter-clean-next {
    display: grid;
    align-content: center;
    padding: 18px;
}

.renter-clean-next a {
    width: 100%;
    margin-top: 16px;
}

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

.renter-clean-stats article {
    padding: 14px;
}

.renter-clean-stats span {
    display: block;
    color: rgba(7, 17, 31, 0.5);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-clean-stats strong {
    display: block;
    margin: 8px 0 4px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
}

.renter-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
    gap: 16px;
}

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

.renter-clean-panel {
    min-width: 0;
    padding: 18px;
}

.renter-clean-panel-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.renter-clean-panel-head h2 {
    margin-bottom: 0;
}

.renter-clean-panel-head a {
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.renter-clean-timeline {
    display: grid;
    gap: 0;
}

.renter-clean-timeline > div {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    padding: 13px 0;
}

.renter-clean-timeline > div:first-child {
    padding-top: 0;
}

.renter-clean-timeline > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.renter-clean-timeline i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: #eef0f1;
    color: rgba(7, 17, 31, 0.52);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.renter-clean-timeline .is-done i {
    background: rgba(24, 154, 108, 0.12);
    color: #147451;
}

.renter-clean-timeline .is-active i {
    background: rgba(246, 189, 75, 0.24);
    color: #8a5d12;
}

.renter-clean-timeline strong,
.renter-clean-checklist strong,
.renter-clean-list strong,
.renter-clean-messages strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 950;
}

.renter-clean-timeline span {
    display: block;
    margin-top: 4px;
    color: rgba(7, 17, 31, 0.58);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.renter-clean-checklist {
    display: grid;
    gap: 10px;
}

.renter-clean-checklist > div {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 10px;
    padding: 12px;
}

.renter-clean-checklist span.ok,
.renter-clean-checklist span.warn {
    width: 10px;
    height: 10px;
    margin-top: 4px;
    border-radius: 50%;
    background: #189a6c;
}

.renter-clean-checklist span.warn {
    background: #f6bd4b;
}

.renter-clean-list {
    display: grid;
    gap: 10px;
}

.renter-clean-list a {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
}

.renter-clean-list img {
    width: 76px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
}

.renter-clean-messages {
    display: grid;
    gap: 0;
}

.renter-clean-messages article {
    position: relative;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    padding: 0 52px 12px 0;
}

.renter-clean-messages article + article {
    padding-top: 12px;
}

.renter-clean-messages article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.renter-clean-messages span {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(7, 17, 31, 0.45);
    font-size: 11px;
    font-weight: 850;
}

.renter-clean-messages article + article span {
    top: 12px;
}

.renter-clean-assurance dl {
    display: grid;
    gap: 0;
    margin: 16px 0 0;
}

.renter-clean-assurance dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    padding: 11px 0;
}

.renter-clean-assurance dl div:last-child {
    border-bottom: 0;
}

.renter-clean-assurance dt,
.renter-clean-assurance dd {
    margin: 0;
    font-size: 13px;
    font-weight: 850;
}

.renter-clean-assurance dt {
    color: rgba(7, 17, 31, 0.58);
}

.renter-clean-assurance dd {
    color: var(--ink);
}

.renter-clean-table-wrap {
    overflow-x: auto;
}

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

.renter-clean-table th,
.renter-clean-table td {
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    padding: 13px 10px;
    text-align: left;
    white-space: nowrap;
}

.renter-clean-table th {
    color: rgba(7, 17, 31, 0.45);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.renter-clean-table td:first-child {
    color: var(--ink);
    font-weight: 950;
}

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

.renter-clean-table .status-warn,
.renter-clean-table .status-ok {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 950;
}

.renter-clean-table .status-warn {
    background: rgba(246, 189, 75, 0.22);
    color: #8a5d12;
}

.renter-clean-table .status-ok {
    background: rgba(24, 154, 108, 0.12);
    color: #147451;
}

@media (max-width: 1180px) {
    .renter-clean-summary,
    .renter-clean-grid,
    .renter-clean-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    body.renter-dashboard .dashboard-shell {
        grid-template-columns: 1fr;
    }

    body.renter-dashboard .dashboard-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 17, 31, 0.1);
    }

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

@media (max-width: 720px) {
    body.renter-dashboard .dashboard-main {
        padding: 16px;
    }

    .renter-clean-top,
    .renter-clean-booking {
        grid-template-columns: 1fr;
    }

    .renter-clean-actions,
    .renter-clean-actions a,
    .renter-clean-next a {
        width: 100%;
    }

    .renter-clean-total {
        border-left: 0;
        border-top: 1px solid rgba(7, 17, 31, 0.08);
        padding: 14px 0 0;
        text-align: left;
    }

    .renter-clean-stats {
        grid-template-columns: 1fr;
    }

    .renter-clean-panel-head {
        flex-direction: column;
    }
}

/* Renter dashboard final correction: darker Roadstr-style account workspace. */
body.renter-dashboard {
    background: #f4f5f2;
    font-family: Inter, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
}

body.renter-dashboard .dashboard-shell {
    grid-template-columns: 252px minmax(0, 1fr);
    background: #f4f5f2;
}

body.renter-dashboard .dashboard-sidebar {
    border-right: 0;
    background: #111418;
    color: #fff;
    padding: 26px 22px;
}

body.renter-dashboard .dashboard-sidebar .brand {
    color: #fff;
    gap: 12px;
    font-size: 21px;
    font-weight: 650;
}

body.renter-dashboard .dashboard-sidebar .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f6bd4b;
    color: #111418;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
}

body.renter-dashboard .sidebar-profile {
    margin: 28px 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    padding: 16px;
    color: #fff;
}

body.renter-dashboard .sidebar-profile strong {
    font-size: 14px;
    font-weight: 650;
}

body.renter-dashboard .sidebar-profile span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 500;
}

body.renter-dashboard .dashboard-nav {
    gap: 3px;
}

body.renter-dashboard .dashboard-nav a {
    min-height: 42px;
    border: 0;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.62);
    padding: 0 12px;
    font-size: 14px;
    font-weight: 560;
}

body.renter-dashboard .dashboard-nav a span:last-child {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 600;
}

body.renter-dashboard .dashboard-nav a.active,
body.renter-dashboard .dashboard-nav a:hover {
    border: 0;
    background: #f6bd4b;
    color: #111418;
}

body.renter-dashboard .dashboard-nav a.active span:last-child,
body.renter-dashboard .dashboard-nav a:hover span:last-child {
    color: rgba(17, 20, 24, 0.62);
}

body.renter-dashboard .dashboard-main {
    padding: 34px 38px;
}

body.renter-dashboard .renter-clean {
    width: min(1100px, 100%);
    gap: 14px;
}

body.renter-dashboard .renter-clean-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    margin-bottom: 2px;
}

body.renter-dashboard .renter-clean-crumbs {
    gap: 7px;
    color: rgba(17, 20, 24, 0.48);
    font-size: 12px;
    font-weight: 600;
}

body.renter-dashboard .renter-clean-crumbs strong {
    color: #9a650f;
    font-weight: 650;
}

body.renter-dashboard .renter-clean-top h1 {
    margin: 9px 0 7px;
    font-size: 28px;
    font-weight: 680;
    line-height: 1.12;
}

body.renter-dashboard .renter-clean-top p,
body.renter-dashboard .renter-clean-booking-copy p,
body.renter-dashboard .renter-clean-next p,
body.renter-dashboard .renter-clean-assurance p,
body.renter-dashboard .renter-clean-messages p,
body.renter-dashboard .renter-clean-timeline span {
    color: rgba(17, 20, 24, 0.58);
    font-size: 13px;
    font-weight: 460;
    line-height: 1.55;
}

body.renter-dashboard .renter-clean-actions a,
body.renter-dashboard .renter-clean-next a,
body.renter-dashboard .renter-clean-panel-head a {
    min-height: 38px;
    border-radius: 9px;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 650;
}

body.renter-dashboard .renter-clean-actions .primary,
body.renter-dashboard .renter-clean-next a {
    border-color: #f6bd4b;
    background: #f6bd4b;
    color: #111418;
}

body.renter-dashboard .renter-clean-summary {
    grid-template-columns: minmax(0, 1fr) 286px;
    gap: 14px;
}

body.renter-dashboard .renter-clean-booking,
body.renter-dashboard .renter-clean-next,
body.renter-dashboard .renter-clean-panel,
body.renter-dashboard .renter-clean-stats article {
    border: 1px solid rgba(17, 20, 24, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(17, 20, 24, 0.035);
}

body.renter-dashboard .renter-clean-booking {
    grid-template-columns: 156px minmax(0, 1fr) 126px;
    gap: 14px;
    padding: 14px;
}

body.renter-dashboard .renter-clean-bike {
    border-radius: 8px;
}

body.renter-dashboard .renter-clean-eyebrow {
    color: rgba(17, 20, 24, 0.44);
    font-size: 10px;
    font-weight: 700;
}

body.renter-dashboard .renter-clean-booking h2,
body.renter-dashboard .renter-clean-next h2,
body.renter-dashboard .renter-clean-panel h2 {
    margin: 5px 0 6px;
    font-size: 18px;
    font-weight: 680;
    line-height: 1.2;
}

body.renter-dashboard .renter-clean-tags {
    gap: 6px;
    margin-top: 10px;
}

body.renter-dashboard .renter-clean-tags span {
    border-color: rgba(17, 20, 24, 0.08);
    background: #fafafa;
    color: rgba(17, 20, 24, 0.68);
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 560;
}

body.renter-dashboard .renter-clean-total {
    padding-left: 14px;
}

body.renter-dashboard .renter-clean-total span,
body.renter-dashboard .renter-clean-total small,
body.renter-dashboard .renter-clean-stats small,
body.renter-dashboard .renter-clean-list span,
body.renter-dashboard .renter-clean-checklist small,
body.renter-dashboard .renter-clean-table td {
    color: rgba(17, 20, 24, 0.55);
    font-size: 12px;
    font-weight: 460;
}

body.renter-dashboard .renter-clean-total strong {
    margin: 6px 0;
    font-size: 27px;
    font-weight: 680;
}

body.renter-dashboard .renter-clean-next {
    padding: 18px;
}

body.renter-dashboard .renter-clean-stats {
    gap: 10px;
}

body.renter-dashboard .renter-clean-stats article {
    padding: 13px 14px;
}

body.renter-dashboard .renter-clean-stats span {
    color: rgba(17, 20, 24, 0.45);
    font-size: 10px;
    font-weight: 700;
}

body.renter-dashboard .renter-clean-stats strong {
    margin: 7px 0 5px;
    font-size: 22px;
    font-weight: 680;
}

body.renter-dashboard .renter-clean-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 14px;
}

body.renter-dashboard .renter-clean-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.renter-dashboard .renter-clean-panel {
    padding: 16px;
}

body.renter-dashboard .renter-clean-panel-head {
    margin-bottom: 12px;
}

body.renter-dashboard .renter-clean-panel-head a {
    min-height: 32px;
    border-color: rgba(17, 20, 24, 0.11);
    color: rgba(17, 20, 24, 0.74);
    padding: 0 11px;
    font-size: 12px;
}

body.renter-dashboard .renter-clean-timeline > div {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
}

body.renter-dashboard .renter-clean-timeline i {
    width: 26px;
    height: 26px;
    font-size: 11px;
    font-weight: 650;
}

body.renter-dashboard .renter-clean-timeline strong,
body.renter-dashboard .renter-clean-checklist strong,
body.renter-dashboard .renter-clean-list strong,
body.renter-dashboard .renter-clean-messages strong,
body.renter-dashboard .renter-clean-table td:first-child,
body.renter-dashboard .renter-clean-assurance dd {
    font-size: 13px;
    font-weight: 620;
}

body.renter-dashboard .renter-clean-checklist {
    gap: 8px;
}

body.renter-dashboard .renter-clean-checklist > div {
    border-color: rgba(17, 20, 24, 0.07);
    border-radius: 8px;
    padding: 11px;
}

body.renter-dashboard .renter-clean-list img {
    width: 68px;
    height: 52px;
    border-radius: 7px;
}

body.renter-dashboard .renter-clean-list a {
    grid-template-columns: 68px minmax(0, 1fr);
}

body.renter-dashboard .renter-clean-table th {
    color: rgba(17, 20, 24, 0.42);
    font-size: 10px;
    font-weight: 700;
}

body.renter-dashboard .renter-clean-table th,
body.renter-dashboard .renter-clean-table td {
    padding: 12px 9px;
}

body.renter-dashboard .renter-clean-table .status-warn,
body.renter-dashboard .renter-clean-table .status-ok {
    font-size: 11px;
    font-weight: 620;
}

@media (max-width: 1180px) {
    body.renter-dashboard .renter-clean-summary,
    body.renter-dashboard .renter-clean-grid,
    body.renter-dashboard .renter-clean-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    body.renter-dashboard .dashboard-shell {
        grid-template-columns: 1fr;
    }

    body.renter-dashboard .dashboard-sidebar {
        position: static;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 720px) {
    body.renter-dashboard .dashboard-main {
        padding: 16px;
    }

    body.renter-dashboard .renter-clean-booking,
    body.renter-dashboard .renter-clean-top {
        grid-template-columns: 1fr;
    }

    body.renter-dashboard .renter-clean-total {
        border-left: 0;
        border-top: 1px solid rgba(17, 20, 24, 0.08);
        padding: 13px 0 0;
        text-align: left;
    }
}

/* Renter sidebar polish. */
body.renter-dashboard .dashboard-sidebar {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 6%, rgba(246, 189, 75, 0.18), transparent 28%),
        linear-gradient(180deg, #171b21 0%, #0d1015 58%, #090b0f 100%);
    padding: 24px 18px;
}

body.renter-dashboard .dashboard-sidebar::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 189, 75, 0.55), transparent);
    content: "";
}

body.renter-dashboard .dashboard-sidebar .brand {
    min-height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    padding: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.renter-dashboard .dashboard-sidebar .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffd56a, #efad32);
}

body.renter-dashboard .sidebar-profile {
    position: relative;
    overflow: hidden;
    margin: 20px 0 18px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

body.renter-dashboard .sidebar-profile::before {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(246, 189, 75, 0.14);
    color: #f6bd4b;
    padding: 5px 9px;
    content: "Verified renter";
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

body.renter-dashboard .dashboard-nav a {
    position: relative;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 44px;
    padding: 0 10px;
}

body.renter-dashboard .dashboard-nav a::before {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.58);
    content: "";
}

body.renter-dashboard .dashboard-nav a:nth-child(1)::before {
    content: "01";
}

body.renter-dashboard .dashboard-nav a:nth-child(2)::before {
    content: "02";
}

body.renter-dashboard .dashboard-nav a:nth-child(3)::before {
    content: "03";
}

body.renter-dashboard .dashboard-nav a:nth-child(4)::before {
    content: "04";
}

body.renter-dashboard .dashboard-nav a:nth-child(5)::before {
    content: "05";
}

body.renter-dashboard .dashboard-nav a:nth-child(6)::before {
    content: "06";
}

body.renter-dashboard .dashboard-nav a span:first-child {
    min-width: 0;
}

body.renter-dashboard .dashboard-nav a span:last-child {
    display: inline-flex;
    min-width: 26px;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0 7px;
}

body.renter-dashboard .dashboard-nav a.active {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    box-shadow: inset 3px 0 0 #f6bd4b;
}

body.renter-dashboard .dashboard-nav a.active::before,
body.renter-dashboard .dashboard-nav a:hover::before {
    border-color: rgba(246, 189, 75, 0.5);
    background: #f6bd4b;
    color: #111418;
}

body.renter-dashboard .dashboard-nav a.active span:last-child,
body.renter-dashboard .dashboard-nav a:hover span:last-child {
    background: rgba(246, 189, 75, 0.16);
    color: #f6bd4b;
}

body.renter-dashboard .dashboard-nav a:hover {
    background: rgba(255, 255, 255, 0.075);
    color: #fff;
}

body.renter-dashboard .dashboard-sidebar-footer {
    position: relative;
    margin-top: auto;
    border: 1px solid rgba(246, 189, 75, 0.2);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(246, 189, 75, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.04);
    padding: 15px;
}

body.renter-dashboard .dashboard-sidebar-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

body.renter-dashboard .dashboard-sidebar-footer strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 680;
}

body.renter-dashboard .dashboard-sidebar-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.45;
}

@media (max-width: 980px) {
    body.renter-dashboard .dashboard-sidebar {
        display: block;
    }

    body.renter-dashboard .dashboard-sidebar-footer {
        margin-top: 16px;
    }
}

/* Owner and admin dashboard contrast pass. */
body.owner-dashboard,
body.admin-dashboard {
    background: #ebe9e3;
    font-family: Inter, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
}

body.owner-dashboard .dashboard-shell,
body.admin-dashboard .dashboard-shell {
    grid-template-columns: 272px minmax(0, 1fr);
    background: #ebe9e3;
}

body.owner-dashboard .dashboard-sidebar,
body.admin-dashboard .dashboard-sidebar {
    display: flex;
    flex-direction: column;
    border-right: 0;
    background:
        radial-gradient(circle at 22% 0%, rgba(246, 189, 75, 0.18), transparent 30%),
        linear-gradient(180deg, #171b21 0%, #0d1015 62%, #090b0f 100%);
    color: #fff;
    padding: 24px 18px;
}

body.owner-dashboard .dashboard-sidebar .brand,
body.admin-dashboard .dashboard-sidebar .brand {
    min-height: 58px;
    gap: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    padding: 8px;
    color: #fff;
    font-size: 21px;
    font-weight: 650;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.owner-dashboard .dashboard-sidebar .brand-mark,
body.admin-dashboard .dashboard-sidebar .brand-mark {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffd56a, #efad32);
    color: #111418;
    box-shadow: none;
}

body.owner-dashboard .sidebar-profile,
body.admin-dashboard .sidebar-profile {
    position: relative;
    margin: 20px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px;
    color: #fff;
}

body.owner-dashboard .sidebar-profile::before,
body.admin-dashboard .sidebar-profile::before {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(246, 189, 75, 0.14);
    color: #f6bd4b;
    padding: 5px 9px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

body.owner-dashboard .sidebar-profile::before {
    content: "Owner workspace";
}

body.admin-dashboard .sidebar-profile::before {
    content: "Admin ops";
}

body.owner-dashboard .sidebar-profile strong,
body.admin-dashboard .sidebar-profile strong {
    font-size: 14px;
    font-weight: 650;
}

body.owner-dashboard .sidebar-profile span,
body.admin-dashboard .sidebar-profile span {
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    font-weight: 500;
}

body.owner-dashboard .dashboard-nav,
body.admin-dashboard .dashboard-nav {
    gap: 3px;
}

body.owner-dashboard .dashboard-nav a,
body.admin-dashboard .dashboard-nav a {
    position: relative;
    min-height: 44px;
    border: 0;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.66);
    padding: 0 12px;
    font-size: 14px;
    font-weight: 560;
}

body.owner-dashboard .dashboard-nav a span:last-child,
body.admin-dashboard .dashboard-nav a span:last-child {
    display: inline-flex;
    min-width: 26px;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.46);
    padding: 0 7px;
    font-size: 12px;
}

body.owner-dashboard .dashboard-nav a.active,
body.owner-dashboard .dashboard-nav a:hover,
body.admin-dashboard .dashboard-nav a.active,
body.admin-dashboard .dashboard-nav a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    box-shadow: inset 3px 0 0 #f6bd4b;
}

body.owner-dashboard .dashboard-nav a.active span:last-child,
body.owner-dashboard .dashboard-nav a:hover span:last-child,
body.admin-dashboard .dashboard-nav a.active span:last-child,
body.admin-dashboard .dashboard-nav a:hover span:last-child {
    background: rgba(246, 189, 75, 0.16);
    color: #f6bd4b;
}

body.owner-dashboard .dashboard-sidebar-footer,
body.admin-dashboard .dashboard-sidebar-footer {
    margin-top: auto;
    border: 1px solid rgba(246, 189, 75, 0.2);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(246, 189, 75, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.04);
    padding: 15px;
}

body.owner-dashboard .dashboard-sidebar-footer span,
body.admin-dashboard .dashboard-sidebar-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

body.owner-dashboard .dashboard-sidebar-footer strong,
body.admin-dashboard .dashboard-sidebar-footer strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 680;
}

body.owner-dashboard .dashboard-sidebar-footer p,
body.admin-dashboard .dashboard-sidebar-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.45;
}

body.owner-dashboard .dashboard-main,
body.admin-dashboard .dashboard-main {
    padding: 34px 38px;
    background:
        radial-gradient(circle at 84% 0%, rgba(246, 189, 75, 0.18), transparent 24%),
        #ebe9e3;
}

body.owner-dashboard .dashboard-command,
body.admin-dashboard .dashboard-command {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        radial-gradient(circle at 82% 12%, rgba(246, 189, 75, 0.22), transparent 34%),
        linear-gradient(135deg, #161a20, #0d1015);
    padding: 24px;
    box-shadow: 0 24px 54px rgba(17, 20, 24, 0.18);
}

body.owner-dashboard .dashboard-title h1,
body.admin-dashboard .dashboard-title h1 {
    max-width: 720px;
    color: #fff;
    font-size: 34px;
    font-weight: 720;
    line-height: 1.08;
}

body.owner-dashboard .dashboard-command .eyebrow,
body.admin-dashboard .dashboard-command .eyebrow {
    color: #f6bd4b;
}

body.owner-dashboard .dashboard-command .muted,
body.admin-dashboard .dashboard-command .muted {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 450;
}

body.owner-dashboard .command-actions .btn,
body.admin-dashboard .command-actions .btn {
    border-radius: 10px;
    font-weight: 650;
}

body.owner-dashboard .command-actions .btn-outline,
body.admin-dashboard .command-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

body.owner-dashboard .command-actions .btn-primary,
body.admin-dashboard .command-actions .btn-dark {
    border-color: #f6bd4b;
    background: #f6bd4b;
    color: #111418;
}

body.owner-dashboard .kpi-grid,
body.admin-dashboard .kpi-grid {
    gap: 12px;
}

body.owner-dashboard .kpi-card,
body.admin-dashboard .kpi-card {
    border: 1px solid rgba(17, 20, 24, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 20, 24, 0.07);
}

body.owner-dashboard .kpi-card:first-child,
body.admin-dashboard .kpi-card:first-child {
    border-color: rgba(246, 189, 75, 0.2);
    background:
        radial-gradient(circle at 82% 0%, rgba(246, 189, 75, 0.24), transparent 38%),
        #12161c;
    color: #fff;
}

body.owner-dashboard .kpi-card:first-child span,
body.owner-dashboard .kpi-card:first-child p,
body.admin-dashboard .kpi-card:first-child span,
body.admin-dashboard .kpi-card:first-child p {
    color: rgba(255, 255, 255, 0.62);
}

body.owner-dashboard .kpi-card span,
body.admin-dashboard .kpi-card span {
    color: rgba(17, 20, 24, 0.48);
    font-size: 11px;
    font-weight: 700;
}

body.owner-dashboard .kpi-card strong,
body.admin-dashboard .kpi-card strong {
    color: inherit;
    font-size: 30px;
    font-weight: 720;
}

body.owner-dashboard .panel,
body.admin-dashboard .panel {
    border: 1px solid rgba(17, 20, 24, 0.1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 20, 24, 0.07);
}

body.owner-dashboard .panel h2,
body.admin-dashboard .panel h2 {
    color: #12161c;
    font-size: 22px;
    font-weight: 700;
}

body.owner-dashboard .panel .eyebrow,
body.admin-dashboard .panel .eyebrow {
    color: #9a650f;
    font-weight: 720;
}

body.owner-dashboard .table th,
body.admin-dashboard .table th {
    color: rgba(17, 20, 24, 0.46);
    font-weight: 720;
}

body.owner-dashboard .table td,
body.admin-dashboard .table td,
body.owner-dashboard .condition-list li,
body.admin-dashboard .condition-list li {
    color: rgba(17, 20, 24, 0.68);
    font-size: 13px;
    font-weight: 500;
}

body.owner-dashboard .table td:first-child,
body.admin-dashboard .table td:first-child,
body.owner-dashboard .condition-list strong,
body.admin-dashboard .condition-list strong {
    color: #12161c;
    font-weight: 650;
}

body.owner-dashboard .ops-card,
body.admin-dashboard .ops-card {
    border: 1px solid rgba(17, 20, 24, 0.09);
    border-radius: 10px;
    background:
        linear-gradient(180deg, #fff, #f7f5ef);
    box-shadow: none;
}

body.owner-dashboard .ops-card strong,
body.admin-dashboard .ops-card strong {
    color: #12161c;
    font-weight: 700;
}

@media (max-width: 980px) {
    body.owner-dashboard .dashboard-shell,
    body.admin-dashboard .dashboard-shell {
        grid-template-columns: 1fr;
    }

    body.owner-dashboard .dashboard-sidebar,
    body.admin-dashboard .dashboard-sidebar {
        position: static;
        height: auto;
        display: block;
    }

    body.owner-dashboard .dashboard-sidebar-footer,
    body.admin-dashboard .dashboard-sidebar-footer {
        margin-top: 16px;
    }
}

/* Dashboard sidebar simplification after visual review. */
body.renter-dashboard .dashboard-shell,
body.owner-dashboard .dashboard-shell,
body.admin-dashboard .dashboard-shell {
    grid-template-columns: 244px minmax(0, 1fr);
}

body.renter-dashboard .dashboard-sidebar,
body.owner-dashboard .dashboard-sidebar,
body.admin-dashboard .dashboard-sidebar {
    background: #111419;
    padding: 24px 20px;
}

body.renter-dashboard .dashboard-sidebar::before {
    display: none;
}

body.renter-dashboard .dashboard-sidebar .brand,
body.owner-dashboard .dashboard-sidebar .brand,
body.admin-dashboard .dashboard-sidebar .brand {
    min-height: auto;
    gap: 11px;
    border-radius: 0;
    background: transparent;
    padding: 0 0 22px;
    box-shadow: none;
    font-size: 23px;
    font-weight: 720;
}

body.renter-dashboard .dashboard-sidebar .brand-mark,
body.owner-dashboard .dashboard-sidebar .brand-mark,
body.admin-dashboard .dashboard-sidebar .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f6bd4b;
    font-size: 13px;
}

body.renter-dashboard .sidebar-profile,
body.owner-dashboard .sidebar-profile,
body.admin-dashboard .sidebar-profile {
    margin: 0 0 22px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    background: transparent;
    padding: 16px 0;
}

body.renter-dashboard .sidebar-profile::before,
body.owner-dashboard .sidebar-profile::before,
body.admin-dashboard .sidebar-profile::before {
    display: none;
}

body.renter-dashboard .sidebar-profile strong,
body.owner-dashboard .sidebar-profile strong,
body.admin-dashboard .sidebar-profile strong {
    font-size: 13px;
    font-weight: 650;
}

body.renter-dashboard .sidebar-profile span,
body.owner-dashboard .sidebar-profile span,
body.admin-dashboard .sidebar-profile span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

body.renter-dashboard .dashboard-nav,
body.owner-dashboard .dashboard-nav,
body.admin-dashboard .dashboard-nav {
    gap: 2px;
}

body.renter-dashboard .dashboard-nav a,
body.owner-dashboard .dashboard-nav a,
body.admin-dashboard .dashboard-nav a {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 43px;
    border-radius: 8px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 560;
    box-shadow: none;
}

body.renter-dashboard .dashboard-nav a::before {
    display: none;
}

body.renter-dashboard .dashboard-nav a.active,
body.renter-dashboard .dashboard-nav a:hover,
body.owner-dashboard .dashboard-nav a.active,
body.owner-dashboard .dashboard-nav a:hover,
body.admin-dashboard .dashboard-nav a.active,
body.admin-dashboard .dashboard-nav a:hover {
    background: rgba(255, 255, 255, 0.075);
    color: #fff;
    box-shadow: none;
}

body.renter-dashboard .dashboard-nav a span:last-child,
body.owner-dashboard .dashboard-nav a span:last-child,
body.admin-dashboard .dashboard-nav a span:last-child {
    min-width: auto;
    min-height: auto;
    background: transparent;
    color: rgba(255, 255, 255, 0.42);
    padding: 0;
    font-size: 12px;
    font-weight: 600;
}

body.renter-dashboard .dashboard-nav a.active span:last-child,
body.renter-dashboard .dashboard-nav a:hover span:last-child,
body.owner-dashboard .dashboard-nav a.active span:last-child,
body.owner-dashboard .dashboard-nav a:hover span:last-child,
body.admin-dashboard .dashboard-nav a.active span:last-child,
body.admin-dashboard .dashboard-nav a:hover span:last-child {
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
}

body.renter-dashboard .dashboard-sidebar-footer,
body.owner-dashboard .dashboard-sidebar-footer,
body.admin-dashboard .dashboard-sidebar-footer {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    padding: 13px;
}

body.renter-dashboard .dashboard-sidebar-footer span,
body.owner-dashboard .dashboard-sidebar-footer span,
body.admin-dashboard .dashboard-sidebar-footer span {
    color: rgba(255, 255, 255, 0.42);
}

body.renter-dashboard .dashboard-sidebar-footer strong,
body.owner-dashboard .dashboard-sidebar-footer strong,
body.admin-dashboard .dashboard-sidebar-footer strong {
    font-size: 14px;
    font-weight: 650;
}

@media (max-width: 980px) {
    body.renter-dashboard .dashboard-shell,
    body.owner-dashboard .dashboard-shell,
    body.admin-dashboard .dashboard-shell {
        grid-template-columns: 1fr;
    }
}

/* Owner dashboard now follows the renter dashboard clean account layout. */
body.owner-dashboard .dashboard-main {
    padding: 34px 38px;
    background: #f4f5f2;
}

body.owner-dashboard .renter-clean {
    width: min(1100px, 100%);
    gap: 14px;
}

body.owner-dashboard .renter-clean-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    margin-bottom: 2px;
}

body.owner-dashboard .renter-clean-crumbs {
    gap: 7px;
    color: rgba(17, 20, 24, 0.48);
    font-size: 12px;
    font-weight: 600;
}

body.owner-dashboard .renter-clean-crumbs strong {
    color: #9a650f;
    font-weight: 650;
}

body.owner-dashboard .renter-clean-top h1 {
    margin: 9px 0 7px;
    font-size: 28px;
    font-weight: 680;
    line-height: 1.12;
}

body.owner-dashboard .renter-clean-top p,
body.owner-dashboard .renter-clean-booking-copy p,
body.owner-dashboard .renter-clean-next p,
body.owner-dashboard .renter-clean-assurance p,
body.owner-dashboard .renter-clean-messages p,
body.owner-dashboard .renter-clean-timeline span {
    color: rgba(17, 20, 24, 0.58);
    font-size: 13px;
    font-weight: 460;
    line-height: 1.55;
}

body.owner-dashboard .renter-clean-actions a,
body.owner-dashboard .renter-clean-next a,
body.owner-dashboard .renter-clean-panel-head a {
    min-height: 38px;
    border-radius: 9px;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 650;
}

body.owner-dashboard .renter-clean-actions .primary,
body.owner-dashboard .renter-clean-next a {
    border-color: #f6bd4b;
    background: #f6bd4b;
    color: #111418;
}

body.owner-dashboard .renter-clean-summary {
    grid-template-columns: minmax(0, 1fr) 286px;
    gap: 14px;
}

body.owner-dashboard .renter-clean-booking,
body.owner-dashboard .renter-clean-next,
body.owner-dashboard .renter-clean-panel,
body.owner-dashboard .renter-clean-stats article {
    border: 1px solid rgba(17, 20, 24, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(17, 20, 24, 0.035);
}

body.owner-dashboard .renter-clean-booking {
    grid-template-columns: 156px minmax(0, 1fr) 126px;
    gap: 14px;
    padding: 14px;
}

body.owner-dashboard .renter-clean-bike {
    border-radius: 8px;
}

body.owner-dashboard .renter-clean-eyebrow {
    color: rgba(17, 20, 24, 0.44);
    font-size: 10px;
    font-weight: 700;
}

body.owner-dashboard .renter-clean-booking h2,
body.owner-dashboard .renter-clean-next h2,
body.owner-dashboard .renter-clean-panel h2 {
    margin: 5px 0 6px;
    font-size: 18px;
    font-weight: 680;
    line-height: 1.2;
}

body.owner-dashboard .renter-clean-tags span {
    border-color: rgba(17, 20, 24, 0.08);
    background: #fafafa;
    color: rgba(17, 20, 24, 0.68);
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 560;
}

body.owner-dashboard .renter-clean-total {
    padding-left: 14px;
}

body.owner-dashboard .renter-clean-total span,
body.owner-dashboard .renter-clean-total small,
body.owner-dashboard .renter-clean-stats small,
body.owner-dashboard .renter-clean-list span,
body.owner-dashboard .renter-clean-checklist small,
body.owner-dashboard .renter-clean-table td {
    color: rgba(17, 20, 24, 0.55);
    font-size: 12px;
    font-weight: 460;
}

body.owner-dashboard .renter-clean-total strong {
    margin: 6px 0;
    font-size: 27px;
    font-weight: 680;
}

body.owner-dashboard .renter-clean-next {
    padding: 18px;
}

body.owner-dashboard .renter-clean-stats {
    gap: 10px;
}

body.owner-dashboard .renter-clean-stats article {
    padding: 13px 14px;
}

body.owner-dashboard .renter-clean-stats span {
    color: rgba(17, 20, 24, 0.45);
    font-size: 10px;
    font-weight: 700;
}

body.owner-dashboard .renter-clean-stats strong {
    margin: 7px 0 5px;
    font-size: 22px;
    font-weight: 680;
}

body.owner-dashboard .renter-clean-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 14px;
}

body.owner-dashboard .renter-clean-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.owner-dashboard .renter-clean-panel {
    padding: 16px;
}

body.owner-dashboard .renter-clean-panel-head {
    margin-bottom: 12px;
}

body.owner-dashboard .renter-clean-panel-head a {
    min-height: 32px;
    border-color: rgba(17, 20, 24, 0.11);
    color: rgba(17, 20, 24, 0.74);
    padding: 0 11px;
    font-size: 12px;
}

body.owner-dashboard .renter-clean-timeline > div {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
}

body.owner-dashboard .renter-clean-timeline i {
    width: 26px;
    height: 26px;
    font-size: 11px;
    font-weight: 650;
}

body.owner-dashboard .renter-clean-timeline strong,
body.owner-dashboard .renter-clean-checklist strong,
body.owner-dashboard .renter-clean-list strong,
body.owner-dashboard .renter-clean-messages strong,
body.owner-dashboard .renter-clean-table td:first-child,
body.owner-dashboard .renter-clean-assurance dd {
    font-size: 13px;
    font-weight: 620;
}

body.owner-dashboard .renter-clean-checklist {
    gap: 8px;
}

body.owner-dashboard .renter-clean-checklist > div {
    border-color: rgba(17, 20, 24, 0.07);
    border-radius: 8px;
    padding: 11px;
}

body.owner-dashboard .renter-clean-list img {
    width: 68px;
    height: 52px;
    border-radius: 7px;
}

body.owner-dashboard .renter-clean-list a {
    grid-template-columns: 68px minmax(0, 1fr);
}

body.owner-dashboard .renter-clean-table th {
    color: rgba(17, 20, 24, 0.42);
    font-size: 10px;
    font-weight: 700;
}

body.owner-dashboard .renter-clean-table th,
body.owner-dashboard .renter-clean-table td {
    padding: 12px 9px;
}

body.owner-dashboard .renter-clean-table .status-warn,
body.owner-dashboard .renter-clean-table .status-ok {
    font-size: 11px;
    font-weight: 620;
}

@media (max-width: 1180px) {
    body.owner-dashboard .renter-clean-summary,
    body.owner-dashboard .renter-clean-grid,
    body.owner-dashboard .renter-clean-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body.owner-dashboard .dashboard-main {
        padding: 16px;
    }

    body.owner-dashboard .renter-clean-booking,
    body.owner-dashboard .renter-clean-top {
        grid-template-columns: 1fr;
    }

    body.owner-dashboard .renter-clean-total {
        border-left: 0;
        border-top: 1px solid rgba(17, 20, 24, 0.08);
        padding: 13px 0 0;
        text-align: left;
    }
}

/* Admin dashboard: distinct operations console. */
body.admin-dashboard .dashboard-main {
    padding: 30px 34px;
    background: #eef0ed;
}

.admin-ops {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
    color: #12161c;
    font-family: Inter, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
}

.admin-ops-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    overflow: hidden;
    border: 1px solid rgba(17, 20, 24, 0.08);
    border-radius: 14px;
    background:
        radial-gradient(circle at 86% 8%, rgba(246, 189, 75, 0.22), transparent 30%),
        linear-gradient(135deg, #171b21, #0f1217);
    padding: 22px;
    box-shadow: 0 22px 48px rgba(17, 20, 24, 0.16);
}

.admin-ops-crumbs {
    display: flex;
    gap: 7px;
    align-items: center;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 600;
}

.admin-ops-crumbs strong {
    color: #f6bd4b;
}

.admin-ops-top h1 {
    margin: 10px 0 7px;
    color: #fff;
    font-size: 31px;
    font-weight: 720;
    line-height: 1.08;
}

.admin-ops-top p,
.admin-ops-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 450;
    line-height: 1.55;
}

.admin-ops-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-ops-actions a,
.admin-ops-panel-head a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 650;
}

.admin-ops-actions .primary {
    border-color: #f6bd4b;
    background: #f6bd4b;
    color: #111418;
}

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

.admin-ops-metrics article,
.admin-ops-panel {
    border: 1px solid rgba(17, 20, 24, 0.09);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 13px 30px rgba(17, 20, 24, 0.055);
}

.admin-ops-metrics article {
    padding: 15px;
}

.admin-ops-metrics .is-dark {
    border-color: rgba(246, 189, 75, 0.18);
    background:
        radial-gradient(circle at 80% 0%, rgba(246, 189, 75, 0.24), transparent 36%),
        #12161c;
    color: #fff;
}

.admin-ops-metrics span,
.admin-ops-panel > span,
.admin-ops-panel-head span {
    display: block;
    color: rgba(17, 20, 24, 0.46);
    font-size: 10px;
    font-weight: 720;
    text-transform: uppercase;
}

.admin-ops-metrics .is-dark span,
.admin-ops-metrics .is-dark small {
    color: rgba(255, 255, 255, 0.62);
}

.admin-ops-metrics strong {
    display: block;
    margin: 9px 0 5px;
    color: inherit;
    font-size: 28px;
    font-weight: 720;
    line-height: 1;
}

.admin-ops-metrics small {
    color: rgba(17, 20, 24, 0.55);
    font-size: 12px;
    font-weight: 450;
}

.admin-ops-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: start;
}

.admin-ops-main,
.admin-ops-rail {
    display: grid;
    gap: 14px;
}

.admin-ops-panel {
    min-width: 0;
    padding: 16px;
}

.admin-ops-panel-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.admin-ops-panel h2,
.admin-ops-panel-head h2 {
    margin: 5px 0 0;
    color: #12161c;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
}

.admin-ops-panel p {
    color: rgba(17, 20, 24, 0.58);
}

.admin-ops-panel-head a {
    min-height: 32px;
    border-color: rgba(17, 20, 24, 0.1);
    background: #fff;
    color: rgba(17, 20, 24, 0.72);
    padding: 0 11px;
    white-space: nowrap;
    font-size: 12px;
}

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

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

.admin-ops-table th,
.admin-ops-table td {
    border-bottom: 1px solid rgba(17, 20, 24, 0.08);
    padding: 12px 9px;
    text-align: left;
    white-space: nowrap;
}

.admin-ops-table th {
    color: rgba(17, 20, 24, 0.42);
    font-size: 10px;
    font-weight: 720;
    text-transform: uppercase;
}

.admin-ops-table td {
    color: rgba(17, 20, 24, 0.62);
    font-size: 13px;
    font-weight: 470;
}

.admin-ops-table td:first-child {
    color: #12161c;
    font-weight: 650;
}

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

.admin-ops-table span {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 650;
}

.admin-ops-table .warn {
    background: rgba(246, 189, 75, 0.22);
    color: #8a5d12;
}

.admin-ops-table .ok {
    background: rgba(24, 154, 108, 0.12);
    color: #147451;
}

.admin-ops-table .info {
    background: rgba(37, 92, 255, 0.1);
    color: #123dc4;
}

.admin-ops-alerts {
    background:
        radial-gradient(circle at 84% 0%, rgba(246, 189, 75, 0.18), transparent 36%),
        #12161c;
    color: #fff;
}

.admin-ops-alerts > span,
.admin-ops-alerts h2 {
    color: #fff;
}

.admin-ops-alerts ul {
    display: grid;
    gap: 0;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.admin-ops-alerts li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
}

.admin-ops-alerts li:last-child {
    border-bottom: 0;
}

.admin-ops-alerts li strong {
    color: #f6bd4b;
    font-size: 24px;
    font-weight: 720;
}

.admin-ops-alerts li span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 450;
    line-height: 1.4;
}

.admin-ops-assurance dl {
    display: grid;
    gap: 0;
    margin: 14px 0 0;
}

.admin-ops-assurance dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(17, 20, 24, 0.08);
    padding: 10px 0;
}

.admin-ops-assurance dl div:last-child {
    border-bottom: 0;
}

.admin-ops-assurance dt,
.admin-ops-assurance dd {
    margin: 0;
    font-size: 13px;
}

.admin-ops-assurance dt {
    color: rgba(17, 20, 24, 0.55);
    font-weight: 450;
}

.admin-ops-assurance dd {
    color: #12161c;
    font-weight: 650;
}

.admin-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 1180px) {
    .admin-ops-layout,
    .admin-ops-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .admin-ops-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.admin-dashboard .dashboard-main {
        padding: 16px;
    }

    .admin-ops-top,
    .admin-ops-metrics {
        grid-template-columns: 1fr;
    }

    .admin-ops-actions,
    .admin-ops-actions a {
        width: 100%;
    }
}
