/* ==============================================================
   TERMINO.RENT — SIGNATURE V2
   ============================================================== */

:root {
    --v2-black: #0a0b0d;
    --v2-black-2: #111317;
    --v2-text: #111318;
    --v2-muted: #6b7078;
    --v2-bg: #f4f5f6;
    --v2-white: #ffffff;
    --v2-border: #e2e4e7;
    --v2-radius: 22px;
    --v2-container: 1380px;
}

body[data-theme="signature"] {
    background: var(--v2-bg);
    color: var(--v2-text);
}

body[data-theme="signature"] .site-shell {
    overflow: clip;
}

.v2-container {
    width: min(calc(100% - 48px), var(--v2-container));
    margin-inline: auto;
}


/* HEADER ===================================================== */

.v2-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
}

.v2-header__inner {
    width: min(calc(100% - 48px), var(--v2-container));
    height: 92px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.v2-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    min-width: 180px;
}

.v2-brand__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.v2-brand__mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: white;
    color: black;
    border-radius: 10px;
    font-weight: 900;
}

.v2-brand__name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.v2-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.v2-nav a {
    position: relative;
    color: rgba(255,255,255,.76);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.v2-nav a:hover,
.v2-nav a.is-active {
    color: white;
}

.v2-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 2px;
    background: white;
}

.v2-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-language {
    position: relative;
}

.v2-language__button {
    border: 0;
    background: transparent;
    color: white;
    padding: 10px;
    font-size: 13px;
    font-weight: 800;
}

.v2-language__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 90px;
    padding: 8px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.v2-language__menu a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.v2-language__menu a:hover,
.v2-language__menu a.is-active {
    background: #f0f1f2;
}

.v2-header__book {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 21px;
    background: white;
    color: #111;
    text-decoration: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.v2-menu-button,
.v2-mobile-nav {
    display: none;
}


/* HERO ======================================================= */

.v2-hero {
    position: relative;
    min-height: 820px;
    background: #111;
    color: white;
}

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

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

.v2-hero__shade {
    background:
        linear-gradient(90deg, rgba(5,7,10,.82) 0%, rgba(5,7,10,.46) 46%, rgba(5,7,10,.12) 76%),
        linear-gradient(0deg, rgba(5,7,10,.54) 0%, transparent 50%);
}

.v2-hero__content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--v2-container));
    min-height: 700px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding-top: 85px;
}

.v2-hero__copy {
    width: min(720px, 65%);
}

.v2-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v2-kicker span {
    width: 26px;
    height: 1px;
    background: currentColor;
}

.v2-kicker--dark {
    color: #747981;
}

.v2-hero h1 {
    max-width: 850px;
    color: white;
    font-size: clamp(54px, 6.5vw, 104px);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.065em;
}

.v2-hero__copy > p {
    max-width: 560px;
    margin-top: 26px;
    color: rgba(255,255,255,.74);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.55;
}

.v2-hero__actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
}

.v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

.v2-button:hover {
    transform: translateY(-2px);
}

.v2-button svg,
.v2-search__submit svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.v2-button--light {
    background: white;
    color: #111;
}

.v2-button--dark {
    background: #111;
    color: white;
}

.v2-hero__fleet-link {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-underline-offset: 5px;
}

.v2-hero__search-wrap {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: -61px;
    width: min(calc(100% - 48px), var(--v2-container));
    transform: translateX(-50%);
}


/* SEARCH ===================================================== */

.v2-search {
    padding: 16px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 24px;
    background: rgba(255,255,255,.97);
    color: #111;
    box-shadow: 0 24px 70px rgba(0,0,0,.16);
    backdrop-filter: blur(20px);
}

.v2-search__title {
    display: none;
}

.v2-search__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr .55fr 1fr .55fr auto;
    align-items: stretch;
}

.v2-search-field {
    min-width: 0;
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 20px;
    border-right: 1px solid #e5e7e9;
}

.v2-search-field__icon {
    flex: 0 0 23px;
}

.v2-search-field__icon svg {
    width: 23px;
    fill: none;
    stroke: #777d85;
    stroke-width: 1.6;
}

.v2-search-field > div {
    min-width: 0;
    width: 100%;
}

