/*
 * Shared calculator design system.
 * Existing body-wrap class names are the stable public UI contract used by
 * both body-wrap and tinting calculators.
 */
.body-wrap-page {
    --bw-bg: #f3f5f6;
    --bw-card: #fff;
    --bw-soft: #f0f3f5;
    --bw-text: #111417;
    --bw-muted: #667078;
    --bw-border: #dde3e7;
    --bw-accent: var(--orange-600, #ff933c);
    --bw-accent-strong: var(--orange-700, #ff7e30);
    --bw-accent-soft: var(--primary-yellow-25, #fdf3d8);
    --bw-accent-soft-strong: var(--primary-yellow-50, #ffe6a4);
    --bw-action: var(--primary-yellow-100, #e6d902);
    --bw-action-hover: var(--primary-yellow-200, #d4c800);
    --bw-action-text: var(--primary-black, #030303);
    color: var(--bw-text);
    background: var(--bw-bg);
}

body.body-wrap-page-active {
    --body-wrap-sticky-header-height: 108px;
    overflow-x: hidden;
}

body.body-wrap-page-active .sticky-header {
    z-index: 1000;
}

body.body-wrap-page-active .sticky-header__wrapper {
    background: rgba(32, 27, 33, .96);
}

.body-wrap-page [hidden] {
    display: none !important;
}

.body-wrap-page *,
.body-wrap-page *::before,
.body-wrap-page *::after {
    box-sizing: border-box;
}

.body-wrap-page button,
.body-wrap-page input,
.body-wrap-page select,
.body-wrap-page textarea {
    font: inherit;
}

.body-wrap-hero {
    padding: 40px 0 22px;
    background: #fff;
}

.body-wrap-hero h1 {
    max-width: 1100px;
    margin-bottom: 7px;
}

.body-wrap-hero .breadcrumbs-nav {
    margin: 0 0 15px;
}

@media only screen and (max-width: 1499px) {
    .body-wrap-hero {
        padding-top: 30px;
    }
}

.body-wrap-eyebrow {
    margin: 0;
    color: var(--bw-accent-strong);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.body-wrap-lead {
    max-width: 960px;
    margin: 0;
    color: var(--bw-muted);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.35;
}

.body-wrap-preview-banner {
    margin-bottom: 24px;
    padding: 12px 16px;
    border: 1px solid #f0c967;
    border-radius: 12px;
    color: #6c4b00;
    background: #fff5d7;
}

.body-wrap-calculator {
    padding: 28px 0 72px;
}

.body-wrap-related {
    padding: 0 0 72px;
    background: var(--bw-bg);
}

.body-wrap-related .container {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
    gap: 42px;
    padding-top: 32px;
    border-top: 1px solid var(--bw-border);
}

.body-wrap-related h2 {
    max-width: 660px;
    margin: 7px 0 12px;
    font-size: clamp(27px, 2.3vw, 40px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.body-wrap-related__intro > p:last-child {
    max-width: 680px;
    margin: 0;
    color: var(--bw-muted);
    font-size: 17px;
    line-height: 1.55;
}

.body-wrap-related__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.body-wrap-related__links a {
    display: flex;
    min-height: 132px;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--bw-border);
    border-radius: 16px;
    color: var(--bw-text);
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.body-wrap-related__links a:hover,
.body-wrap-related__links a:focus-visible {
    border-color: var(--bw-accent);
    outline: 0;
    box-shadow: 0 10px 28px rgba(255, 126, 48, .14);
    transform: translateY(-2px);
}

.body-wrap-related__links strong {
    font-size: 18px;
    line-height: 1.2;
}

.body-wrap-related__links span {
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.35;
}

.body-wrap-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 22px;
    align-items: start;
}

.body-wrap-main {
    min-width: 0;
    overflow: visible;
    border: 1px solid var(--bw-border);
    border-radius: 20px;
    background: var(--bw-card);
    box-shadow: 0 8px 32px rgba(21, 31, 38, .045);
}

.body-wrap-summary-column {
    position: sticky;
    top: calc(var(--body-wrap-sticky-header-height) + 18px);
    min-width: 0;
}

.body-wrap-step {
    padding: 24px 26px;
    border-bottom: 1px solid var(--bw-border);
    scroll-margin-top: calc(var(--body-wrap-sticky-header-height) + 18px);
}

.body-wrap-step:last-child {
    border-bottom: 0;
}

.body-wrap-step__header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.body-wrap-step__header h2,
.body-wrap-summary h2,
.body-wrap-booking h2 {
    margin: 0;
    color: var(--bw-text);
    font-size: 24px;
    line-height: 1.15;
}

.body-wrap-step__header p {
    margin: 3px 0 0;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.3;
}

.body-wrap-step__number {
    display: inline-flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--bw-action-text);
    background: var(--bw-accent);
    box-shadow: 0 5px 14px rgba(255, 126, 48, .22);
    font-size: 15px;
    font-weight: 700;
}

.body-wrap-field-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
}

.body-wrap-field-label span {
    color: var(--bw-muted);
    font-size: 12px;
    font-weight: 400;
}

.body-wrap-input {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid var(--bw-border);
    border-radius: 12px;
    outline: none;
    color: var(--bw-text);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.body-wrap-input:focus {
    border-color: var(--bw-accent);
    box-shadow: 0 0 0 3px rgba(255, 126, 48, .16);
}

.body-wrap-input.is-invalid {
    border-color: #c93636;
    box-shadow: 0 0 0 3px rgba(201, 54, 54, .1);
}

.body-wrap-textarea {
    min-height: 92px;
    resize: vertical;
}

.body-wrap-car-picker {
    position: relative;
    z-index: 1;
}

.body-wrap-search {
    position: relative;
}

.body-wrap-search__icon {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--bw-muted);
    border-radius: 50%;
    transform: translateY(-55%);
}

.body-wrap-search__icon::after {
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    content: "";
    background: var(--bw-muted);
    transform: rotate(45deg);
}

.body-wrap-search .body-wrap-input {
    height: 54px;
    padding-left: 48px;
    font-size: 17px;
}

.body-wrap-car-results {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    max-height: 420px;
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--bw-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(19, 31, 40, .18);
}

.body-wrap-car-results__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.body-wrap-car-results__head strong {
    font-size: 20px;
}

.body-wrap-car-results__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
}

.body-wrap-car-results__meta {
    color: var(--bw-muted);
    font-size: 13px;
    white-space: nowrap;
}

.body-wrap-car-results__action {
    min-height: 36px;
    padding: 7px 13px;
    border: 1px solid var(--bw-border);
    border-radius: 999px;
    color: var(--bw-text);
    background: var(--bw-soft);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.body-wrap-car-results__action:hover,
.body-wrap-car-results__action:focus-visible {
    border-color: var(--bw-accent);
    color: var(--bw-accent-strong);
    background: var(--bw-accent-soft);
}

.body-wrap-car-results__body {
    position: relative;
    min-height: 250px;
}

.body-wrap-car-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    transition: opacity .15s ease;
}

.body-wrap-car-grid.is-makes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.body-wrap-car-grid.is-loading {
    opacity: .25;
    pointer-events: none;
}

.body-wrap-car-status {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    color: var(--bw-muted);
    font-weight: 700;
}

.body-wrap-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: body-wrap-spin .7s linear infinite;
}

@keyframes body-wrap-spin {
    to {
        transform: rotate(360deg);
    }
}

.body-wrap-car-option {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    min-width: 0;
    min-height: 70px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--bw-text);
    background: var(--bw-soft);
    text-align: left;
    cursor: pointer;
}

.body-wrap-car-option:hover,
.body-wrap-car-option:focus-visible,
.body-wrap-car-option.is-selected {
    border-color: var(--bw-accent);
    background: var(--bw-accent-soft);
}

.body-wrap-car-option > img,
.body-wrap-car-option > .body-wrap-car-option__fallback,
.body-wrap-car-option > .body-wrap-make-logo {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 34px;
    max-height: 30px;
    object-fit: contain;
}

.body-wrap-car-option > .body-wrap-car-option__fallback,
.body-wrap-car-option > .body-wrap-make-logo--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    background: #333;
    font-size: 11px;
    font-weight: 700;
}

.body-wrap-car-option > small,
.body-wrap-car-option > strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-wrap-car-option > small {
    color: var(--bw-muted);
    grid-column: 2;
    grid-row: 1;
}

.body-wrap-car-option > strong {
    grid-column: 2;
    grid-row: 2;
    line-height: 1.15;
    overflow: visible;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
}

.body-wrap-car-option.has-meta {
    grid-template-rows: auto auto auto;
    min-height: 88px;
}

.body-wrap-car-option.has-meta > img,
.body-wrap-car-option.has-meta > .body-wrap-car-option__fallback,
.body-wrap-car-option.has-meta > .body-wrap-make-logo {
    grid-row: 1 / span 3;
}

.body-wrap-car-option__meta {
    color: var(--bw-muted);
    font-size: 1.25rem;
    grid-column: 2;
    grid-row: 3;
    line-height: 1.2;
}

.body-wrap-make-option {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-width: 0;
    min-height: 62px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--bw-text);
    background: var(--bw-soft);
    text-align: left;
    cursor: pointer;
}

.body-wrap-make-option:hover,
.body-wrap-make-option:focus-visible {
    border-color: var(--bw-accent);
    background: var(--bw-accent-soft);
}

.body-wrap-make-option img,
.body-wrap-make-option .body-wrap-car-option__fallback {
    grid-row: 1 / span 2;
    align-self: center;
    width: 30px;
    max-height: 28px;
    object-fit: contain;
}

.body-wrap-make-option .body-wrap-car-option__fallback {
    height: 30px;
    font-size: 10px;
}

.body-wrap-make-option strong,
.body-wrap-make-option small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.body-wrap-make-option strong {
    align-self: end;
    line-height: 1.15;
}

.body-wrap-make-option small {
    align-self: start;
    color: var(--bw-muted);
    font-size: 12px;
}

.body-wrap-vehicle-details,
.body-wrap-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.body-wrap-vehicle-details {
    margin-top: 14px;
}

.body-wrap-vehicle-details.is-year-only {
    grid-template-columns: minmax(0, 1fr);
}

.body-wrap-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.body-wrap-choice-grid--films {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.body-wrap-choice {
    position: relative;
    min-height: 88px;
    padding: 14px 15px;
    border: 1px solid var(--bw-border);
    border-radius: 13px;
    color: var(--bw-text);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.body-wrap-choice:hover,
.body-wrap-choice:focus-visible {
    border-color: var(--orange-300, #ffc888);
    box-shadow: 0 7px 18px rgba(24, 45, 56, .07);
    transform: translateY(-1px);
}

.body-wrap-choice.is-selected {
    border-color: var(--bw-accent);
    background: var(--bw-accent-soft);
    box-shadow: inset 0 0 0 1px var(--bw-accent), 0 8px 22px rgba(255, 126, 48, .12);
}

.body-wrap-choice.is-promotion-gift,
.body-wrap-choice.is-promotion-gift:disabled {
    opacity: 1;
    cursor: default;
}

.body-wrap-choice.is-promotion-gift:hover {
    transform: none;
}

.calculator-service-price del,
.calculator-service-price strong,
.calculator-service-price small {
    display: inline-block;
}

.calculator-service-price del {
    margin-right: 9px;
    color: var(--bw-muted);
    font-weight: 500;
}

.calculator-service-price strong {
    margin: 0;
    color: var(--bw-action);
    font-size: 17px;
}

.calculator-service-price small {
    width: 100%;
    min-height: 0;
    margin-top: 5px;
    color: #6b5b00;
    font-size: 13px;
    font-weight: 700;
}

.body-wrap-choice.is-package-zone {
    border-color: var(--orange-300, #ffc888);
    background: var(--bw-accent-soft-strong);
}

.body-wrap-choice strong,
.body-wrap-choice small,
.body-wrap-choice span {
    display: block;
}

.body-wrap-choice strong {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 1.2;
}

.body-wrap-choice small {
    min-height: 34px;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.35;
}

.body-wrap-choice span {
    margin-top: 7px;
    font-size: 15px;
    font-weight: 700;
}

.body-wrap-choice--film::before {
    display: block;
    width: 30px;
    height: 4px;
    margin-bottom: 10px;
    border-radius: 4px;
    content: "";
    background: var(--film-accent, var(--bw-accent));
}

.body-wrap-choice--wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 2px 20px;
    width: 100%;
    min-height: 68px;
    padding: 14px 17px;
}

.body-wrap-choice--wide strong {
    margin: 0;
}

.body-wrap-choice--wide small {
    min-height: 0;
}

.body-wrap-choice--wide span {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    font-size: 17px;
    white-space: nowrap;
}

.body-wrap-scope-group + .body-wrap-scope-group {
    margin-top: 20px;
}

.calculator-promotions {
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid rgba(255, 147, 60, .34);
    border-radius: 20px;
    color: var(--bw-text);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 147, 60, .15), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #fff 68%);
}

.calculator-promotions__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.calculator-promotions__heading > span {
    display: block;
    margin-bottom: 3px;
    color: var(--bw-accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.calculator-promotions__heading h2 {
    margin: 0;
    color: var(--bw-text);
    font-size: 21px;
    line-height: 1.15;
}

.calculator-promotions__note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 8px 11px;
    border: 1px solid rgba(255, 147, 60, .2);
    border-radius: 999px;
    color: #704221;
    background: rgba(255, 230, 164, .42);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.calculator-promotions__note span {
    display: grid;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    place-items: center;
    color: var(--bw-action-text);
    background: var(--bw-action);
    font-size: 12px;
}

.calculator-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 580px), 1fr));
    gap: 12px;
}

.calculator-promotion-card {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(340px, 1.15fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(17, 20, 23, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(17, 20, 23, .04);
}

.calculator-promotion-card__body {
    min-width: 0;
}

.calculator-promotion-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--bw-muted);
    font-size: 12px;
}

.calculator-promotion-card__meta span {
    padding: 4px 7px;
    border-radius: 999px;
    color: #7c3b0f;
    background: rgba(255, 147, 60, .18);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.calculator-promotion-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.25;
}

.calculator-promotion-card p {
    margin: 0;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.45;
}

.calculator-promotion-card__tiers {
    display: grid;
    align-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: promotion-tier;
}

.calculator-promotion-card__tiers li {
    display: grid;
    grid-template-columns: minmax(115px, auto) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 147, 60, .16);
    border-radius: 11px;
    background: #fffaf4;
    counter-increment: promotion-tier;
}

.calculator-promotion-card__threshold {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bw-text);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.calculator-promotion-card__threshold::before {
    display: grid;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    place-items: center;
    color: var(--bw-action-text);
    background: var(--bw-action);
    content: counter(promotion-tier);
    font-size: 12px;
    font-weight: 800;
}

.calculator-promotion-card__benefit {
    color: var(--bw-accent-strong);
    font-size: 14px;
    line-height: 1.35;
    text-align: right;
}

@media (max-width: 900px) {
    .calculator-promotion-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.body-wrap-scope-group h3,
.body-wrap-work-summary h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.body-wrap-choice-grid--zones,
#body-wrap-extra-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.body-wrap-choice-grid--zones .body-wrap-choice {
    min-height: 94px;
}

.body-wrap-summary {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(155deg, #23272a 0%, #181b1d 100%);
    box-shadow: 0 18px 45px rgba(19, 26, 31, .18);
    scroll-margin-top: calc(var(--body-wrap-sticky-header-height) + 18px);
}

.body-wrap-summary__loading {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: inherit;
    color: #fff;
    background: rgba(32, 34, 36, .92);
    font-size: 16px;
    font-weight: 700;
}

.body-wrap-summary h2 {
    color: #fff;
}

.body-wrap-summary__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.body-wrap-summary__head > span {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--bw-action-text);
    background: var(--bw-action);
    font-size: 12px;
    font-weight: 700;
}

.body-wrap-summary__facts {
    margin: 0;
}

.body-wrap-summary__facts > div {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.body-wrap-summary__facts dt {
    color: #a9adb0;
    font-size: 14px;
}

.body-wrap-summary__facts dd {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.body-wrap-work-summary {
    margin-top: 16px;
}

.body-wrap-work-list {
    border-top: 1px solid rgba(255, 255, 255, .11);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.body-wrap-work-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.body-wrap-work-item:last-child {
    border-bottom: 0;
}

.body-wrap-work-item strong {
    line-height: 1.25;
}

.body-wrap-work-item b {
    white-space: nowrap;
}

.body-wrap-work-item small {
    grid-column: 1 / -1;
    color: #a9adb0;
    line-height: 1.35;
}

.body-wrap-muted {
    color: var(--bw-muted);
}

.body-wrap-summary .body-wrap-muted {
    margin: 10px 0;
    color: #a9adb0;
}

.calculator-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
}

.calculator-trust-strip > div {
    padding: 14px 16px;
    border: 1px solid var(--bw-border);
    border-radius: 12px;
    background: var(--bw-card);
}

.calculator-trust-strip dt {
    margin-bottom: 4px;
    color: var(--bw-text);
    font-weight: 800;
}

.calculator-trust-strip dd {
    margin: 0;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.4;
}

.calculator-service-context {
    margin-top: 14px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 147, 60, .38);
    border-radius: 12px;
    background: rgba(255, 147, 60, .1);
}

.calculator-service-context p {
    margin: 0 0 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
}

.calculator-service-context a {
    color: var(--bw-action);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .calculator-trust-strip {
        grid-template-columns: 1fr;
    }
}

.calculator-promotion-summary {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.calculator-promotion-summary__applied,
.calculator-promotion-summary__next {
    padding: 11px 12px;
    border-radius: 12px;
}

.calculator-promotion-summary__applied {
    position: relative;
    overflow: hidden;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, .34);
    color: var(--bw-action-text);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .42), transparent 38%),
        var(--bw-action);
    box-shadow: 0 10px 26px rgba(230, 217, 2, .2);
}