.v2-search-field label {
    display: block;
    margin-bottom: 3px;
    color: #8a8e94;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.v2-search-field select,
.v2-search-field input {
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #15171a;
    font-size: 14px;
    font-weight: 750;
    box-shadow: none;
}

.v2-search-field select:focus,
.v2-search-field input:focus {
    outline: none;
}

.v2-hidden-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.v2-search__submit {
    min-width: 168px;
    border: 0;
    border-radius: 16px;
    background: #101215;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.v2-search__submit:hover {
    background: #292d32;
    transform: translateY(-1px);
}

.v2-search__error {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff0f0;
    color: #a32929;
    font-size: 13px;
}


/* SECTIONS =================================================== */

.v2-section {
    padding: 120px 0;
}

.v2-fleet-section {
    padding-top: 190px;
    background: #f4f5f6;
}

.v2-section-head {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.v2-section-head h2 {
    max-width: 760px;
    color: #111318;
    font-size: clamp(40px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}

.v2-section-head__side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.v2-section-head__side p {
    color: #72777e;
    font-size: 15px;
}

.v2-arrow-link {
    display: inline-flex;
    gap: 13px;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.v2-arrow-link span {
    transition: transform .2s ease;
}

.v2-arrow-link:hover span {
    transform: translateX(5px);
}


/* VEHICLE CARDS ============================================== */

.v2-fleet {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.v2-car {
    overflow: hidden;
    border-radius: var(--v2-radius);
    background: white;
    border: 1px solid #e8e9eb;
    transition: transform .35s cubic-bezier(.2,.8,.2,1),
                box-shadow .35s ease;
}

.v2-car:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(20,25,30,.09);
}

.v2-car__image {
    position: relative;
    display: block;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #eceef0;
}

.v2-car__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.v2-car:hover .v2-car__image img {
    transform: scale(1.035);
}

.v2-car__view {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #111;
    font-size: 18px;
    transform: translateY(-5px);
    opacity: 0;
    transition: .25s ease;
}

.v2-car:hover .v2-car__view {
    transform: none;
    opacity: 1;
}

.v2-car__body {
    padding: 22px;
}

.v2-car__heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.v2-car__category {
    color: #858a90;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.v2-car h3 {
    margin-top: 4px;
    font-size: 23px;
    letter-spacing: -.035em;
}

.v2-car__price {
    text-align: right;
    white-space: nowrap;
}

.v2-car__price strong {
    display: block;
    font-size: 18px;
}

.v2-car__price span {
    color: #8b9096;
    font-size: 10px;
}

.v2-car__specs {
    display: flex;
    gap: 17px;
    margin-top: 21px;
    padding-top: 18px;
    border-top: 1px solid #eceef0;
}

.v2-car__specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6d7278;
    font-size: 11px;
    font-weight: 700;
}

.v2-car__specs svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.v2-fleet__footer {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}


/* PROCESS ==================================================== */

.v2-process {
    background: white;
}

.v2-process__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid #dddfe2;
}

.v2-process__grid article {
    position: relative;
    min-height: 300px;
    padding: 34px 42px 30px 0;
    border-right: 1px solid #dddfe2;
}

.v2-process__grid article + article {
    padding-left: 42px;
}

.v2-process__grid article:last-child {
    border-right: 0;
}

.v2-process__number {
    color: #969ba1;
    font-size: 11px;
    font-weight: 800;
}

.v2-process__icon {
    margin: 50px 0 28px;
    font-size: 31px;
}

.v2-process__grid h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.v2-process__grid p {
    color: #747980;
    font-size: 14px;
}


/* LOCATIONS ================================================== */

.v2-locations {
    background: #eef0f1;
}

.v2-location-grid {
    border-top: 1px solid #d5d8db;
}

.v2-location {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 25px;
    min-height: 125px;
    border-bottom: 1px solid #d5d8db;
    transition: padding .25s ease, background .25s ease;
}

.v2-location:hover {
    padding-inline: 20px;
    background: rgba(255,255,255,.55);
}

.v2-location__number {
    color: #8a8f95;
    font-size: 11px;
    font-weight: 800;
}

.v2-location h3 {
    font-size: 23px;
}

.v2-location p,
.v2-location div > span {
    color: #7a7f85;
    font-size: 13px;
}

.v2-location__arrow {
    font-size: 22px;
}


/* CTA ======================================================== */

.v2-final-cta {
    padding: 100px 0;
    background: #0d0f12;
    color: white;
}

.v2-final-cta__inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.v2-final-cta h2 {
    max-width: 800px;
    color: white;
    font-size: clamp(42px,5vw,76px);
    letter-spacing: -.055em;
}


/* ANIMATIONS ================================================= */

.js [data-v2-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .75s cubic-bezier(.2,.8,.2,1),
        transform .75s cubic-bezier(.2,.8,.2,1);
}

.js [data-v2-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.v2-hero[data-v2-reveal] {
    transform: none;
}


/* RESPONSIVE ================================================= */

@media (max-width: 1100px) {

    .v2-nav {
        gap: 20px;
    }

    .v2-search__grid {
        grid-template-columns: 1.4fr 1fr .6fr 1fr .6fr;
    }

    .v2-search__submit {
        grid-column: 1 / -1;
        min-height: 56px;
        margin-top: 10px;
    }

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

}


@media (max-width: 780px) {

    .v2-container,
    .v2-header__inner,
    .v2-hero__content,
    .v2-hero__search-wrap {
        width: min(calc(100% - 28px), var(--v2-container));
    }

    .v2-header__inner {
        height: 72px;
    }

    .v2-brand {
        min-width: 0;
    }

    .v2-brand__logo {
        width: 36px;
        height: 36px;
    }

    .v2-brand__name {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
    }

    .v2-nav,
    .v2-language,
    .v2-header__book {
        display: none;
    }

    .v2-menu-button {
        display: flex;
        width: 44px;
        height: 44px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid rgba(255,255,255,.28);
        border-radius: 50%;
        background: rgba(255,255,255,.08);
    }

    .v2-menu-button span {
        width: 17px;
        height: 1px;
        background: white;
        transition: .25s ease;
    }

    .v2-menu-button[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .v2-menu-button[aria-expanded="true"] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .v2-mobile-nav {
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        padding: 18px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 25px 70px rgba(0,0,0,.25);
    }

    .v2-mobile-nav:not([hidden]) {
        display: block;
    }

    .v2-mobile-nav > a {
        display: block;
        padding: 13px 5px;
        border-bottom: 1px solid #eceef0;
        color: #111;
        text-decoration: none;
        font-weight: 750;
    }

    .v2-mobile-nav__languages {
        display: flex;
        gap: 8px;
        padding-top: 15px;
    }

    .v2-mobile-nav__languages a {
        padding: 8px 12px;
        border-radius: 9px;
        background: #f1f2f3;
        color: #111;
        text-decoration: none;
        font-size: 11px;
        font-weight: 900;
    }

    .v2-mobile-nav__languages a.is-active {
        background: #111;
        color: white;
    }


    /* mobile hero */

    .v2-hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .v2-hero__media {
        height: 590px;
    }

    .v2-hero__shade {
        background:
            linear-gradient(0deg, rgba(5,7,10,.86) 0%, rgba(5,7,10,.22) 75%),
            linear-gradient(90deg, rgba(5,7,10,.35), transparent);
    }

    .v2-hero__content {
        min-height: 590px;
        align-items: flex-end;
        padding: 120px 0 55px;
    }

    .v2-hero__copy {
        width: 100%;
    }

    .v2-hero h1 {
        font-size: clamp(46px,14vw,70px);
    }

    .v2-hero__copy > p {
        margin-top: 18px;
        font-size: 15px;
    }

    .v2-hero__actions {
        margin-top: 25px;
    }

    .v2-hero__fleet-link {
        display: none;
    }

    .v2-hero__search-wrap {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        padding: 14px;
        transform: none;
        background: #f4f5f6;
    }


    /* mobile search */

    .v2-search {
        width: 100%;
        padding: 18px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(20,25,30,.08);
    }

    .v2-search__title {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .v2-search__pulse {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #26a269;
        box-shadow: 0 0 0 5px rgba(38,162,105,.12);
    }

    .v2-search__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .v2-search-field {
        min-height: 76px;
        padding: 11px 13px;
        border: 1px solid #e3e5e7;
        border-radius: 14px;
        background: #fafafa;
    }

    .v2-search-field--location {
        grid-column: 1 / -1;
    }

    .v2-search-field--time {
        display: none;
    }

    .v2-search-field__icon {
        flex-basis: 19px;
    }

    .v2-search-field__icon svg {
        width: 19px;
    }

    .v2-search-field label {
        font-size: 9px;
    }

    .v2-search-field select,
    .v2-search-field input {
        font-size: 12px;
    }

    .v2-search__submit {
        grid-column: 1 / -1;
        min-height: 56px;
        margin-top: 2px;
        border-radius: 14px;
    }


    /* mobile sections */

    .v2-section {
        padding: 75px 0;
    }

    .v2-fleet-section {
        padding-top: 72px;
    }

    .v2-section-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .v2-section-head h2 {
        font-size: 42px;
    }

    .v2-section-head__side p {
        font-size: 14px;
    }

    .v2-fleet {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 13px;
        margin-inline: -14px;
        padding-inline: 14px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .v2-fleet::-webkit-scrollbar {
        display: none;
    }

    .v2-car {
        flex: 0 0 86%;
        scroll-snap-align: start;
    }

    .v2-car__view {
        opacity: 1;
        transform: none;
    }

    .v2-car__body {
        padding: 18px;
    }

    .v2-car h3 {
        font-size: 20px;
    }

    .v2-fleet__footer {
        justify-content: stretch;
        margin-top: 25px;
    }

    .v2-fleet__footer .v2-button {
        width: 100%;
    }

    .v2-process__grid {
        grid-template-columns: 1fr;
    }

    .v2-process__grid article,
    .v2-process__grid article + article {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid #dddfe2;
    }

    .v2-process__grid article:last-child {
        border-bottom: 0;
    }

    .v2-process__icon {
        margin: 30px 0 20px;
    }

    .v2-location {
        grid-template-columns: 35px 1fr auto;
        gap: 12px;
        min-height: 105px;
    }

    .v2-location h3 {
        font-size: 18px;
    }

    .v2-final-cta {
        padding: 70px 0;
    }

    .v2-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .v2-final-cta h2 {
        font-size: 42px;
    }

    .v2-final-cta .v2-button {
        width: 100%;
    }

}


@media (prefers-reduced-motion: reduce) {

    .js [data-v2-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* ============================================================
   SIGNATURE V2.1 — HERO CORRECTION
   ============================================================ */

body[data-theme="signature"] {
    --v21-bg: #0b0d10;
    --v21-surface: #f5f6f7;
}

/* Header must always sit over hero */
body[data-theme="signature"] .v2-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
}

/* Completely redefine hero */
body[data-theme="signature"] .v2-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 45%, rgba(255,255,255,.10), transparent 32%),
        linear-gradient(120deg, #090b0e 0%, #11151a 58%, #191d22 100%);
}

/*
 * Company cover is supporting atmosphere only.
 * This prevents banner-style covers from destroying hero composition.
 */
body[data-theme="signature"] .v2-hero__media {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .28;
}

body[data-theme="signature"] .v2-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.75) contrast(1.05);
}

body[data-theme="signature"] .v2-hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7,9,12,.98) 0%,
            rgba(7,9,12,.91) 32%,
            rgba(7,9,12,.58) 60%,
            rgba(7,9,12,.30) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7,9,12,.72) 0%,
            transparent 45%
        );
}

/* Main hero content */
body[data-theme="signature"] .v2-hero__content {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 64px), 1380px);
    min-height: 650px;
    margin-inline: auto;
    padding: 145px 0 135px;
    display: flex;
    align-items: center;
}

body[data-theme="signature"] .v2-hero__copy {
    width: min(720px, 62%);
}

body[data-theme="signature"] .v2-hero h1 {
    margin: 0;
    max-width: 780px;
    color: #fff;
    font-size: clamp(58px, 6.1vw, 94px);
    line-height: .94;
    font-weight: 760;
    letter-spacing: -.065em;
}

body[data-theme="signature"] .v2-hero__copy > p {
    max-width: 570px;
    margin-top: 26px;
    color: rgba(255,255,255,.68);
    font-size: 18px;
    line-height: 1.55;
}

body[data-theme="signature"] .v2-hero__actions {
    margin-top: 34px;
}

/* Search floats between hero and content */
body[data-theme="signature"] .v2-hero__search-wrap {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: -58px;
    width: min(calc(100% - 64px), 1380px);
    transform: translateX(-50%);
}

/* Search card */
body[data-theme="signature"] .v2-search {
    padding: 12px;
    border: 1px solid rgba(15,20,25,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow:
        0 30px 80px rgba(0,0,0,.18),
        0 3px 12px rgba(0,0,0,.05);
}

body[data-theme="signature"] .v2-search__grid {
    min-height: 94px;
}

body[data-theme="signature"] .v2-search-field {
    min-height: 94px;
}

body[data-theme="signature"] .v2-search__submit {
    margin: 5px;
    border-radius: 17px;
}

/* Fleet starts after floating search */
body[data-theme="signature"] .v2-fleet-section {
    padding-top: 175px;
}

/* Make section typography less oversized */
body[data-theme="signature"] .v2-section-head h2 {
    font-size: clamp(42px, 4.3vw, 66px);
}

/* Cards: more premium proportion */
body[data-theme="signature"] .v2-car {
    border-radius: 20px;
}

body[data-theme="signature"] .v2-car__image {
    aspect-ratio: 1.58 / 1;
}

/* Remove legacy influence from V2 elements */
body[data-theme="signature"] .v2-hero *,
body[data-theme="signature"] .v2-header *,
body[data-theme="signature"] .v2-section *,
body[data-theme="signature"] .v2-final-cta * {
    box-sizing: border-box;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 780px) {

    body[data-theme="signature"] .v2-hero {
        min-height: auto;
        background:
            radial-gradient(circle at 70% 25%, rgba(255,255,255,.08), transparent 30%),
            #0b0d10;
    }

    body[data-theme="signature"] .v2-hero__media {
        height: 540px;
        opacity: .42;
    }

    body[data-theme="signature"] .v2-hero__media img {
        object-position: center;
    }

    body[data-theme="signature"] .v2-hero__shade {
        background:
            linear-gradient(
                0deg,
                #0b0d10 0%,
                rgba(11,13,16,.86) 32%,
                rgba(11,13,16,.25) 100%
            );
    }

    body[data-theme="signature"] .v2-hero__content {
        width: calc(100% - 28px);
        min-height: 590px;
        padding: 150px 0 55px;
        align-items: flex-end;
    }

    body[data-theme="signature"] .v2-hero__copy {
        width: 100%;
    }

    body[data-theme="signature"] .v2-hero h1 {
        font-size: clamp(46px, 13vw, 66px);
        line-height: .96;
    }

    body[data-theme="signature"] .v2-hero__copy > p {
        margin-top: 18px;
        font-size: 15px;
    }

    body[data-theme="signature"] .v2-hero__search-wrap {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        padding: 14px;
        transform: none;
        background: #f4f5f6;
    }

    body[data-theme="signature"] .v2-search {
        padding: 15px;
        border-radius: 19px;
        box-shadow: 0 15px 45px rgba(0,0,0,.08);
    }

    body[data-theme="signature"] .v2-search__grid {
        min-height: auto;
    }

    body[data-theme="signature"] .v2-search-field {
        min-height: 74px;
    }

    body[data-theme="signature"] .v2-search__submit {
        margin: 0;
    }

    body[data-theme="signature"] .v2-fleet-section {
        padding-top: 70px;
    }
}

/* ============================================================
   SIGNATURE V2.2 — PREMIUM SEARCH + VEHICLE SHOWCASE
   ============================================================ */

/* ---------- HERO / SEARCH RELATION ---------- */

body[data-theme="signature"] .v2-hero {
    overflow: visible;
    margin-bottom: 0;
}

body[data-theme="signature"] .v2-hero__media {
    overflow: hidden;
}

body[data-theme="signature"] .v2-hero__search-wrap {
    position: absolute;
    z-index: 30;
    left: 50%;
    bottom: -72px;
    width: min(calc(100% - 64px), 1320px);
    transform: translateX(-50%);
}

/* ---------- SEARCH CARD ---------- */

body[data-theme="signature"] .v2-search {
    position: relative;
    display: block;
    padding: 16px 18px 18px;
    overflow: visible;
    border: 1px solid rgba(17, 24, 39, .07);
    border-radius: 26px;
    background: #fff;
    box-shadow:
        0 35px 80px rgba(8, 15, 25, .18),
        0 8px 24px rgba(8, 15, 25, .08);
}

body[data-theme="signature"] .v2-search__title {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 26px;
    margin: 0 6px 10px;
    color: #111418;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

body[data-theme="signature"] .v2-search__pulse {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #18a66a;
    box-shadow: 0 0 0 5px rgba(24,166,106,.10);
}

body[data-theme="signature"] .v2-search__grid {
    display: grid;
    grid-template-columns:
        minmax(210px, 1.35fr)
        minmax(160px, 1fr)
        105px
        minmax(160px, 1fr)
        105px
        minmax(180px, .95fr);
    align-items: stretch;
    min-height: 88px;
    overflow: hidden;
    border: 1px solid #e7e9ec;
    border-radius: 19px;
    background: #f8f9fa;
}

body[data-theme="signature"] .v2-search-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 88px;
    padding: 15px 18px;
    border-right: 1px solid #e1e4e7;
    background: transparent;
    transition:
        background .2s ease,
        box-shadow .2s ease;
}

body[data-theme="signature"] .v2-search-field:hover,
body[data-theme="signature"] .v2-search-field:focus-within {
    z-index: 2;
    background: #fff;
    box-shadow: 0 8px 30px rgba(20,25,30,.06);
}

body[data-theme="signature"] .v2-search-field > div {
    min-width: 0;
    width: 100%;
}

body[data-theme="signature"] .v2-search-field__icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(15,20,25,.06);
}