.calculator-promotion-summary__headline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(3, 3, 3, .18);
}

.calculator-promotion-summary__headline > span {
    padding-bottom: 3px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.calculator-promotion-summary__headline > strong {
    flex: 0 0 auto;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.calculator-promotion-summary__applied > small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.calculator-promotion-summary__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.calculator-promotion-summary__benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 5px 9px;
    border: 1px solid rgba(3, 3, 3, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .54);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.calculator-promotion-summary__next {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
}

.calculator-promotion-summary__next > span {
    display: block;
    color: #e7e8e9;
    font-size: 13px;
    line-height: 1.35;
}

.calculator-promotion-progress {
    overflow: hidden;
    height: 5px;
    margin: 9px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.calculator-promotion-progress i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--bw-action);
    transition: width .25s ease;
}

.calculator-promotion-summary__next button {
    padding: 0;
    border: 0;
    color: var(--bw-action);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.calculator-price-before {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 13px;
    color: #a9adb0;
    font-size: 13px;
}

.body-wrap-work-item.is-promotion-gift b {
    color: var(--bw-action);
}

.body-wrap-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 0 6px;
}

.body-wrap-total strong {
    font-size: 30px;
    letter-spacing: -.03em;
}

.body-wrap-disclaimer {
    margin: 0 0 14px;
    color: #a9adb0;
    font-size: 12px;
    line-height: 1.4;
}

.body-wrap-primary-button {
    width: 100%;
    min-height: 50px;
    padding: 11px 16px;
    border: 0;
    border-radius: 12px;
    color: var(--bw-action-text);
    background: var(--bw-action);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .16s ease, opacity .16s ease;
}

.body-wrap-primary-button:hover:not(:disabled) {
    background: var(--bw-action-hover);
}

.body-wrap-primary-button:disabled {
    cursor: not-allowed;
    opacity: .42;
}

.body-wrap-error,
.body-wrap-booking-error {
    margin: 12px 0;
    padding: 11px 13px;
    border-radius: 10px;
    color: #8b1f1f;
    background: #ffe7e7;
    font-size: 14px;
}

.body-wrap-empty {
    margin: 14px 0 4px;
    color: var(--bw-muted);
}

.body-wrap-booking {
    position: fixed;
    z-index: 1200;
    inset: 0;
}

.body-wrap-booking__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 13, .65);
    backdrop-filter: blur(4px);
}