body[data-theme="signature"] .v2-search-field__icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #111418;
    stroke-width: 1.7;
}

body[data-theme="signature"] .v2-search-field label {
    display: block;
    margin: 0 0 5px;
    color: #8b9199;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .065em;
    text-transform: uppercase;
}

body[data-theme="signature"] .v2-search-field select,
body[data-theme="signature"] .v2-search-field input {
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111418;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
    box-shadow: none;
}

body[data-theme="signature"] .v2-search-field--time {
    padding-inline: 14px;
}

body[data-theme="signature"] .v2-search__submit {
    display: flex;
    min-width: 0;
    min-height: 88px;
    margin: 0;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: #111418;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background .2s ease,
        transform .2s ease;
}

body[data-theme="signature"] .v2-search__submit:hover {
    background: #252a30;
}

body[data-theme="signature"] .v2-search__submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

/* ---------- FLEET SECTION ---------- */

body[data-theme="signature"] .v2-fleet-section {
    position: relative;
    padding-top: 190px;
    padding-bottom: 120px;
    background: #f4f5f6;
}

body[data-theme="signature"] .v2-fleet-section .v2-container {
    width: min(calc(100% - 64px), 1320px);
}

body[data-theme="signature"] .v2-fleet-section .v2-section-head {
    margin-bottom: 48px;
}

body[data-theme="signature"] .v2-fleet-section .v2-section-head h2 {
    max-width: 680px;
    font-size: clamp(44px, 4.2vw, 66px);
    line-height: .96;
    letter-spacing: -.055em;
}

/*
 * 2 vehicles = premium 2-column showcase.
 * 3+ vehicles still remain balanced.
 */
body[data-theme="signature"] .v2-fleet {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    width: 100%;
}

/* ---------- VEHICLE CARD ---------- */

body[data-theme="signature"] .v2-car {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e3e5e8;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(14,19,25,.04);
    transition:
        transform .35s cubic-bezier(.2,.7,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
}

body[data-theme="signature"] .v2-car:hover {
    transform: translateY(-7px);
    border-color: #d5d8dc;
    box-shadow: 0 28px 65px rgba(14,19,25,.11);
}

body[data-theme="signature"] .v2-car__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 55%, #fff 0%, #f1f3f4 68%, #e9ecef 100%);
}

body[data-theme="signature"] .v2-car__image::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 8%;
    height: 11%;
    z-index: 0;
    border-radius: 50%;
    background: rgba(15,20,25,.13);
    filter: blur(18px);
    opacity: .42;
}

body[data-theme="signature"] .v2-car__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 22px 34px 12px;
    object-fit: contain;
    object-position: center;
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

body[data-theme="signature"] .v2-car:hover .v2-car__image img {
    transform: scale(1.045);
}

body[data-theme="signature"] .v2-car__view {
    position: absolute;
    z-index: 4;
    top: 20px;
    right: 20px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(20,25,30,.08);
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #111418;
    font-size: 19px;
    box-shadow: 0 8px 25px rgba(15,20,25,.08);
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

body[data-theme="signature"] .v2-car:hover .v2-car__view {
    transform: rotate(45deg);
    background: #111418;
    color: #fff;
}

/* ---------- CARD INFORMATION ---------- */

body[data-theme="signature"] .v2-car__body {
    padding: 25px 28px 27px;
}

body[data-theme="signature"] .v2-car__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

body[data-theme="signature"] .v2-car__category {
    display: block;
    margin-bottom: 8px;
    color: #92979e;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .10em;
    text-transform: uppercase;
}

body[data-theme="signature"] .v2-car h3 {
    margin: 0;
    color: #101317;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.035em;
}

body[data-theme="signature"] .v2-car__price {
    flex: 0 0 auto;
    text-align: right;
}

body[data-theme="signature"] .v2-car__price strong {
    display: block;
    color: #101317;
    font-size: 22px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -.025em;
}

body[data-theme="signature"] .v2-car__price span {
    display: block;
    margin-top: 6px;
    color: #9499a0;
    font-size: 10px;
    font-weight: 700;
}

/* ---------- SPECS AS CHIPS ---------- */

body[data-theme="signature"] .v2-car__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eceef0;
}

body[data-theme="signature"] .v2-car__specs span {
    display: inline-flex;
    min-height: 35px;
    padding: 0 12px;
    align-items: center;
    gap: 7px;
    border: 1px solid #e5e7e9;
    border-radius: 999px;
    background: #f8f9fa;
    color: #4b5158;
    font-size: 11px;
    font-weight: 750;
}

body[data-theme="signature"] .v2-car__specs svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #50565d;
    stroke-width: 1.7;
}

/* ---------- FLEET CTA ---------- */

body[data-theme="signature"] .v2-fleet__footer {
    display: flex;
    margin-top: 42px;
    justify-content: center;
}

/* ---------- TABLET ---------- */

@media (max-width: 1080px) {

    body[data-theme="signature"] .v2-hero__search-wrap {
        width: min(calc(100% - 36px), 940px);
    }

    body[data-theme="signature"] .v2-search__grid {
        grid-template-columns: 1.35fr 1fr 90px 1fr 90px;
        overflow: visible;
    }

    body[data-theme="signature"] .v2-search__submit {
        grid-column: 1 / -1;
        min-height: 58px;
        margin-top: 10px;
        border-radius: 14px;
    }

    body[data-theme="signature"] .v2-fleet-section {
        padding-top: 220px;
    }
}

/* ---------- MOBILE ---------- */