.body-wrap-booking__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(620px, 100%);
    height: 100%;
    padding: 42px;
    overflow-y: auto;
    color: var(--bw-text);
    background: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .2);
}

.body-wrap-booking__panel > .body-wrap-muted {
    margin: 10px 0 26px;
}

.body-wrap-booking__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--bw-text);
    background: var(--bw-soft);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.body-wrap-booking fieldset {
    min-width: 0;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.body-wrap-booking legend {
    margin-bottom: 10px;
    font-weight: 700;
}

.body-wrap-city-list {
    display: grid;
    gap: 8px;
}

.body-wrap-city {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 13px 14px;
    border: 1px solid var(--bw-border);
    border-radius: 12px;
    cursor: pointer;
}

.body-wrap-city:has(input:checked) {
    border-color: var(--bw-accent);
    background: var(--bw-accent-soft);
}

.body-wrap-city input {
    margin-top: 3px;
}

.body-wrap-city strong,
.body-wrap-city small {
    display: block;
}

.body-wrap-city small {
    margin-top: 3px;
    color: var(--bw-muted);
}

.body-wrap-booking-grid {
    margin-bottom: 17px;
}

.body-wrap-booking-date {
    position: relative;
    z-index: 4;
    min-width: 0;
}

.body-wrap-date-picker__trigger {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid var(--bw-border);
    border-radius: 12px;
    color: var(--bw-text);
    background: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.body-wrap-date-picker__trigger svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.body-wrap-date-picker__trigger:not(:disabled):hover,
.body-wrap-date-picker__trigger:not(:disabled):focus-visible,
.body-wrap-date-picker__trigger[aria-expanded="true"] {
    border-color: var(--bw-accent);
    box-shadow: 0 0 0 3px rgba(255, 126, 48, .16);
    outline: 0;
}

.body-wrap-date-picker__trigger:disabled {
    color: var(--bw-muted);
    background: #f5f6f6;
    cursor: default;
}

.body-wrap-date-picker__trigger.is-invalid {
    border-color: #c93636;
    box-shadow: 0 0 0 3px rgba(201, 54, 54, .1);
}

.body-wrap-date-picker__popup {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    width: min(340px, calc(100vw - 48px));
    padding: 14px;
    border: 1px solid var(--bw-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 22, 26, .18);
}

.body-wrap-date-picker__popup[hidden] {
    display: none;
}

.body-wrap-date-picker__head {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.body-wrap-date-picker__head strong {
    font-size: 16px;
    text-align: center;
}

.body-wrap-date-picker__head button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--bw-border);
    border-radius: 10px;
    color: var(--bw-text);
    background: #fff;
    font: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.body-wrap-date-picker__head button:not(:disabled):hover,
.body-wrap-date-picker__head button:not(:disabled):focus-visible {
    border-color: var(--bw-accent);
    outline: 0;
}

.body-wrap-date-picker__head button:disabled {
    color: #c6c9ca;
    background: #f7f7f6;
    cursor: default;
}

.body-wrap-date-picker__weekdays,
.body-wrap-date-picker__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.body-wrap-date-picker__weekdays {
    margin-bottom: 5px;
}

.body-wrap-date-picker__weekdays span {
    padding: 4px 0;
    color: var(--bw-muted);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.body-wrap-date-picker__day,
.body-wrap-date-picker__blank {
    min-width: 0;
    min-height: 38px;
}

.body-wrap-date-picker__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--bw-text);
    background: #f4f5f5;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.body-wrap-date-picker__day:not(:disabled):hover,
.body-wrap-date-picker__day:not(:disabled):focus-visible {
    border-color: var(--bw-accent);
    outline: 0;
}

.body-wrap-date-picker__day:disabled {
    color: #c5c8c9;
    background: transparent;
    cursor: default;
}

.body-wrap-date-picker__day.is-selected {
    border-color: var(--bw-accent);
    color: #171717;
    background: var(--bw-soft);
}

.body-wrap-date-picker__day.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 1px var(--bw-muted);
}

.body-wrap-booking-time {
    min-width: 0;
    position: relative;
    z-index: 3;
}

.body-wrap-time-picker__trigger {
    align-items: center;
    background: #fff;
    border: 1px solid var(--bw-border);
    border-radius: 12px;
    color: var(--bw-text);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 16px;
    gap: 12px;
    justify-content: space-between;
    line-height: 1.2;
    min-height: 48px;
    padding: 10px 13px;
    text-align: left;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}

.body-wrap-time-picker__trigger svg {
    fill: none;
    flex: 0 0 auto;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 22px;
}

.body-wrap-time-picker__trigger:not(:disabled):hover,
.body-wrap-time-picker__trigger:not(:disabled):focus-visible,
.body-wrap-time-picker__trigger[aria-expanded="true"] {
    border-color: var(--bw-accent);
    box-shadow: 0 0 0 3px rgba(255, 126, 48, .16);
    outline: 0;
}

.body-wrap-time-picker__trigger:disabled {
    background: #f5f6f6;
    color: var(--bw-muted);
    cursor: default;
}

.body-wrap-time-picker__trigger.is-invalid {
    border-color: #c93636;
    box-shadow: 0 0 0 3px rgba(201, 54, 54, .1);
}

.body-wrap-time-picker__popup {
    background: #fff;
    border: 1px solid var(--bw-border);
    border-radius: 16px;
    box-sizing: border-box;
    box-shadow: 0 18px 42px rgba(15, 22, 26, .18);
    left: auto;
    padding: 14px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(calc(200% + 12px), calc(100vw - 48px));
    z-index: 30;
}

.body-wrap-time-picker__popup[hidden] {
    display: none;
}

.body-wrap-time-picker__popup > strong {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

.body-wrap-time-picker__grid {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-height: 260px;
    overflow-y: auto;
    padding-right: 2px;
}

.body-wrap-time-picker__option {
    background: #f4f5f5;
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--bw-text);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    min-height: 42px;
    padding: 7px 5px;
}

.body-wrap-time-picker__option:hover,
.body-wrap-time-picker__option:focus-visible {
    border-color: var(--bw-accent);
    outline: 0;
}

.body-wrap-time-picker__option.is-selected {
    background: var(--bw-soft);
    border-color: var(--bw-accent);
}

@media (max-width: 600px) {
    .body-wrap-time-picker__popup {
        bottom: auto;
        left: 12px;
        max-height: calc(100dvh - 24px);
        position: fixed;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        z-index: 1300;
    }

    .body-wrap-time-picker__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-height: min(260px, calc(100dvh - 100px));
    }
}