@media (max-width: 780px) {

    body[data-theme="signature"] .v2-hero {
        overflow: hidden;
    }

    body[data-theme="signature"] .v2-hero__search-wrap {
        position: relative;
        z-index: 20;
        left: auto;
        bottom: auto;
        width: 100%;
        padding: 14px;
        transform: none;
        background: #f4f5f6;
    }

    body[data-theme="signature"] .v2-search {
        padding: 14px;
        border-radius: 21px;
    }

    body[data-theme="signature"] .v2-search__title {
        margin: 2px 3px 12px;
    }

    body[data-theme="signature"] .v2-search__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        overflow: visible;
        border: 0;
        background: transparent;
    }

    body[data-theme="signature"] .v2-search-field {
        min-height: 72px;
        padding: 12px 13px;
        border: 1px solid #e4e6e8;
        border-radius: 14px;
        background: #f7f8f9;
    }

    body[data-theme="signature"] .v2-search-field--location {
        grid-column: 1 / -1;
    }

    body[data-theme="signature"] .v2-search-field__icon {
        display: none;
    }

    body[data-theme="signature"] .v2-search-field--time {
        min-height: 64px;
    }

    body[data-theme="signature"] .v2-search__submit {
        grid-column: 1 / -1;
        min-height: 58px;
        margin: 2px 0 0;
        border-radius: 14px;
    }

    body[data-theme="signature"] .v2-fleet-section {
        padding: 66px 0 76px;
    }

    body[data-theme="signature"] .v2-fleet-section .v2-container {
        width: calc(100% - 28px);
    }

    body[data-theme="signature"] .v2-fleet-section .v2-section-head {
        margin-bottom: 28px;
    }

    body[data-theme="signature"] .v2-fleet {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body[data-theme="signature"] .v2-car {
        border-radius: 21px;
    }

    body[data-theme="signature"] .v2-car__image {
        aspect-ratio: 1.48 / 1;
    }

    body[data-theme="signature"] .v2-car__image img {
        padding: 15px 18px 8px;
    }

    body[data-theme="signature"] .v2-car__view {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    body[data-theme="signature"] .v2-car__body {
        padding: 20px;
    }

    body[data-theme="signature"] .v2-car__heading {
        gap: 14px;
    }

    body[data-theme="signature"] .v2-car h3 {
        font-size: 24px;
    }

    body[data-theme="signature"] .v2-car__price strong {
        font-size: 19px;
    }

    body[data-theme="signature"] .v2-car__specs {
        margin-top: 19px;
        padding-top: 16px;
    }
}

/* ============================================================
   SIGNATURE V2.3 — SEARCH LAYER / HERO FIX
   ============================================================ */

/*
 * HERO owns the search.
 * Do NOT let the following section paint over the form.
 */
body[data-theme="signature"] .v2-hero {
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;

    /* physical room for floating search */
    padding-bottom: 92px !important;
}

/* Background remains hero-only, not search area */
body[data-theme="signature"] .v2-hero__media {
    position: absolute !important;
    inset: 0 0 92px 0 !important;
    z-index: -2 !important;
    overflow: hidden !important;
}

/* Hero text */
body[data-theme="signature"] .v2-hero__content {
    position: relative !important;
    z-index: 5 !important;
}

/*
 * Search is now INSIDE hero geometry.
 * It overlaps the photo edge but does not leave the hero.
 */
body[data-theme="signature"] .v2-hero__search-wrap {
    position: absolute !important;
    z-index: 100 !important;

    left: 50% !important;
    bottom: 20px !important;

    width: min(calc(100% - 64px), 1320px) !important;

    transform: translateX(-50%) !important;

    pointer-events: auto !important;
}

/* Form must establish its own stacking context */
body[data-theme="signature"] .v2-search {
    position: relative !important;
    z-index: 101 !important;

    width: 100% !important;

    overflow: visible !important;

    pointer-events: auto !important;
}

/* Every actual control must remain clickable */
body[data-theme="signature"] .v2-search select,
body[data-theme="signature"] .v2-search input,
body[data-theme="signature"] .v2-search button {
    position: relative;
    z-index: 103;

    pointer-events: auto !important;
}

/*
 * The next section must NEVER cover the search.
 */
body[data-theme="signature"] .v2-fleet-section {
    position: relative !important;
    z-index: 1 !important;

    padding-top: 100px !important;
}

/* Remove any pseudo-element that could capture clicks */
body[data-theme="signature"] .v2-hero__shade,
body[data-theme="signature"] .v2-hero__media::before,
body[data-theme="signature"] .v2-hero__media::after {
    pointer-events: none !important;
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1080px) and (min-width: 781px) {

    body[data-theme="signature"] .v2-hero {
        padding-bottom: 165px !important;
    }

    body[data-theme="signature"] .v2-hero__media {
        inset: 0 0 165px 0 !important;
    }

    body[data-theme="signature"] .v2-hero__search-wrap {
        bottom: 22px !important;
        width: calc(100% - 36px) !important;
    }

    body[data-theme="signature"] .v2-fleet-section {
        padding-top: 85px !important;
    }
}

/* ============================================================
   MOBILE — search becomes normal flow
   ============================================================ */

@media (max-width: 780px) {

    body[data-theme="signature"] .v2-hero {
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    body[data-theme="signature"] .v2-hero__media {
        inset: 0 !important;
    }

    body[data-theme="signature"] .v2-hero__search-wrap {
        position: relative !important;

        left: auto !important;
        bottom: auto !important;

        width: 100% !important;

        padding: 14px !important;

        transform: none !important;

        background: #f4f5f6 !important;
    }

    body[data-theme="signature"] .v2-fleet-section {
        padding-top: 66px !important;
    }
}

/* ============================================================
   SIGNATURE V2.5 — PREMIUM RANGE CALENDAR
   ============================================================ */

body[data-theme="signature"] .v2-date-trigger {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111418;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

body[data-theme="signature"] .v2-calendar[hidden] {
    display: none !important;
}

body[data-theme="signature"] .v2-calendar {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
}

body[data-theme="signature"] .v2-calendar__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(6, 9, 12, .58);
    backdrop-filter: blur(8px);
    cursor: default;
}

body[data-theme="signature"] .v2-calendar__panel {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: calc(100vh - 56px);
    overflow: auto;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 35px 120px rgba(0,0,0,.30);
    animation: v2CalendarIn .25s cubic-bezier(.2,.8,.2,1);
}

@keyframes v2CalendarIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

body[data-theme="signature"] .v2-calendar__top {
    display: flex;
    padding: 25px 28px 18px;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="signature"] .v2-calendar__top > div {
    display: grid;
    gap: 4px;
}

body[data-theme="signature"] .v2-calendar__eyebrow {
    color: #91979e;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

body[data-theme="signature"] .v2-calendar__top strong {
    color: #101317;
    font-size: 24px;
    letter-spacing: -.035em;
}

body[data-theme="signature"] .v2-calendar__close {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid #e5e7e9;
    border-radius: 50%;
    background: #f7f8f9;
    color: #111418;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

body[data-theme="signature"] .v2-calendar__selection {
    display: grid;
    grid-template-columns: 1fr 42px 1fr;
    gap: 8px;
    margin: 0 28px;
    padding: 8px;
    align-items: center;
    border-radius: 18px;
    background: #f3f5f6;
}

body[data-theme="signature"] .v2-calendar__selection button {
    min-height: 67px;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

body[data-theme="signature"] .v2-calendar__selection button.is-active {
    border-color: #e1e4e7;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15,20,25,.06);
}

body[data-theme="signature"] .v2-calendar__selection small {
    display: block;
    margin-bottom: 5px;
    color: #999fa6;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
}

body[data-theme="signature"] .v2-calendar__selection strong {
    color: #111418;
    font-size: 14px;
}

body[data-theme="signature"] .v2-calendar__selection-arrow {
    color: #9ca1a7;
    text-align: center;
}

body[data-theme="signature"] .v2-calendar__navigation {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
    padding: 24px 28px 10px;
    align-items: center;
}

body[data-theme="signature"] .v2-calendar__navigation > button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid #e4e6e8;
    border-radius: 50%;
    background: #fff;
    color: #111418;
    font-size: 18px;
    cursor: pointer;
}

body[data-theme="signature"] .v2-calendar__navigation > button:hover {
    background: #111418;
    color: #fff;
}

body[data-theme="signature"] .v2-calendar__navigation > span {
    color: #777e86;
    font-size: 11px;
    font-weight: 750;
    text-align: center;
}

body[data-theme="signature"] .v2-calendar__months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    padding: 14px 28px 28px;
}

body[data-theme="signature"] .v2-calendar-month {
    min-width: 0;
}

body[data-theme="signature"] .v2-calendar-month__title {
    margin: 0 0 20px;
    color: #111418;
    font-size: 17px;
    font-weight: 850;
    text-align: center;
    text-transform: capitalize;
}

body[data-theme="signature"] .v2-calendar-week,
body[data-theme="signature"] .v2-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

body[data-theme="signature"] .v2-calendar-week span {
    padding-bottom: 9px;
    color: #a0a5ab;
    font-size: 9px;
    font-weight: 850;
    text-align: center;
}

body[data-theme="signature"] .v2-calendar-day {
    position: relative;
    display: grid;
    min-width: 0;
    aspect-ratio: 1;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #24282d;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

body[data-theme="signature"] .v2-calendar-day > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
}

body[data-theme="signature"] .v2-calendar-day:hover > span {
    background: #eef0f2;
}

body[data-theme="signature"] .v2-calendar-day.is-range {
    background: #eef0f2;
}

body[data-theme="signature"] .v2-calendar-day.is-start {
    border-radius: 999px 0 0 999px;
    background: #eef0f2;
}

body[data-theme="signature"] .v2-calendar-day.is-end {
    border-radius: 0 999px 999px 0;
    background: #eef0f2;
}

body[data-theme="signature"] .v2-calendar-day.is-start > span,
body[data-theme="signature"] .v2-calendar-day.is-end > span {
    background: #111418;
    color: #fff;
}

body[data-theme="signature"] .v2-calendar-day.is-start.is-end {
    border-radius: 999px;
}

body[data-theme="signature"] .v2-calendar-day:disabled {
    color: #c9cdd1;
    cursor: not-allowed;
}

body[data-theme="signature"] .v2-calendar-day:disabled > span {
    background: transparent;
}

body[data-theme="signature"] .v2-calendar-day.is-today:not(.is-start):not(.is-end) > span {
    box-shadow: inset 0 0 0 1px #111418;
}

body[data-theme="signature"] .v2-calendar-day--blank {
    pointer-events: none;
}

body[data-theme="signature"] .v2-calendar__footer {
    position: sticky;
    z-index: 5;
    bottom: 0;
    display: flex;
    padding: 18px 28px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #e8eaec;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}

body[data-theme="signature"] .v2-calendar__footer-summary {
    color: #777d84;
    font-size: 11px;
    font-weight: 700;
}

body[data-theme="signature"] .v2-calendar__confirm {
    min-height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 14px;
    background: #111418;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

body.v2-calendar-open {
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 700px) {

    body[data-theme="signature"] .v2-calendar {
        display: flex;
        padding: 0;
        align-items: flex-end;
    }

    body[data-theme="signature"] .v2-calendar__backdrop {
        backdrop-filter: blur(4px);
    }

    body[data-theme="signature"] .v2-calendar__panel {
        width: 100%;
        max-height: 94dvh;
        border: 0;
        border-radius: 24px 24px 0 0;
        overscroll-behavior: contain;
        animation: v2CalendarMobileIn .27s cubic-bezier(.2,.8,.2,1);
    }

    @keyframes v2CalendarMobileIn {
        from { transform: translateY(100%); }
        to { transform: none; }
    }

    body[data-theme="signature"] .v2-calendar__top {
        padding: 20px 18px 14px;
    }

    body[data-theme="signature"] .v2-calendar__top strong {
        font-size: 21px;
    }

    body[data-theme="signature"] .v2-calendar__selection {
        grid-template-columns: 1fr 28px 1fr;
        margin: 0 14px;
    }

    body[data-theme="signature"] .v2-calendar__selection button {
        min-height: 60px;
        padding: 9px 11px;
    }

    body[data-theme="signature"] .v2-calendar__selection strong {
        font-size: 12px;
    }

    body[data-theme="signature"] .v2-calendar__navigation {
        padding: 17px 18px 5px;
    }

    body[data-theme="signature"] .v2-calendar__months {
        display: block;
        padding: 10px 14px 22px;
    }

    body[data-theme="signature"] .v2-calendar-month + .v2-calendar-month {
        display: none;
    }

    body[data-theme="signature"] .v2-calendar-day {
        min-height: 46px;
        aspect-ratio: auto;
        font-size: 13px;
    }

    body[data-theme="signature"] .v2-calendar-day > span {
        width: 40px;
        height: 40px;
    }

    body[data-theme="signature"] .v2-calendar__footer {
        padding: 13px 14px calc(13px + env(safe-area-inset-bottom));
    }

    body[data-theme="signature"] .v2-calendar__footer-summary {
        max-width: 45%;
        font-size: 10px;
    }

    body[data-theme="signature"] .v2-calendar__confirm {
        min-height: 52px;
        padding-inline: 20px;
    }
}


/* ============================================================
   VEHICLE DETAIL V2 — PAGE CONTEXT FIX
   ============================================================ */

/*
 * Homepage uses an overlay/transparent navigation.
 * Inner product pages must have their own navigation context.
 */
body:has(.vd2) .v2-header {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 100 !important;

    background: rgba(255,255,255,.96) !important;
    border-bottom: 1px solid #eceeef !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body:has(.vd2) .v2-header__inner {
    width: min(calc(100% - 64px), 1320px) !important;
    max-width: 1320px !important;
    margin-inline: auto !important;
}

body:has(.vd2) .v2-header a,
body:has(.vd2) .v2-header button {
    color: #171a1e;
}

body:has(.vd2) .v2-header__book {
    background: #111418 !important;
    color: #fff !important;
}


/* Kill global section/container rules inside VD2 */

#main > .vd2 {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #fff !important;
}

#main .vd2 .vd2-container {
    display: block !important;
    width: min(calc(100% - 64px), 1320px) !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* ------------------------------------------------------------
   INTRO
   ------------------------------------------------------------ */

#main .vd2 .vd2__top {
    display: block !important;
    padding: 27px 0 4px !important;
}

#main .vd2 .vd2-back {
    display: inline-flex !important;
}

#main .vd2 .vd2-intro {
    display: block !important;
    padding: 34px 0 38px !important;
}

#main .vd2 .vd2-intro__grid {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    align-items: end !important;
    gap: 50px !important;
}

#main .vd2 .vd2-intro__title {
    min-width: 0 !important;
}

#main .vd2 .vd2-intro h1 {
    display: block !important;
    width: auto !important;
    max-width: 900px !important;
    margin: 0 !important;
    padding: 0 !important;

    font-size: clamp(52px,5.2vw,78px) !important;
    line-height: .94 !important;
    letter-spacing: -.055em !important;
    color: #111418 !important;
}

#main .vd2 .vd2-intro__price {
    display: block !important;
    width: auto !important;
    min-width: 180px !important;
    margin: 0 !important;
    padding: 0 0 5px !important;
}


/* ------------------------------------------------------------
   GALLERY
   ------------------------------------------------------------ */

#main .vd2 .vd2-gallery-section {
    display: block !important;
    width: 100% !important;
    padding: 0 0 50px !important;
}

#main .vd2 .vd2-gallery {
    display: block !important;
    width: 100% !important;
}

#main .vd2 .vd2-gallery__stage {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    aspect-ratio: 16 / 8.2 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    border: 1px solid #e7e9eb !important;
    border-radius: 28px !important;

    background:
        radial-gradient(
            ellipse at 50% 58%,
            #ffffff 0%,
            #f5f6f7 48%,
            #eceff1 100%
        ) !important;
}

#main .vd2 .vd2-gallery__stage > img {
    position: relative !important;
    z-index: 2 !important;

    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 32px 90px 24px !important;

    object-fit: contain !important;
    object-position: center !important;

    transform: none;
}