.body-wrap-field-error {
    display: block;
    margin: 6px 2px 0;
    color: #a42323;
    font-size: 12px;
    line-height: 1.3;
}

.body-wrap-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    color: var(--bw-muted);
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
}

.body-wrap-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--bw-accent);
}

.body-wrap-consent input.is-invalid {
    outline: 2px solid rgba(201, 54, 54, .55);
    outline-offset: 2px;
}

.body-wrap-consent a {
    color: var(--bw-accent-strong);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.body-wrap-completion {
    margin: -4px 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    color: #155f3a;
    background: #e7f7ef;
}

.body-wrap-booking form > .body-wrap-primary-button {
    margin-top: 20px;
}

.body-wrap-preview-note {
    margin: 10px 0 0;
    color: #8b6413;
    font-size: 12px;
}

.body-wrap-success {
    padding-top: 30px;
}

.body-wrap-success strong {
    display: block;
    font-size: 28px;
}

.body-wrap-success p {
    margin: 12px 0 22px;
    color: var(--bw-muted);
}

.body-wrap-mobile-summary {
    display: none;
}

body.body-wrap-modal-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .body-wrap-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .body-wrap-car-grid,
    .body-wrap-choice-grid--films {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .body-wrap-car-grid.is-makes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .body-wrap-choice-grid--zones,
    #body-wrap-extra-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .body-wrap-hero {
        padding: 22px 0 19px;
    }

    .body-wrap-layout {
        grid-template-columns: 1fr;
    }

    .body-wrap-related .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .body-wrap-summary {
        position: relative;
        top: auto;
    }

    .body-wrap-summary-column {
        position: relative;
        top: auto;
    }

    .body-wrap-mobile-summary:not([hidden]) {
        position: fixed;
        z-index: 1100;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
    }

    .body-wrap-mobile-summary button {
        display: flex;
        width: 100%;
        min-height: calc(72px + env(safe-area-inset-bottom));
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 0;
        color: #fff;
        background: #202224;
        box-shadow: 0 14px 40px rgba(16, 23, 28, .3);
        text-align: left;
        cursor: pointer;
    }

    .body-wrap-mobile-summary button > span:first-child,
    .body-wrap-mobile-summary small,
    .body-wrap-mobile-summary strong {
        display: block;
    }

    .body-wrap-mobile-summary small {
        max-width: 180px;
        overflow: hidden;
        color: #a9adb0;
        font-size: 11px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .body-wrap-mobile-summary strong {
        margin-top: 2px;
        font-size: 20px;
        line-height: 1.1;
    }

    .body-wrap-mobile-summary__action {
        display: inline-flex;
        flex: 0 0 auto;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        padding: 11px 18px;
        border-radius: 12px;
        color: var(--bw-action-text);
        background: var(--bw-action);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
    }

    body.body-wrap-modal-open .body-wrap-mobile-summary {
        display: none !important;
    }

    .body-wrap-calculator.is-car-picker-open .body-wrap-mobile-summary {
        display: none !important;
    }

    .body-wrap-calculator.is-car-picker-open .body-wrap-car-picker {
        z-index: 40;
    }

    body.body-wrap-page-active:has(.body-wrap-mobile-summary:not([hidden])) .b24-widget-button-wrapper[class] {
        bottom: calc(84px + env(safe-area-inset-bottom)) !important;
    }
}

@media only screen and (max-width: 767px) {
    .body-wrap-hero {
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .calculator-promotions {
        margin: 0 0 12px;
        padding: 14px;
        border-radius: 16px;
    }

    .calculator-promotions__head {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .calculator-promotions__heading h2 {
        font-size: 18px;
    }

    .calculator-promotions__note {
        width: fit-content;
        padding: 7px 10px;
        white-space: normal;
    }

    .calculator-promotion-card {
        gap: 12px;
        padding: 13px;
    }

    .calculator-promotion-card h3 {
        font-size: 17px;
    }

    .calculator-promotion-card__tiers li {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .calculator-promotion-card__benefit {
        padding-left: 30px;
        text-align: left;
    }

    .body-wrap-calculator {
        padding: 16px 0 110px;
    }

    .body-wrap-related {
        padding-bottom: 48px;
    }

    .body-wrap-related .container {
        gap: 20px;
        padding-top: 24px;
    }

    .body-wrap-related__links {
        grid-template-columns: 1fr;
    }

    .body-wrap-related__links a {
        min-height: 96px;
        padding: 16px;
    }

    .body-wrap-main,
    .body-wrap-summary {
        border-radius: 16px;
    }

    .body-wrap-step,
    .body-wrap-summary {
        padding: 18px 16px;
    }

    .body-wrap-step__header h2,
    .body-wrap-summary h2,
    .body-wrap-booking h2 {
        font-size: 21px;
    }

    .body-wrap-step__header {
        margin-bottom: 16px;
    }

    .body-wrap-car-results {
        position: absolute;
        right: -8px;
        left: -8px;
        max-height: 430px;
        padding: 10px;
    }

    .body-wrap-car-results__head {
        display: block;
    }

    .body-wrap-car-results__actions {
        justify-content: space-between;
        margin: 8px 0 0;
    }

    .body-wrap-car-results__body {
        min-height: 330px;
    }

    .body-wrap-car-grid,
    .body-wrap-choice-grid,
    .body-wrap-choice-grid--films,
    .body-wrap-vehicle-details,
    .body-wrap-booking-grid {
        grid-template-columns: 1fr;
    }

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

    .body-wrap-car-grid.is-makes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .body-wrap-choice {
        min-height: 82px;
        padding: 13px;
    }

    .body-wrap-choice small {
        min-height: auto;
    }

    .body-wrap-choice--film {
        min-height: 96px;
    }

    .body-wrap-choice--wide {
        min-height: 66px;
    }

    .body-wrap-choice-grid--zones {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .body-wrap-choice-grid--zones .body-wrap-choice {
        min-height: 92px;
        padding: 12px;
    }

    .body-wrap-choice-grid--zones .body-wrap-choice strong {
        font-size: 16px;
    }

    .body-wrap-choice-grid--zones .body-wrap-choice small {
        font-size: 13px;
    }

    .body-wrap-choice-grid--zones .body-wrap-choice span {
        font-size: 14px;
    }

    #body-wrap-extra-list {
        grid-template-columns: 1fr;
    }

    .body-wrap-booking__panel {
        padding: 56px 18px 30px;
    }

    .body-wrap-date-picker__popup {
        position: static;
        width: 100%;
        margin-top: 8px;
    }
}