#main .vd2 .vd2-gallery__thumbs {
    display: flex !important;
    width: 100% !important;
    margin-top: 14px !important;
    gap: 10px !important;
}

#main .vd2 .vd2-gallery__thumb {
    display: block !important;
    flex: 0 0 112px !important;
    width: 112px !important;
    height: 78px !important;
    padding: 3px !important;
}


/* ------------------------------------------------------------
   CONTENT
   ------------------------------------------------------------ */

#main .vd2 .vd2-content {
    display: block !important;
    padding: 30px 0 130px !important;
}

#main .vd2 .vd2-content__grid {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) 380px !important;
    gap: clamp(55px,7vw,105px) !important;
    align-items: start !important;
}

#main .vd2 .vd2-main {
    display: block !important;
    min-width: 0 !important;
}

#main .vd2 .vd2-spec-strip {
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    width: 100% !important;
}

#main .vd2 .vd2-details {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}

#main .vd2 .vd2-features {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}


/* ------------------------------------------------------------
   BOOKING CARD
   ------------------------------------------------------------ */

#main .vd2 .vd2-sidebar {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}

#main .vd2 .vd2-booking-card {
    position: sticky !important;
    top: 105px !important;

    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 30px !important;

    border: 1px solid #e1e4e6 !important;
    border-radius: 24px !important;
    background: #fff !important;

    box-shadow:
        0 25px 70px rgba(15,20,25,.09) !important;
}

#main .vd2 .vd2-booking-card__cta {
    display: flex !important;
    width: 100% !important;
}


/* ============================================================
   VEHICLE TABLET
   ============================================================ */

@media (max-width: 1050px) {

    #main .vd2 .vd2-content__grid {
        grid-template-columns: minmax(0,1fr) 320px !important;
        gap: 38px !important;
    }

    #main .vd2 .vd2-spec-strip {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }

}


/* ============================================================
   VEHICLE MOBILE
   ============================================================ */

@media (max-width: 780px) {

    body:has(.vd2) .v2-header {
        position: relative !important;
        background: #fff !important;
    }

    body:has(.vd2) .v2-header__inner {
        width: calc(100% - 28px) !important;
    }

    #main .vd2 {
        padding-bottom: 82px !important;
    }

    #main .vd2 .vd2-container {
        width: calc(100% - 28px) !important;
    }

    #main .vd2 .vd2__top {
        padding-top: 18px !important;
    }

    #main .vd2 .vd2-intro {
        padding: 24px 0 25px !important;
    }

    #main .vd2 .vd2-intro__grid {
        display: block !important;
    }

    #main .vd2 .vd2-intro h1 {
        font-size: clamp(40px,12vw,58px) !important;
        line-height: .96 !important;
    }

    #main .vd2 .vd2-intro__price {
        display: none !important;
    }

    #main .vd2 .vd2-gallery-section {
        padding-bottom: 20px !important;
    }

    #main .vd2 .vd2-gallery__stage {
        width: 100% !important;
        aspect-ratio: 1.15 / 1 !important;
        border-radius: 20px !important;
    }

    #main .vd2 .vd2-gallery__stage > img {
        width: 100% !important;
        height: 100% !important;
        padding: 20px 12px 15px !important;
        object-fit: contain !important;
    }

    #main .vd2 .vd2-gallery__thumb {
        flex-basis: 78px !important;
        width: 78px !important;
        height: 58px !important;
    }

    #main .vd2 .vd2-content {
        padding: 20px 0 60px !important;
    }

    #main .vd2 .vd2-content__grid {
        display: block !important;
    }

    #main .vd2 .vd2-spec-strip {
        display: grid !important;
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }

    #main .vd2 .vd2-details {
        display: block !important;
    }

    #main .vd2 .vd2-features {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    #main .vd2 .vd2-sidebar {
        display: none !important;
    }

    #main .vd2 .vd2-mobile-cta {
        display: flex !important;
    }

}

