/* ============================================================
   BESHCAR — Public stylesheet
   Inspired by automotive premium aesthetics (Novaride-like).
   ============================================================ */

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

:root {
    --bg-0:        #f7f4ec;
    --bg-1:        #fffdfa;
    --bg-2:        #f1ebdf;
    --bg-3:        #e8decc;
    --line:        #dccfb8;
    --text:        #1f1b15;
    --text-muted:  #665f54;
    --text-dim:    #8b816f;
    --accent:      #d8a320;
    --accent-2:    #e7b83f;
    --accent-deep: #b88410;
    --danger:      #ef4444;
    --ok:          #10b981;
    --info:        #3b82f6;

    --radius:      14px;
    --radius-sm:   8px;
    --shadow:      0 25px 50px -28px rgba(100, 74, 22, .28);

    --font-display: 'Bebas Neue', 'Sora', sans-serif;
    --font-body:    'Sora', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    background:
        radial-gradient(circle at top right, rgba(216,163,32,.18), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, #f7f4ec 44%, #efe5d5 100%);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }

/* Layout helpers */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}
.eyebrow::before {
    content: ""; width: 32px; height: 1px; background: var(--accent);
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: .02em; line-height: 1.05; font-weight: 400; }
h1 { font-size: clamp(48px, 8vw, 110px); }
h2 { font-size: clamp(34px, 5vw, 64px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

/* ====== TOP BAR ====== */
.topbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; font-size: 13px; color: var(--text-muted);
    border-bottom: 1px solid var(--line);
}
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--accent); }
.topbar__right { display: flex; gap: 24px; }

/* ====== HEADER / NAV ====== */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,253,250,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo {
    font-family: var(--font-display); font-size: 30px; letter-spacing: .04em;
    color: var(--text);
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 36px; }
.nav a {
    font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--text-muted);
}
.nav a:hover, .nav a.active { color: var(--accent); }
.btn { display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 999px;
    font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .14em;
    transition: transform .15s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
    box-shadow: 0 10px 25px -18px rgba(31,27,21,.45);
}
.btn--primary { background: var(--accent); color: #fffdfa; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,.65); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 18px; font-size: 12px; }

.burger { display: none; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

/* ====== HERO ====== */
.hero {
    position: relative; padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(216,163,32,.20), transparent 55%),
        radial-gradient(ellipse at 0% 80%, rgba(216,163,32,.08), transparent 50%),
        var(--bg-0);
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .3;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__title { max-width: 16ch; margin: 24px 0; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__lead { color: var(--text-muted); max-width: 56ch; font-size: 18px; margin-bottom: 40px; }

/* ====== SEARCH WIDGET ====== */
.search-card {
    position: relative; z-index: 2;
    margin-top: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,244,236,.98));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.search-card h3 {
    font-family: var(--font-display); font-size: 28px; letter-spacing: .04em;
    color: var(--text); margin-bottom: 20px;
}
.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 600;
}
.field input, .field select, .field textarea {
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border .2s ease, background .2s ease;
    width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); background: #fffdfa;
}
.field--full { grid-column: 1 / -1; }

/* ====== FLEET CARDS ====== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.car-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,244,236,.96));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
    display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.car-card__image {
    aspect-ratio: 16/10;
    background: linear-gradient(180deg, #f3ecdf, #e8decc);
    position: relative; overflow: hidden;
}
.car-card__image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.car-card:hover .car-card__image img { transform: scale(1.06); }
.car-card__tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,253,250,.92); color: var(--accent-deep);
    padding: 4px 12px; border-radius: 999px;
    border: 1px solid rgba(184,132,16,.18);
    font-size: 11px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
}
.car-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.car-card__name { font-family: var(--font-display); font-size: 28px; letter-spacing: .03em; color: var(--text); }
.car-card__sub { color: var(--text-muted); font-size: 13px; margin: 4px 0 18px; }

.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-bottom: 22px; padding: 16px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.spec { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.spec svg { width: 16px; height: 16px; color: var(--accent); }

.car-card__footer {
    display: flex; align-items: end; justify-content: space-between;
    margin-top: auto;
}
.price { display: flex; flex-direction: column; }
.price__amount { font-family: var(--font-display); font-size: 32px; color: var(--accent-deep); letter-spacing: .03em; }
.price__sub    { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .14em; }
.price__slash  {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0;
    text-transform: none;
}

/* ====== SINGLE CAR PAGE ====== */
.car-hero {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
    padding: 56px 0;
}
.car-gallery {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 20px;
    align-items: start;
}
.car-gallery__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.car-gallery__arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.9);
    color: var(--text);
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: border-color .15s ease, color .15s ease, opacity .15s ease;
}
.car-gallery__arrow--up {
    transform: rotate(90deg);
}
.car-gallery__arrow--down {
    transform: rotate(-90deg);
}
.car-gallery__arrow--left,
.car-gallery__arrow--right {
    display: none;
}
.car-gallery__arrow--right {
    transform: rotate(180deg);
}
.car-gallery__arrow:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
}
.car-gallery__arrow.is-disabled {
    opacity: .35;
    pointer-events: none;
}
.car-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 338px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}
.car-gallery__thumbs::-webkit-scrollbar {
    width: 6px;
}
.car-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(184,132,16,.35);
    border-radius: 999px;
}
.car-gallery__thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 74px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.85);
    overflow: hidden;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.car-gallery__thumb:hover,
.car-gallery__thumb.is-active {
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -18px rgba(31,27,21,.45);
}
.car-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.car-gallery__stage {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.82);
}
.car-hero__image {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fffdfa;
    overflow: hidden;
}
.car-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.car-gallery__zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 20px;
    box-shadow: 0 12px 22px -16px rgba(31,27,21,.45);
}
.car-gallery__zoom:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
}
.car-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 84px;
    background: rgba(21, 18, 13, .82);
    backdrop-filter: blur(10px);
}
.car-lightbox[hidden] {
    display: none;
}
.car-lightbox__counter {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #fffdfa;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .04em;
}
.car-lightbox__dialog {
    width: min(1560px, calc(100vw - 120px));
    max-height: calc(100vh - 40px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.car-lightbox__dialog img {
    width: 100%;
    max-height: calc(100vh - 40px);
    object-fit: contain;
    border-radius: 0;
}
.car-lightbox__close,
.car-lightbox__nav {
    position: absolute;
    border-radius: 999px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.2);
    color: #1f1b15;
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
}
.car-lightbox__close {
    top: 20px;
    right: 24px;
}
.car-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
}
.car-lightbox__nav--prev {
    left: 24px;
}
.car-lightbox__nav--next {
    right: 24px;
}
.car-lightbox__close:hover,
.car-lightbox__nav:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
}
.car-hero__title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); margin: 12px 0; }
.spec-grid {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0;
}
.spec-grid .spec {
    background: rgba(255,255,255,.75); padding: 14px 16px; border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    color: var(--text);
}

/* Booking sidebar */
.booking-side {
    position: sticky; top: 100px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,235,223,.95));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
.booking-side h3 { margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--text-muted); }
.summary-row strong { color: var(--text); }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 14px; font-size: 18px; }
.summary-row.total strong { color: var(--accent-deep); font-size: 22px; font-family: var(--font-display); letter-spacing: .03em; }
.booking-side input,
.booking-side select {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.booking-side input[type="date"] {
    display: block;
    width: 100%;
    min-inline-size: 0;
    max-inline-size: 100%;
    -webkit-appearance: none;
    appearance: none;
}

/* ====== AVAILABILITY CALENDAR ====== */
.cal {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: rgba(255,255,255,.86); overflow: hidden;
}
.cal__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.cal__nav { display: flex; gap: 8px; }
.cal__nav button {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--line); background: rgba(255,255,255,.9);
}
.cal__nav button:hover { border-color: var(--accent); color: var(--accent); }
.cal__title { font-weight: 600; }

.cal__months { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.cal__month { padding: 16px 18px; border-right: 1px solid var(--line); }
.cal__month:last-child { border-right: none; }
.cal__month-name { text-align: center; font-weight: 600; margin-bottom: 12px; text-transform: capitalize; }
.cal__weekdays, .cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__weekdays { color: var(--text-dim); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 6px; }
.cal__weekdays div { text-align: center; padding: 4px 0; }
.cal__day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 13px; border-radius: 6px;
    background: rgba(241,235,223,.7);
    color: var(--text);
    cursor: default;
    user-select: none;
    transition: all .15s ease;
}
.cal__day.cal__day--out { background: transparent; color: var(--text-dim); }
.cal__day.cal__day--past { opacity: .35; }
.cal__day.cal__day--busy { background: rgba(239,68,68,.14); color: #b91c1c; }
.cal__day.cal__day--today { box-shadow: inset 0 0 0 1px var(--accent); }
.cal__day.cal__day--selected { background: var(--accent); color: #fffdfa; font-weight: 700; }
.cal__day.cal__day--in-range { background: rgba(216,163,32,.16); color: var(--accent-deep); }
.cal__day:not(.cal__day--out):not(.cal__day--busy):not(.cal__day--past):hover {
    background: var(--bg-3);
}
.cal__legend { display: flex; gap: 18px; padding: 12px 18px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.cal__legend span::before { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: middle; margin-right: 6px; }
.cal__legend .lg-free::before    { background: rgba(241,235,223,.9); border: 1px solid var(--line); }
.cal__legend .lg-busy::before    { background: rgba(239,68,68,.45); }
.cal__legend .lg-selected::before{ background: var(--accent); }

/* Filters bar (fleet) */
.filters {
    display: flex; flex-wrap: wrap; gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,.8); border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 32px;
}
.filters .field { flex: 1 1 200px; min-width: 160px; }

/* ====== FOOTER ====== */
.footer {
    margin-top: 100px;
    background:
        linear-gradient(180deg, rgba(255,253,250,.9), rgba(241,235,223,.96));
    border-top: 1px solid var(--line);
    padding: 64px 0 28px;
    color: var(--text-muted);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .18em; color: var(--text); margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--accent); }
.footer__bot { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; }

/* ====== Flash messages ====== */
.flash {
    padding: 14px 18px; border-radius: var(--radius-sm);
    margin-bottom: 16px; font-size: 14px;
    border: 1px solid var(--line);
}
.flash.ok    { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.4); color: #047857; }
.flash.err   { background: rgba(239,68,68,.1);  border-color: rgba(239,68,68,.4);  color: #b91c1c; }
.flash.info  { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.4); color: #1d4ed8; }
.template-flash-wrap { padding-top: 18px; }
.flash.flash--template {
    position: relative;
    padding: 18px 22px 18px 26px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 18px 36px -28px rgba(18, 18, 18, 0.22);
}
.flash.flash--template::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    border-radius: 999px;
    background: currentColor;
    opacity: .95;
}
.flash.flash--template.err {
    background: #fff1ef;
    border-color: rgba(232, 57, 14, 0.24);
    color: #d33a12;
}
.flash.flash--template.ok {
    background: #ecfdf3;
    border-color: rgba(19, 138, 88, 0.24);
    color: #0f7a4e;
}
.flash.flash--template.info {
    background: #edf5ff;
    border-color: rgba(37, 99, 235, 0.24);
    color: #1e56c5;
}

/* ====== Section heads ====== */
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.section-head .lead { color: var(--text-muted); max-width: 56ch; }

/* ====== Features strip ====== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.82); }
.feature__icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(216,163,32,.12); color: var(--accent-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p  { color: var(--text-muted); font-size: 14px; }

/* ====== FAQ ====== */
.faq-list {
    display: grid;
    gap: 16px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-item[open] {
    border-color: rgba(184,132,16,.32);
}
.faq-item__question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}
.faq-item__question::-webkit-details-marker {
    display: none;
}
.faq-item__icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-deep);
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}
.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-item__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(.2);
}
.faq-item__answer {
    padding: 0 24px 22px;
    color: var(--text-muted);
}
.faq-item__answer p {
    margin: 0;
    max-width: 70ch;
}

/* ====== Empty state ====== */
.empty {
    padding: 64px 24px; text-align: center; color: var(--text-muted);
    border: 1px dashed var(--line); border-radius: var(--radius);
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
    .car-hero { grid-template-columns: 1fr; }
    .car-gallery { grid-template-columns: 72px 1fr; gap: 14px; }
    .car-gallery__thumbs { max-height: 286px; gap: 10px; }
    .car-gallery__thumb { width: 72px; height: 60px; border-radius: 10px; }
    .car-gallery__stage { padding: 12px; }
    .booking-side { position: static; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav { display: none; }
    .nav.is-open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-1); border-top: 1px solid var(--line);
        padding: 24px;
    }
    .burger { display: block; }
    .filters {
        overflow: hidden;
    }
    .filters .field {
        min-width: 0;
    }
    .filters input,
    .filters select {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        font-size: 14px;
        padding: 12px 14px;
    }
    .filters input[type="date"] {
        min-inline-size: 0;
        -webkit-appearance: none;
        appearance: none;
    }
    .search-grid { grid-template-columns: 1fr 1fr; }
    .search-grid .btn { grid-column: 1 / -1; }
    .features { grid-template-columns: 1fr; }
    .cal__months { grid-template-columns: 1fr; }
    .cal__month { border-right: none; border-bottom: 1px solid var(--line); }
    .cal__month:last-child { border-bottom: none; }
    .topbar__right { display: none; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bot { flex-direction: column; gap: 8px; }
    .car-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .car-gallery__rail {
        order: 2;
        display: grid;
        grid-template-columns: 28px 1fr 28px;
        align-items: center;
        gap: 8px;
    }
    .car-gallery__stage {
        order: 1;
    }
    .car-gallery__thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 8px;
        padding: 0 0 6px;
        max-width: calc((72px * 4) + (8px * 3));
        margin: 0 auto;
        scroll-behavior: smooth;
    }
    .car-gallery__thumb {
        width: 72px;
        height: 60px;
        border-radius: 10px;
    }
    .car-gallery__arrow--up,
    .car-gallery__arrow--down {
        display: none;
    }
    .car-gallery__arrow--left,
    .car-gallery__arrow--right {
        display: grid;
    }
    .booking-side {
        padding: 20px;
    }
    .booking-side h3 {
        margin-bottom: 14px;
        font-size: 30px;
    }
    .booking-side .field {
        margin-bottom: 10px !important;
    }
    .booking-side .field label {
        font-size: 10px;
        letter-spacing: .16em;
    }
    .booking-side input,
    .booking-side select {
        padding: 12px 14px;
        font-size: 14px;
    }
    .booking-side input[type="date"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-inline-size: 0 !important;
        padding-right: 14px;
    }
}
@media (max-width: 480px) {
    .search-grid { grid-template-columns: 1fr; }
    .filters {
        padding: 14px;
    }
    .filters input,
    .filters select {
        font-size: 13px;
        padding: 11px 12px;
    }
    .car-gallery { gap: 10px; }
    .car-gallery__rail {
        grid-template-columns: 24px 1fr 24px;
        gap: 6px;
    }
    .car-gallery__thumbs {
        max-width: calc((64px * 4) + (8px * 3));
    }
    .car-gallery__thumb { width: 64px; height: 56px; border-radius: 8px; }
    .car-gallery__zoom { right: 10px; bottom: 10px; width: 38px; height: 38px; }
    .car-hero {
        gap: 28px;
        padding: 32px 0;
    }
    .booking-side {
        padding: 16px;
        border-radius: 14px;
    }
    .booking-side h3 {
        font-size: 26px;
    }
    .booking-side input,
    .booking-side select {
        padding: 11px 12px;
        font-size: 13px;
        border-radius: 12px;
    }
    .booking-side input[type="date"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-inline-size: 0 !important;
    }
    .car-lightbox {
        padding: 16px;
    }
    .car-lightbox__dialog {
        width: calc(100vw - 24px);
    }
    .car-lightbox__close {
        top: 10px;
        right: 10px;
    }
    .car-lightbox__counter {
        top: 12px;
        left: 12px;
        font-size: 14px;
    }
    .car-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 26px;
        top: auto;
        bottom: 18px;
        transform: none;
    }
    .car-lightbox__nav--prev {
        left: 16px;
    }
    .car-lightbox__nav--next {
        right: 16px;
    }
}

/* Animations */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fade-in-up .7s ease both; }
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
.reveal:nth-child(5) { animation-delay: .32s; }
.reveal:nth-child(6) { animation-delay: .4s; }

/* ============================================================
   BESHCAR 2026 refresh
   Adds the red/white visual system from the provided mockup
   while preserving the existing PHP structure and components.
   ============================================================ */

:root {
    --bg-0: #ffffff;
    --bg-1: #fdf7f4;
    --bg-2: #fff1ec;
    --bg-3: #ffe4d7;
    --line: rgba(17, 17, 17, .08);
    --text: #111111;
    --text-muted: #666666;
    --text-dim: #999999;
    --accent: #e8390e;
    --accent-2: #ff6a3d;
    --accent-deep: #c42e08;
    --shadow: 0 30px 60px -34px rgba(17, 17, 17, .28);
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --header-h: 38px;
    --nav-h: 82px;
}

html, body {
    background: #fff;
    color: var(--text);
    font-family: var(--font-body);
}

body {
    padding-top: calc(var(--header-h) + var(--nav-h));
    overflow-x: hidden;
}

main {
    min-height: calc(100vh - (var(--header-h) + var(--nav-h)));
}

h1, h2, h3, h4, .logo, .btn, .nav a, .eyebrow {
    font-family: var(--font-display);
}

.container {
    max-width: 1240px;
    padding: 0 40px;
}

.section {
    padding: 110px 0;
}

.section--tight {
    padding: 86px 0;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--accent);
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    background: var(--accent);
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.03em;
}

.lead {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

.btn {
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow: none;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--accent-deep);
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--text);
    background: rgba(255, 255, 255, .9);
}

.btn--ghost:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.header.is-scrolled {
    box-shadow: 0 14px 30px -26px rgba(17, 17, 17, .35);
}

.topbar {
    display: block;
    padding: 0;
    background: var(--accent);
    border-bottom: 0;
    color: #fff;
}

.topbar__inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__meta,
.topbar__right {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.topbar a,
.topbar__meta span {
    color: #fff;
    opacity: .92;
}

.topbar a:hover {
    color: #fff;
    opacity: 1;
}

.header__inner {
    min-height: var(--nav-h);
    padding: 0;
    gap: 26px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav a {
    position: relative;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6d6d6d;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: #25d366;
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wa-btn:hover {
    color: #fff;
    background: #1db954;
}

.header__book-btn {
    display: inline-flex;
}

.hero--home {
    position: relative;
    min-height: 100vh;
    margin-top: calc(-1 * (var(--header-h) + var(--nav-h)));
    padding: calc(var(--header-h) + var(--nav-h) + 96px) 0 260px;
    overflow: hidden;
    background: #0f0a08;
}

.hero__bg,
.hero__overlay,
.hero__accent {
    position: absolute;
    inset: 0;
}

.hero__bg {
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat;
    transform: scale(1.03);
}

.hero__overlay {
    background:
        linear-gradient(100deg, rgba(15, 10, 8, .88) 26%, rgba(15, 10, 8, .45) 72%, rgba(15, 10, 8, .22) 100%),
        linear-gradient(180deg, rgba(15, 10, 8, .24), rgba(15, 10, 8, .65));
}

.hero__accent {
    width: 5px;
    background: var(--accent);
    right: auto;
    z-index: 1;
}

.hero__shell,
.search-dock {
    position: relative;
    z-index: 2;
}

.hero__shell {
    display: flex;
    align-items: center;
    min-height: 540px;
}

.hero__content {
    max-width: 760px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.hero__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--accent);
}

.hero__title {
    max-width: 10ch;
    color: #fff;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.05em;
    margin: 0 0 24px;
}

.hero__title span {
    color: var(--accent);
}

.hero__lead {
    max-width: 540px;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 36px;
}

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

.hero__ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
}

.search-dock {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
}

.search-dock__inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(0, 1fr)) auto;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 28px 70px -34px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.search-dock__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 22px 28px;
    border-right: 1px solid rgba(17, 17, 17, .08);
}

.search-dock__intro span,
.search-dock__field span {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ababab;
}

.search-dock__intro strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--text);
}

.search-dock__intro em {
    color: var(--accent);
    font-style: normal;
}

.search-dock__intro small {
    color: #bbbbbb;
    font-size: 12px;
}

.search-dock__field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 22px;
    border-right: 1px solid rgba(17, 17, 17, .08);
    cursor: pointer;
    transition: background .2s ease;
}

.search-dock__field:hover {
    background: #fff8f5;
}

.search-dock__field select,
.search-dock__field input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
}

.search-dock__submit {
    min-width: 190px;
    padding: 0 30px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.search-dock__submit:hover {
    background: var(--accent-deep);
}

.home-about {
    background: #fff;
}

.home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.home-about__visual {
    position: relative;
    min-height: 500px;
}

.home-about__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 76%;
    height: 72%;
    border-radius: 8px;
    background: var(--bg-2);
    border: 1px solid rgba(232, 57, 14, .12);
}

.home-about__photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82%;
    height: 78%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.home-about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about__badge {
    position: absolute;
    left: -10px;
    bottom: 28px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 18px 40px -26px rgba(17, 17, 17, .34);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-about__content h2 {
    margin: 18px 0 18px;
}

.home-about__list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.home-about__item {
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.home-about__item strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
}

.home-about__item p {
    color: var(--text-muted);
    line-height: 1.75;
}

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

.section-head h2 {
    margin-top: 16px;
}

.section-head--center {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section-head--center .eyebrow {
    justify-content: center;
}

.fleet-showcase {
    background: var(--bg-1);
}

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

.car-card--showcase {
    border: 1px solid rgba(17, 17, 17, .07);
    border-top: 4px solid var(--accent);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 40px -34px rgba(17, 17, 17, .45);
}

.car-card--showcase:hover {
    border-color: rgba(232, 57, 14, .28);
    box-shadow: 0 24px 44px -28px rgba(17, 17, 17, .18);
}

.car-card--showcase .car-card__image {
    background: linear-gradient(180deg, #fff5ef, #fff);
}

.car-card--showcase .car-card__body {
    padding: 24px 24px 26px;
}

.car-card--showcase .car-card__name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.car-card--showcase .car-card__sub,
.car-card--showcase .spec {
    color: var(--text-muted);
}

.car-card--showcase .car-card__tag {
    background: var(--bg-2);
    color: var(--accent);
    border: 0;
}

.car-card--showcase .price__sub {
    color: var(--text-dim);
    margin-bottom: 4px;
}

.car-card--showcase .price__amount {
    font-size: 28px;
    color: var(--text);
}

.car-card--showcase .btn--ghost {
    background: transparent;
    border: 1px solid rgba(17, 17, 17, .12);
}

.fleet-showcase__cta {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.why-strip {
    background: #fff;
}

.why-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-strip__card {
    padding: 34px 28px;
    border-radius: 18px;
    background: var(--bg-1);
    transition: transform .2s ease, background .2s ease;
}

.why-strip__card:hover {
    transform: translateY(-4px);
    background: var(--bg-2);
}

.why-strip__card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 800;
}

.why-strip__card p {
    color: var(--text-muted);
    line-height: 1.75;
}

.steps-section {
    background: #fff;
}

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

.step-card {
    padding: 30px 26px;
    border-radius: 18px;
    background: var(--bg-1);
    border: 1px solid rgba(17, 17, 17, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -30px rgba(17, 17, 17, .28);
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-section {
    background: var(--bg-1);
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .06);
    box-shadow: none;
}

.faq-item[open] {
    border-color: rgba(232, 57, 14, .22);
}

.faq-item__question {
    font-family: var(--font-display);
    font-weight: 700;
}

.faq-item__icon::before,
.faq-item__icon::after {
    background: var(--accent);
}

.footer {
    background: #111;
    color: rgba(255, 255, 255, .72);
}

.footer .logo,
.footer h4 {
    color: #fff;
}

.footer__grid {
    gap: 42px;
}

.footer a:hover {
    color: #fff;
}

.footer__bot {
    border-top-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 1100px) {
    .container {
        padding: 0 24px;
    }

    .topbar__meta {
        display: none;
    }

    .nav {
        gap: 0;
    }

    .search-dock__inner {
        grid-template-columns: 1fr 1fr;
    }

    .search-dock__intro,
    .search-dock__field,
    .search-dock__submit {
        min-height: 84px;
    }

    .search-dock__submit {
        grid-column: 1 / -1;
    }

    .home-about__grid,
    .section-head,
    .why-strip__grid,
    .steps-grid--four {
        grid-template-columns: 1fr;
    }

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

    .section-head {
        align-items: start;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 0px;
        --nav-h: 74px;
    }

    body {
        padding-top: var(--nav-h);
    }

    .topbar {
        display: none;
    }

    .header__inner {
        min-height: var(--nav-h);
        position: relative;
    }

    .logo {
        font-size: 28px;
    }

    .wa-btn,
    .header__book-btn {
        display: none;
    }

    .burger {
        display: block;
        margin-left: auto;
    }

    .nav {
        position: fixed;
        inset: var(--nav-h) 0 auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 24px 28px;
        background: rgba(17, 17, 17, .98);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .22s ease, opacity .22s ease;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        width: 100%;
        padding: 14px 0;
        color: #fff;
    }

    .nav a::after {
        left: 0;
        right: auto;
        bottom: 8px;
        width: 40px;
    }

    .hero--home {
        min-height: auto;
        padding: calc(var(--nav-h) + 70px) 0 360px;
        margin-top: calc(-1 * var(--nav-h));
    }

    .hero__title {
        font-size: clamp(40px, 12vw, 64px);
    }

    .hero__lead {
        font-size: 16px;
    }

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

    .search-dock {
        bottom: 22px;
    }

    .search-dock__inner {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .search-dock__intro,
    .search-dock__field {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 17, 17, .08);
    }

    .search-dock__submit {
        min-height: 68px;
    }

    .home-about__visual {
        min-height: 360px;
    }

    .home-about__badge {
        left: 12px;
        bottom: 12px;
        font-size: 10px;
        letter-spacing: .1em;
    }

    .fleet-grid--showcase {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 84px 0;
    }
}

/* ============================================================
   Home template page
   Scoped to the homepage so the rest of the site keeps working.
   ============================================================ */

body.home-template {
    padding-top: 114px;
    background: #fff;
    color: #111;
    font-family: 'Open Sans', sans-serif;
}

body.home-template.menu-open {
    overflow: hidden;
}

.home-template main {
    min-height: auto;
}

.home-template .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 38px;
    background: #e8390e;
    color: #fff;
}

.home-template .topbar-inner {
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-template .tb-item,
.home-template .tb-sep {
    font-family: 'Montserrat', sans-serif;
}

.home-template .tb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-template .tb-item:first-child {
    padding-left: 0;
}

.home-template .tb-item svg {
    width: 11px;
    height: 11px;
    fill: #fff;
    flex-shrink: 0;
    opacity: .9;
}

.home-template .tb-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.3);
}

.home-template .navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 299;
    height: 76px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(17,17,17,.08);
    backdrop-filter: blur(16px);
}

.home-template .navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,.1);
}

.home-template .nav-inner {
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-template .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #111;
}

.home-template .logo span {
    color: #e8390e;
}

.home-template .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.home-template .nav-links a {
    position: relative;
    display: block;
    padding: 12px 18px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.home-template .nav-links a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 2px;
    background: #e8390e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

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

.home-template .wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 16px 10px 14px;
    border-radius: 7px;
    background: #25d366;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: none;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 22px -18px rgba(37, 211, 102, .7);
    transition: background .2s ease, transform .16s ease, box-shadow .16s ease;
}

.home-template .wa-btn:hover {
    background: #21be5d;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -18px rgba(37, 211, 102, .78);
}

.home-template .wa-btn--mobile {
    display: none;
}

.home-template .wa-btn svg,
.home-template .mm-wa svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    flex-shrink: 0;
}

.home-template .burger {
    display: none;
}

.home-template .mobile-menu {
    display: none;
}

.home-template .hero {
    position: relative;
    min-height: 100vh;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.home-template .hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85&auto=format&fit=crop') center center / cover no-repeat;
    animation: homeHeroZoom 14s ease-out both;
}

.home-template .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(15,10,8,.88) 30%, rgba(15,10,8,.35) 100%),
        linear-gradient(to top, rgba(15,10,8,.55) 0%, transparent 50%);
}

.home-template .hero-vbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #e8390e;
    z-index: 2;
}

.home-template .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px 170px;
}

.home-template .hero-content > * {
    animation: homeFadeUp .7s ease both;
}

.home-template .hero-content > .hero-eyebrow { animation-delay: .08s; }
.home-template .hero-content > h1 { animation-delay: .18s; }
.home-template .hero-content > .hero-sub { animation-delay: .3s; }

.home-template .hero-eyebrow,
.home-template .about-eyebrow,
.home-template .sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #e8390e;
}

.home-template .hero-eyebrow::before,
.home-template .sec-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: #e8390e;
}

.home-template .about-eyebrow::before,
.home-template .sec-eyebrow::before {
    content: "";
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    background: #e8390e;
    transform: rotate(45deg);
    border-radius: 1px;
}

.home-template .hero h1 {
    max-width: 8.8ch;
    margin: 18px 0 22px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 6.4vw, 92px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.home-template .hero-line {
    display: block;
}

.home-template .hero-line--light {
    color: #fff;
}

.home-template .hero-line--accent {
    color: #e8390e;
}

.home-template .hero-line--nowrap {
    white-space: nowrap;
}

.home-template .hero-sub {
    max-width: 560px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;

}

.home-template .search-bar-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    z-index: 10;
    padding: 0 40px;
}

.home-template .search-bar {
    max-width: 1240px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border-top: 3px solid #e8390e;
    box-shadow: 0 8px 48px rgba(0,0,0,.28);
    overflow: hidden;
}

.home-template .sb-inner {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr auto;
    min-height: 88px;
}

.home-template .sb-cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 30px 18px 0;
    margin-left: 30px;
    border-right: 1px solid #eee;
}

.home-template .cta-tag,
.home-template .sb-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #aaa;
}

.home-template .cta-title {
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    color: #111;
}

.home-template .cta-title span {
    color: #e8390e;
}

.home-template .cta-sub,
.home-template .sb-hint {
    margin-top: 4px;
    font-size: 11px;
    color: #bbb;
}

.home-template .sb-fields-row {
    display: contents;
}

.home-template .sb-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 24px;
    border-right: 1px solid #eee;
}

.home-template .sb-val,
.home-template .sb-val input,
.home-template .sb-val select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.home-template .sb-cta {
    display: flex;
}

.home-template .sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    margin: 0;
    border-radius: 0;
    background: #e8390e;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-template .about-strip,
.home-template .fleet-section,
.home-template .steps-section {
    padding: 96px 40px;
}

.home-template .about-strip {
    background: #fff;
    padding-top: 84px;
    padding-bottom: 88px;
}

.home-template .about-strip-inner,
.home-template .fleet-inner,
.home-template .steps-inner,
.home-template .contact-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.home-template .about-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.home-template .collage {
    position: relative;
    height: 480px;
}

.home-template .col-rect-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 72%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(0,0,0,.08);
}

.home-template .col-rect-front {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82%;
    height: 76%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.home-template .col-rect-back img,
.home-template .col-rect-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-template .col-pill {
    position: absolute;
    left: -16px;
    bottom: 20px;
    padding: 12px 18px;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-template .col-pill-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e8390e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-template .col-pill-icon svg {
    width: 14px;
    height: 14px;
}

.home-template .col-pill-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
}

.home-template .col-pill-text span {
    font-size: 12px;
    color: #999;
}

.home-template .about-h2,
.home-template .sec-h2,
.home-template .contact-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.08;
    color: #111;
}

.home-template .about-eyebrow {
    margin-bottom: 18px;
}

.home-template .about-h2 {
    max-width: 520px;
    margin: 0 0 18px;
}

.home-template .about-lead,
.home-template .fleet-header p,
.home-template .steps-header p,
.home-template .cl-sub,
.home-template .cl-note {
    color: #888;
    line-height: 1.8;
}

.home-template .about-lead {
    max-width: 520px;
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.home-template .features-list {
    display: flex;
    flex-direction: column;
}

.home-template .feat-row {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: transform .2s ease, border-color .2s ease;
}

.home-template .feat-row:first-child {
    border-top: 1px solid #f0f0f0;
}

.home-template .feat-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #fdf0ec;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-template .feat-icon svg {
    width: 20px;
    height: 20px;
    stroke: #e8390e;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s ease, transform .2s ease;
}

.home-template .feat-row:hover {
    border-color: #f3d9d0;
}

.home-template .feat-row:hover .feat-icon {
    background: #f43b06;
    box-shadow: 0 12px 24px rgba(244, 59, 6, .18);
    transform: translateY(-1px);
}

.home-template .feat-row:hover .feat-icon svg {
    stroke: #fff;
    transform: scale(1.04);
}

.home-template .feat-text h4,
.home-template .step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.home-template .feat-text p,
.home-template .step-desc {
    color: #888;
    line-height: 1.6;
    font-size: 13px;
    font-weight: 500;

}

.home-template .cta-row,
.home-template .steps-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.home-template .steps-cta {
    justify-content: center;
    align-items: center;
}

.home-template .btn-solid,
.home-template .btn-outline,
.home-template .fleet-cta,
.home-template .cf-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-template .btn-solid,
.home-template .fleet-cta,
.home-template .cf-submit {
    background: #e8390e;
    color: #fff;
}

.home-template .btn-outline {
    border: 2px solid #e8390e;
    color: #e8390e;
}

.home-template .btn-arrow-icon {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .2s ease, stroke .2s ease;
}

.home-template .btn-arrow-icon--accent {
    stroke: #e8390e;
}

.home-template .btn-solid:hover .btn-arrow-icon,
.home-template .btn-outline:hover .btn-arrow-icon,
.home-template .fleet-cta:hover .btn-arrow-icon,
.home-template .cf-submit:hover .btn-arrow-icon,
.home-template .sb-btn:hover .btn-arrow-icon {
    transform: translateX(3px);
}

.home-template .btn-outline:hover .btn-arrow-icon {
    stroke: #fff;
}

.home-template .fleet-section {
    background: #fdf0ec;
    padding-top: 72px;
    padding-bottom: 84px;
}

.home-template .fleet-header,
.home-template .steps-header {
    text-align: center;
    margin-bottom: 56px;
}

.home-template .fleet-header .sec-eyebrow,
.home-template .steps-header .sec-eyebrow {
    justify-content: center;
    margin-bottom: 18px;
}

.home-template .fleet-header .sec-h2 {
    max-width: 620px;
    margin: 0 auto 18px;
}

.home-template .fleet-header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.home-template .steps-section {
    padding-top: 78px;
    padding-bottom: 92px;
}

.home-template .steps-header .sec-h2 {
    max-width: 620px;
    margin: 0 auto 18px;
}

.home-template .steps-header p {
    max-width: 520px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

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

.home-template .fleet-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-template .fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.home-template .fleet-card.scenic { border-top: 4px solid #4caf50; }
.home-template .fleet-card.adventure { border-top: 4px solid #2196f3; }
.home-template .fleet-card.wild { border-top: 4px solid #e8390e; }

.home-template .fleet-photo {
    height: 220px;
    overflow: hidden;
}

.home-template .fleet-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-template .fleet-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.home-template .fleet-car-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.home-template .fleet-car-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-template .scenic .fleet-car-badge { background: #e8f5e9; color: #388e3c; }
.home-template .adventure .fleet-car-badge { background: #e3f2fd; color: #1565c0; }
.home-template .wild .fleet-car-badge { background: #fdf0ec; color: #e8390e; }

.home-template .fleet-desc {
    margin-bottom: 18px;
    color: #888;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.home-template .fleet-bullets {
    flex: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
    
}

.home-template .fleet-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.home-template .fleet-bullets li::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-top: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.home-template .scenic .fleet-bullets li::before {
    background: #4caf50;
}

.home-template .adventure .fleet-bullets li::before {
    background: #2f93e8;
}

.home-template .wild .fleet-bullets li::before {
    background: #e8390e;
}

.home-template .fleet-cta {
    margin-top: auto;
    width: 100%;
    padding: 16px 26px;
    justify-content: center;
}

.home-template .scenic .fleet-cta {
    background: #4caf50;
}

.home-template .adventure .fleet-cta {
    background: #2f93e8;
}

.home-template .wild .fleet-cta {
    background: #f43b06;
}

.home-template .scenic .fleet-cta:hover {
    background: #43a047;
}

.home-template .adventure .fleet-cta:hover {
    background: #1f86dd;
}

.home-template .wild .fleet-cta:hover {
    background: #e83604;
}

.home-template .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.home-template .steps-grid::before {
    content: "";
    position: absolute;
    top: 52px;
    left: calc(16.66% + 48px);
    right: calc(16.66% + 48px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #e8390e 0, #e8390e 8px, transparent 8px, transparent 18px);
    z-index: 0;
}

.home-template .step-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-template .step-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(232,57,14,.12);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-template .step-marker svg {
    width: 32px;
    height: 32px;
    stroke: #e8390e;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .22s ease;
}

.home-template .step-marker .step-icon--fill {
    fill: #e8390e;
    stroke: none;
}

.home-template .step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e8390e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease;
}

.home-template .step-item:hover .step-marker {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(232,57,14,.22);
    box-shadow: 0 12px 28px rgba(232,57,14,.18);
}

.home-template .step-item:hover .step-marker svg {
    transform: scale(1.08);
}

.home-template .step-item:hover .step-num {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(232,57,14,.24);
}

.home-template .contact-section {
    position: relative;
    overflow: hidden;
    background: #e8390e;
    padding: 80px 40px;
}

.home-template .contact-section::before {
    content: "4x4";
    position: absolute;
    right: -16px;
    bottom: -32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22rem;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    line-height: 1;
}

.home-template .contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    padding: 0;
}

.home-template .contact-left h2 {
    color: #fff;
    margin-bottom: 18px;
}

.home-template .cl-sub,
.home-template .cl-note {
   color: rgba(255, 255, 255, .74);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.home-template .cl-note {
    margin-top: 18px;
    font-style: italic;
    opacity: .5;
}

.home-template .dest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.home-template .dest-chip {
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.86);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.home-template .contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.home-template .form-title {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.home-template .contact-flash {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.6;
}

.home-template .contact-flash--success {
    background: rgba(16,185,129,.08);
    border-color: rgba(16,185,129,.24);
    color: #0f8a62;
}

.home-template .contact-flash--error {
    background: rgba(239,68,68,.08);
    border-color: rgba(239,68,68,.2);
    color: #c23a3a;
}

.home-template .contact-flash--info {
    background: rgba(59,130,246,.08);
    border-color: rgba(59,130,246,.2);
    color: #245bba;
}

.home-template .cf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.home-template .cf-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #aaa;
}

.home-template .cf-group input,
.home-template .cf-group select,
.home-template .cf-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    background: #fff;
    color: #111;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-template .cf-group input:focus,
.home-template .cf-group select:focus,
.home-template .cf-group textarea:focus {
    border-color: rgba(232,57,14,.28);
    box-shadow: 0 0 0 4px rgba(232,57,14,.08);
    outline: none;
}

.home-template .cf-group select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 48px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
    cursor: pointer;
}

.home-template .cf-group textarea {
    min-height: 102px;
    resize: vertical;
    line-height: 1.6;
}

.home-template .cf-group textarea::placeholder {
    color: #c2c2c2;
}

.home-template .cf-dates {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}

.home-template .cf-dates-sep {
    color: #ccc;
}

.home-template .cf-submit {
    width: 100%;
    border: 0;
}

.home-template .home-footer {
    padding: 40px 20px;
    background: #111;
    color: #444;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-template .home-footer span {
    color: #e8390e;
}

.home-template .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.home-template .reveal.visible,
.home-template .reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes homeHeroZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    body.home-template {
        padding-top: 114px;
    }

    .home-template .topbar-inner,
    .home-template .nav-inner,
    .home-template .hero-content,
    .home-template .search-bar-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-template .about-strip,
    .home-template .fleet-section,
    .home-template .steps-section,
    .home-template .contact-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-template .fleet-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-template .fleet-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .home-template .about-strip-inner,
    .home-template .fleet-inner,
    .home-template .steps-inner,
    .home-template .contact-inner,
    .home-template .steps-grid {
        grid-template-columns: 1fr;
    }

    .home-template .steps-grid::before {
        top: 52px;
        bottom: 52px;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: repeating-linear-gradient(180deg, #e8390e 0, #e8390e 8px, transparent 8px, transparent 18px);
    }
}

@media (max-width: 768px) {
    body.home-template {
        padding-top: 76px;
    }

    .home-template .topbar {
        display: none;
    }

    .home-template .navbar {
        top: 0;
    }

    .home-template .nav-links,
    .home-template .wa-btn {
        display: none;
    }

    .home-template .wa-btn--mobile {
        display: inline-flex;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        margin-left: 10px;
        margin-right: 0;
        border-radius: 50%;
        box-shadow: 0 10px 24px -18px rgba(37, 211, 102, .78);
    }

    .home-template .wa-btn--mobile svg {
        width: 18px;
        height: 18px;
    }

    .home-template .burger {
        position: relative;
        z-index: 302;
        flex-direction: column;
        width: 44px;
        height: 44px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 6px 18px -16px rgba(17,17,17,.35);
    }

    .home-template .burger span {
        width: 20px;
        height: 2.5px;
        margin: 0;
        background: #111;
        border-radius: 999px;
        transition: transform .22s ease, opacity .16s ease;
    }

    .home-template .burger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .home-template .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .home-template .burger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .home-template .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(17,17,17,.46);
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
    }

    .home-template .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
    }

    .home-template .mobile-menu a,
    .home-template .mm-close {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }

    .home-template .mobile-menu a {
        display: block;
        width: min(360px, calc(100vw - 32px));
        margin-left: auto;
        font-size: 22px;
        font-weight: 800;
        text-transform: uppercase;
        color: #111;
        background: #fff;
        border-bottom: 1px solid #f1ebe6;
        padding: 16px 22px;
    }

    .home-template .mobile-menu .mm-wa {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: min(328px, calc(100vw - 64px));
        font-size: 14px !important;
        background: #25d366;
        color: #fff !important;
        margin: 18px 16px 0 auto;
        padding: 14px 20px !important;
        border-radius: 14px !important;
        border-bottom: 0 !important;
        box-sizing: border-box;
    }

    .home-template .mm-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 42px;
        height: 42px;
        font-size: 28px;
        background: transparent;
        color: #111;
        border: 0;
        z-index: 2;
    }

    .home-template .mobile-menu::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(360px, calc(100vw - 32px));
        background: #fff;
        box-shadow: -18px 0 48px rgba(0,0,0,.18);
    }

    .home-template .mobile-menu a,
    .home-template .mobile-menu .mm-wa {
        position: relative;
        z-index: 1;
    }

    .home-template .mobile-menu .mm-meta {
        position: relative;
        z-index: 1;
        width: min(328px, calc(100vw - 64px));
        margin: 16px 16px 0 auto;
        color: #111;
        font-family: 'Montserrat', sans-serif;
    }

    .home-template .mobile-menu .mm-meta__item {
        padding: 10px 0;
        border-bottom: 1px solid #f1ebe6;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        line-height: 1.45;
        text-transform: uppercase;
    }

    .home-template .mobile-menu a:first-of-type {
        margin-top: 76px;
    }

    .home-template .mobile-menu.open::before,
    .home-template .mobile-menu.open a,
    .home-template .mobile-menu.open .mm-wa,
    .home-template .mobile-menu.open .mm-meta {
        animation: homeMenuSlide .24s ease both;
    }

    .home-template .hero {
        min-height: 100svh;
    }

    .home-template .hero-content {
        padding-top: 0;
        padding-bottom: 220px;
        transform: translateY(-78px);
    }

    .home-template .hero h1 {
        max-width: 8.6ch;
        margin: 10px 0 10px;
        font-size: clamp(34px, 8.5vw, 54px);
        line-height: .9;
    }

    .home-template .hero-sub {
        max-width: 300px;
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .home-template .hero-eyebrow {
        font-size: 9px;
        letter-spacing: .2em;
    }

    .home-template .hero-eyebrow::before {
        width: 24px;
    }

    .home-template .hero-vbar {
        display: none;
    }

    .home-template .search-bar-wrap {
        bottom: 16px;
        padding-left: 17px;
        padding-right: 17px;
    }

    .home-template .search-bar {
        border-top-width: 2px;
        border-radius: 16px;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }

    .home-template .sb-inner {
        grid-template-columns: 1fr;
    }

    .home-template .sb-cta-left,
    .home-template .sb-cell {
        margin-left: 0;
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .home-template .sb-cta-left {
        min-height: 0;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .home-template .cta-title {
        margin-top: 4px;
        font-size: 16px;
        line-height: 1.04;
    }

    .home-template .cta-sub,
    .home-template .sb-hint {
        font-size: 11px;
        margin-top: 2px;
    }

    .home-template .sb-label {
        font-size: 10px;
    }

    .home-template .sb-val,
    .home-template .sb-val input,
    .home-template .sb-val select {
        font-size: 14px;
        line-height: 1.25;
    }

    .home-template .sb-cell {
        min-height: 82px;
    }

    .home-template .sb-cta {
        padding: 0;
    }

    .home-template .sb-fields-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-template .sb-btn {
        width: 100%;
        min-height: 52px;
        font-size: 12px;
        letter-spacing: .14em;
        border-radius: 0;
    }

    .home-template .sb-cta {
        width: 100%;
    }

    .home-template .about-strip,
    .home-template .fleet-section,
    .home-template .steps-section,
    .home-template .contact-section {
        padding: 56px 20px;
    }

    .home-template .collage {
        height: 320px;
    }

    .home-template .col-rect-back,
    .home-template .col-rect-front {
        transform: none;
    }

    .home-template .fleet-grid {
        grid-template-columns: 1fr;
    }

    .home-template .fleet-grid > div:last-child {
        grid-column: auto;
    }

    .home-template .fleet-inner,
    .home-template .steps-inner,
    .home-template .about-strip-inner,
    .home-template .contact-inner {
        gap: 32px;
    }

    .home-template .steps-grid::before {
        left: 40px;
        transform: none;
    }

    .home-template .step-item {
        display: flex;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .home-template .step-marker {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
    }

    .home-template .step-marker svg {
        width: 26px;
        height: 26px;
    }

    .home-template .steps-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .home-template .contact-form {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 22px 18px;
        border-radius: 18px;
        overflow: hidden;
    }

    .home-template .cf-dates {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-template .cf-dates-sep {
        display: none;
    }

    .home-template .cf-group input,
    .home-template .cf-group textarea {
        padding: 14px 16px;
    }

    .home-template .cf-dates > * {
        min-width: 0;
    }

    .home-template .cf-dates input {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 14px;
        -webkit-appearance: none;
        appearance: none;
    }

    @supports (-webkit-touch-callout: none) {
        .home-template .sb-val input[type="date"],
        .home-template .cf-dates input[type="date"],
        .car-template .fleet-filter input[type="date"],
        .car-template .sb-field-group input[type="date"] {
            text-align: left;
        }

        .home-template .sb-val input[type="date"]::-webkit-date-and-time-value,
        .home-template .cf-dates input[type="date"]::-webkit-date-and-time-value,
        .car-template .fleet-filter input[type="date"]::-webkit-date-and-time-value,
        .car-template .sb-field-group input[type="date"]::-webkit-date-and-time-value {
            text-align: left;
        }
    }

    .home-template .step-item,
    .home-template .feat-row,
    .home-template .fleet-card,
    .home-template .contact-form,
    .home-template .search-bar {
        margin-left: 0;
        margin-right: 0;
    }
}

@keyframes homeMenuSlide {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 420px) {
    .home-template .hero-content {
        padding-bottom: 208px;
        transform: translateY(-96px);
    }

    .home-template .hero h1 {
        max-width: 8.2ch;
        font-size: clamp(31px, 8.2vw, 46px);
    }

    .home-template .hero-sub {
        max-width: 260px;
        font-size: 11px;
    }

    .home-template .contact-form {
        width: min(100%, calc(100vw - 24px));
        padding: 20px 14px;
    }

    .home-template .search-bar {
        width: 100%;
    }

    .home-template .sb-cta-left,
    .home-template .sb-cell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-template .cf-dates {
        gap: 8px;
    }

    .home-template .cf-group input,
    .home-template .cf-group textarea {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-template .cf-group input[type="date"] {
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .home-template .col-rect-back,
    .home-template .col-rect-front {
        transform: translateY(-87px);
    }

    .home-template .col-pill {
        transform: translateY(-107px);
    }
}

/* ============================================================
   Car template page
   ============================================================ */

body.car-template {
    padding-top: 114px;
    background: #fff;
    color: #111;
    font-family: 'Open Sans', sans-serif;
}

body.car-template.menu-open {
    overflow: hidden;
}

.car-template .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 38px;
    background: #e8390e;
    color: #fff;
}

.car-template .topbar-inner {
    width: 100%;
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.car-template .tb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #fff;
    white-space: nowrap;
}

.car-template .tb-item:first-child {
    padding-left: 0;
}

.car-template .tb-item svg {
    width: 11px;
    height: 11px;
    fill: #fff;
    opacity: .9;
    flex-shrink: 0;
}

.car-template .tb-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.3);
}

.car-template .navbar {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 299;
    height: 76px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(16px);
    transition: box-shadow .3s ease;
}

.car-template .navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.car-template .nav-inner {
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.car-template .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #111;
}

.car-template .logo span {
    color: #e8390e;
}

.car-template .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    margin-left: auto;
}

.car-template .nav-links a {
    position: relative;
    display: block;
    padding: 9px 18px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.car-template .nav-links a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: #e8390e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

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

.car-template .wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #25d366;
    color: #fff;
    min-height: 42px;
    padding: 10px 16px 10px 14px;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 22px -18px rgba(37, 211, 102, .7);
    transition: background .2s ease, transform .16s ease, box-shadow .16s ease;
}

.car-template .wa-btn:hover {
    background: #21be5d;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -18px rgba(37, 211, 102, .78);
}

.car-template .wa-btn svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    flex-shrink: 0;
}

.car-template .mm-wa svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    flex-shrink: 0;
}

.car-template .wa-btn--mobile {
    display: none;
}

.car-template .burger {
    display: none;
}

.car-template .mobile-menu {
    display: none;
}

.car-template .car-breadcrumb {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #bbb;
}

.car-template .car-breadcrumb a {
    color: #bbb;
}

.car-template .car-breadcrumb a:hover {
    color: #e8390e;
}

.car-template .car-breadcrumb span {
    color: #111;
}

.car-template .car-breadcrumb svg {
    width: 12px;
    height: 12px;
    stroke: #bbb;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.car-template .car-layout {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.car-template .car-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.car-template .car-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #e8390e;
}

.car-template .car-category::before {
    content: "✦";
    font-size: 10px;
}

.car-template .car-category.scenic {
    color: #388e3c;
}

.car-template .car-category.adventure {
    color: #1565c0;
}

.car-template .car-category.wild {
    color: #e8390e;
}

.car-template .car-title {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
    color: #111;
}

.car-template .car-subtitle {
    max-width: 680px;
    font-size: 15px;
    color: #777;
    line-height: 1.7;
}

.car-template .price-hint-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 18px;
    margin-top: 20px;
    padding: 16px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
}

.car-template .phb-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.car-template .phb-from,
.car-template .spec-label,
.car-template .sb-field-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #aaa;
}

.car-template .phb-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #111;
}

.car-template .phb-per,
.car-template .phb-note {
    font-size: 13px;
    color: #888;
}

.car-template .phb-note {
    margin-left: 2px;
    white-space: nowrap;
}

.car-template .phb-discounts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end;
}

.car-template .phb-disc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #eee;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

.car-template .phb-disc::before {
    content: "🏷";
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
}

.car-template .phb-disc strong {
    color: #666;
    font-weight: 700;
}

.car-template .phb-disc .phb-disc-discount {
    color: #4caf50;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .car-template .phb-discounts {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
}

.car-template .btn-select-dates {
    display: none;
}

.car-template .btn-arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.car-template .car-photos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.car-template .main-photo {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
    cursor: zoom-in;
}

.car-template .main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.car-template .main-photo:hover img {
    transform: scale(1.03);
}

.car-template .cat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #e8390e;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.car-template .cat-badge.scenic {
    background: #e8f5e9;
    color: #388e3c;
}

.car-template .cat-badge.adventure {
    background: #e3f2fd;
    color: #1565c0;
}

.car-template .cat-badge.wild {
    background: #fdf0ec;
    color: #e8390e;
}

.car-template .photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    border: 0;
    cursor: pointer;
}

.car-template .photo-badge svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.car-template .gallery-strip {
    display: flex;
    gap: 14px;
    height: 118px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.car-template .gallery-strip::-webkit-scrollbar {
    display: none;
}

.car-template .fleet-category-gallery__rail {
    position: relative;
    width: 100%;
}

.car-template .fleet-category-gallery__rail .car-gallery__arrow--left,
.car-template .fleet-category-gallery__rail .car-gallery__arrow--right {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.car-template .fleet-category-gallery__rail .car-gallery__arrow {
    width: 48px;
    height: 48px;
    border-color: #ffffff;
    background: #fff;
    border-radius: 14px;
    box-shadow: none;
    font-size: 32px;
    margin-top: 0;
}

.car-template .fleet-category-gallery__rail .car-gallery__arrow--left {
    left: -24px;
}

.car-template .fleet-category-gallery__rail .car-gallery__arrow--right {
    right: -24px;
}

.car-template .gallery-thumb {
    position: relative;
    flex: 0 0 calc((100% - 42px) / 4);
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: #f5f5f5;
    cursor: pointer;
}

.car-template .gallery-strip.car-gallery__thumbs {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 14px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 0;
}

.car-template .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.car-template .gallery-thumb:hover img {
    transform: scale(1.06);
}

.car-template .gallery-thumb.more-overlay::after {
    content: "+ more";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.car-template .car-specs {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.car-template .spec-item {
    flex: 1;
    min-width: 120px;
    padding: 18px 22px 16px;
    border-right: 1px solid #eee;
}

.car-template .spec-item:last-child {
    border-right: 0;
}

.car-template .spec-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.car-template .spec-label svg {
    width: 10px;
    height: 10px;
    stroke: #e8390e;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.car-template .spec-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: #111;
}

.car-template .car-desc h3,
.car-template .includes h3,
.car-template .calendar-section h3 {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.car-template .similar-section h2 {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.car-template .car-desc p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.85;
}

.car-template .includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.car-template .inc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.car-template .inc-item::before {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fdf0ec;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23E8390E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.car-template .cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 18px;
}

.car-template .cal-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5d5d5d;
}

.car-template .leg-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.car-template .leg-free { background: #eaf6ea; border: 1px solid #a4dea8; }
.car-template .leg-busy { background: #fef0f2; border: 1px solid #f6cfd4; }
.car-template .leg-selected { background: #246d28; border: 1px solid #246d28; }
.car-template .leg-today { background: #fff; border: 2px solid #e8390e; }

.car-template .cal-wrap {
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px -26px rgba(17,17,17,.2);
}

.car-template .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 8px 16px;
    border-bottom: 1px solid #ebebeb;
    background: #fafafa;
}

.car-template .cal-nav {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.car-template .cal-nav:hover {
    background: #f3f3f3;
}

.car-template .cal-nav svg {
    width: 18px;
    height: 18px;
    stroke: #111;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.car-template .cal-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #111;
    text-align: center;
    flex: 1;
}

.car-template .cal-grid {
    padding: 16px 14px 14px;
}

.car-template .cal-days-header,
.car-template .cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.car-template .cal-days-header {
    margin-bottom: 6px;
}

.car-template .cal-day-name {
    padding: 12px 0 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #b7b7b7;
}

.car-template .cal-days {
    gap: 3px;
    grid-auto-rows: 96px;
}

.car-template .cal-day {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 9px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    padding: 0;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.car-template .cal-day__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.car-template .cal-day .day-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.car-template .cal-day .day-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
}

.car-template .cal-day.empty {
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    border-color: transparent;
}

.car-template .cal-day.free {
    background: #edf8ee;
    border-color: #9ed9a3;
    color: #2e7d32;
}

.car-template .cal-day.free:hover {
    background: #e4f4e5;
    border-color: #87cc8f;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 10px 18px -16px rgba(46,125,50,.42);
}

.car-template .cal-day.busy {
    background: #fef0f2;
    border-color: #f6cfd4;
    color: #e47178;
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 1;
}

.car-template .cal-day.busy .day-num {
    text-decoration: line-through;
}

.car-template .cal-day.today {
    border-color: #e8390e !important;
    font-weight: 900;
}

.car-template .cal-day.selected {
    background: #2d7a31 !important;
    border-color: #2d7a31 !important;
    color: #fff !important;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 10px 18px -16px rgba(46,125,50,.5);
}

.car-template .cal-day.in-range {
    background: #edf8ee !important;
    border-color: #9ed9a3 !important;
    color: #2e7d32 !important;
}

.car-template .cal-day.selected .day-price,
.car-template .cal-day.in-range .day-price {
    color: currentColor;
}

.car-template .cal-day.range-start,
.car-template .cal-day.range-end,
.car-template .cal-day.range-start.range-end {
    border-radius: 9px;
}

.car-template .sidebar {
    position: sticky;
    top: 96px;
}

.car-template .price-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 44px -34px rgba(17,17,17,.2);
}

.car-template .price-card-body {
    padding: 22px;
}

.car-template .sb-field-group {
    margin-bottom: 14px;
}

.car-template .sb-field-group label {
    display: block;
    margin-bottom: 6px;
}

.car-template .sb-field-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.car-template .sb-field-group input:focus {
    border-color: #e8390e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232,57,14,.08);
}

.car-template .price-summary {
    display: none;
    margin: 6px 0 16px;
    padding: 16px 16px 14px;
    border-radius: 12px;
    background: #fdf0ec;
    border: 1px solid rgba(232,57,14,.1);
}

.car-template .price-summary.visible {
    display: block;
}

.car-template .ps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.car-template .ps-row span:last-child {
    font-weight: 700;
    color: #111;
}

.car-template .ps-discount-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #e7f6ea;
    color: #2e7d32;
    font-size: 13px;
    font-weight: 700;
}

.car-template .ps-discount-row[hidden] {
    display: none;
}

.car-template .ps-discount-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.car-template .ps-discount-meta strong {
    color: #2e7d32;
}

.car-template .ps-discount-meta span {
    color: #b0b0b0;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 600;
}

.car-template .ps-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(232,57,14,.15);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #111;
    font-size: 14px;
}

.car-template .ps-total {
    color: #e8390e;
    font-size: 16px;
}

.car-template .ps-note {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
}

.car-template .ps-note.is-ok {
    color: #2e7d32;
}

.car-template .ps-note.is-bad {
    color: #c62828;
}

.car-template .price-summary #psDiscountAmount {
    color: #2e7d32;
}

.car-template .cta-primary {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    background: #e8390e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .16s ease, box-shadow .16s ease;
    box-shadow: 0 10px 24px -18px rgba(17,17,17,.42);
}

.car-template .cta-primary:hover {
    background: #c42e08;
    transform: translateY(-1px);
}

.car-template .cta-primary:hover .btn-arrow-icon,
.car-template .btn-select-dates:hover .btn-arrow-icon {
    transform: translateX(3px);
}

.car-template .cta-wa {
    width: 100%;
    margin-top: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #25d366;
    color: #fff;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s ease, transform .16s ease;
}

.car-template .cta-wa:hover {
    background: #1eba57;
    transform: translateY(-1px);
}

.car-template .cta-wa svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
}

.car-template .trust-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.car-template .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.car-template .trust-item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}

.car-template .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid #e4d8d2;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .16s ease;
}

.car-template .btn-outline:hover {
    border-color: #e8390e;
    background: #fff5ef;
    transform: translateY(-1px);
}

.car-template .btn-outline:hover .btn-arrow-icon {
    transform: translateX(3px);
}

.car-template .btn-sub-note {
    margin-top: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
}

.car-template .similar-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 40px 80px;
    border-top: 1px solid #eee;
}

.car-template .fleet-category-detail .similar-section {
    max-width: none;
    margin-top: 34px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.car-template .similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.car-template .sim-card {
    display: block;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 14px;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}

.car-template .sim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(232,57,14,.12);
}

.car-template .sim-img {
    height: 160px;
    overflow: hidden;
}

.car-template .sim-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.car-template .sim-card:hover .sim-img img {
    transform: scale(1.05);
}

.car-template .sim-body {
    padding: 18px;
}

.car-template .sim-name {
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

.car-template .sim-price {
    font-size: 13px;
    font-weight: 700;
    color: #e8390e;
}

.car-template .car-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-template .car-lightbox[hidden] {
    display: none;
}

.car-template .car-lightbox__dialog img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 8px;
    object-fit: contain;
}

.car-template .car-lightbox__close,
.car-template .car-lightbox__nav {
    position: absolute;
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
}

.car-template .car-lightbox__close {
    top: 24px;
    right: 24px;
    font-size: 32px;
}

.car-template .car-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    font-size: 26px;
}

.car-template .car-lightbox__nav--prev { left: 24px; }
.car-template .car-lightbox__nav--next { right: 24px; }

.car-template .car-template-footer {
    padding: 40px 20px;
    background: #111;
    color: #444;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.car-template .car-template-footer span {
    color: #e8390e;
}

@media (max-width: 1024px) {
    .car-template .car-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
        padding: 0 0px 0px;
    }

    .car-template .car-breadcrumb,
    .car-template .similar-section,
    .car-template .topbar-inner,
    .car-template .nav-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .car-template .spec-item {
        flex: 0 0 50%;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    body.car-template {
        padding-top: 76px;
    }

    .car-template .topbar {
        display: none;
    }

    .car-template .navbar {
        top: 0;
    }

    .car-template .nav-links {
        display: none;
    }

    .car-template .wa-btn {
        display: none;
    }

    .car-template .wa-btn--mobile {
        display: inline-flex;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
        margin-left: 10px;
        margin-right: 0;
        border-radius: 50%;
        box-shadow: 0 10px 24px -18px rgba(37, 211, 102, .78);
    }

    .car-template .wa-btn--mobile svg {
        width: 18px;
        height: 18px;
    }

    .car-template .burger {
        position: relative;
        z-index: 302;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 6px 18px -16px rgba(17,17,17,.35);
    }

    .car-template .burger span {
        width: 20px;
        height: 2.5px;
        margin: 0;
        border-radius: 999px;
        background: #111;
        transition: transform .22s ease, opacity .16s ease;
    }

    .car-template .burger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .car-template .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .car-template .burger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .car-template .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 301;
        display: block;
        pointer-events: none;
        opacity: 0;
        background: rgba(17,17,17,.3);
        transition: opacity .22s ease;
    }

    .car-template .mobile-menu.open {
        pointer-events: auto;
        opacity: 1;
    }

    .car-template .mobile-menu::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(360px, calc(100vw - 32px));
        background: #fff;
        box-shadow: -18px 0 48px rgba(0,0,0,.18);
    }

    .car-template .mobile-menu a,
    .car-template .mobile-menu .mm-wa {
        position: relative;
        z-index: 1;
    }

    .car-template .mobile-menu .mm-meta {
        position: relative;
        z-index: 1;
        width: min(328px, calc(100vw - 64px));
        margin: 16px 16px 0 auto;
        color: #111;
        font-family: 'Montserrat', sans-serif;
    }

    .car-template .mobile-menu .mm-meta__item {
        padding: 10px 0;
        border-bottom: 1px solid #efefef;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        line-height: 1.45;
        text-transform: uppercase;
    }

    .car-template .mobile-menu a:first-of-type {
        margin-top: 76px;
    }

    .car-template .mobile-menu.open::before,
    .car-template .mobile-menu.open a,
    .car-template .mobile-menu.open .mm-wa,
    .car-template .mobile-menu.open .mm-meta {
        animation: homeMenuSlide .24s ease both;
    }

    .car-template .mm-close {
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 2;
        border: 0;
        background: transparent;
        color: #111;
        font-family: 'Montserrat', sans-serif;
        font-size: 34px;
        line-height: 1;
        cursor: pointer;
    }

    .car-template .mobile-menu a {
        display: block;
        width: min(360px, calc(100vw - 32px));
        margin-left: auto;
        padding: 28px 34px;
        border-bottom: 1px solid #efefef;
        color: #111;
        font-family: 'Montserrat', sans-serif;
        font-size: 26px;
        font-weight: 800;
        letter-spacing: -.03em;
        text-transform: uppercase;
    }

    .car-template .mobile-menu .mm-wa {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        width: min(328px, calc(100vw - 64px));
        margin: 24px 16px 0 auto;
        padding: 14px 18px;
        border-radius: 999px;
        background: #25d366;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        box-sizing: border-box;
    }

    .car-template .car-breadcrumb {
        padding: 12px 24px;
        font-size: 10px;
    }

    .car-template .car-layout {
        grid-template-columns: 1fr;
        padding: 0 0px 0px;
        gap: 32px;
    }

    .car-template .sidebar {
        position: static;
    }

    .car-template .car-title {
        font-size: 30px;
    }

    .car-template .price-hint-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .car-template .phb-discounts {
        margin-left: 0;
        justify-content: flex-start;
    }

    .car-template .btn-select-dates {
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 999px;
        background: #e8390e;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .car-template .main-photo {
        height: 280px;
    }

    .car-template .gallery-strip {
        height: 96px;
        gap: 10px;
    }

    .car-template .fleet-category-gallery__rail {
        padding: 0;
    }

    .car-template .gallery-strip.car-gallery__thumbs {
        height: 96px;
        gap: 10px;
    }

    .car-template .gallery-thumb {
        flex: 0 0 calc((100% - 30px) / 4);
        height: 96px;
    }

    .car-template .fleet-category-gallery__rail .car-gallery__arrow {
        width: 28px;
        height: 28px;
    }

    .car-template .fleet-category-gallery__rail .car-gallery__arrow--left {
        left: 0;
    }

    .car-template .fleet-category-gallery__rail .car-gallery__arrow--right {
        right: 0;
    }

    .car-template .cal-days {
        gap: 3px;
        grid-auto-rows: 82px;
    }

    .car-template .cal-day {
        font-size: 12px;
    }

    .car-template .cal-day .day-price {
        font-size: 9px;
    }

    .car-template .includes-grid,
    .car-template .similar-grid {
        grid-template-columns: 1fr;
    }

    .car-template .spec-item {
        flex: 0 0 100%;
        border-right: 0;
    }

    .car-template .similar-section {
        padding: 40px 24px 56px;
    }

    .car-template .price-card-body {
        padding: 18px;
    }
}

@media (max-width: 560px) {
    .car-template .cal-legend {
        gap: 14px;
    }

    .car-template .cal-grid {
        padding: 12px 10px 10px;
    }

    .car-template .cal-day-name {
        font-size: 9px;
        padding: 10px 0 8px;
    }

    .car-template .cal-days {
        gap: 2px;
        grid-auto-rows: 62px;
    }

    .car-template .cal-day .day-num {
        font-size: 12px;
    }

    .car-template .cal-day .day-price {
        font-size: 8px;
    }
}

/* ============================================================
   Booking template
   ============================================================ */

.car-template .booking-template {
    padding: 8px 0 72px;
}

.car-template .booking-template__shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 380px;
    gap: 32px;
    align-items: start;
}

.car-template .booking-template__shell--single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.car-template .booking-card {
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 18px;
    box-shadow: 0 18px 44px -34px rgba(17,17,17,.2);
}

.car-template .booking-card--form {
    padding: 28px;
}

.car-template .booking-card--summary {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.car-template .booking-category-calendar {
    padding: 0 0 80px;
}

.car-template .fleet-category-calendar {
    padding: 0 0 80px;
}

.car-template .fleet-category-detail {
    padding: 4px 0 18px;
}

.car-template .fleet-category-detail__shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0px;
}

.car-template .fleet-category-detail__actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

.car-template .fleet-category-detail__layout {
    display: block;
}

.car-template .fleet-category-detail__main {
    min-width: 0;
}

.car-template .fleet-category-detail__stack {
    display: block;
}

.car-template .fleet-category-detail__intro {
    margin-bottom: 14px;
}

.car-template .fleet-category-detail__title {
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.04;
    color: #111;
}

.car-template .fleet-category-detail__lead {
    max-width: 58ch;
    color: #777;
    line-height: 1.6;
    font-size: 13px;
}

.car-template .fleet-category-detail__stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fbfbfb;
}

.car-template .fleet-category-detail__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.car-template .fleet-category-detail__from {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #aaa;
}

.car-template .fleet-category-detail__amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.car-template .fleet-category-detail__per,
.car-template .fleet-category-detail__note {
    color: #888;
    font-size: 12px;
}

.car-template .fleet-category-detail__availability {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #eee;
    background: #fff;
    color: #666;
    font-size: 11px;
}

.car-template .fleet-category-detail__availability strong {
    color: #2e7d32;
}

.car-template .fleet-category-detail__summary {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 44px -34px rgba(17,17,17,.12);
}

.car-template .fleet-category-detail__gallery {
    min-width: 0;
}

.car-template .fleet-category-detail__gallery-stage {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.car-template .fleet-category-detail__media {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff5ef, #fff);
}

.car-template .fleet-category-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-template .fleet-category-detail__thumbs {
    margin-top: 10px;
    flex-direction: row;
    gap: 8px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 2px;
}

.car-template .fleet-category-detail__thumbs .car-gallery__thumb {
    width: 70px;
    height: 58px;
    border-radius: 10px;
}

.car-template .fleet-category-detail__summary-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.car-template .fleet-category-detail__summary-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #111;
}

.car-template .fleet-category-detail__summary-sub {
    margin-top: 4px;
    color: #777;
    font-size: 13px;
}

.car-template .fleet-category-detail__summary-specs {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding-top: 14px;
    border-top: 1px dashed #e6ddd8;
    color: #666;
    font-size: 12px;
}

.car-template .fleet-category-detail__booking {
    margin-top: 18px;
}

.car-template .fleet-category-detail__booking .price-card {
    border-radius: 16px;
    box-shadow: 0 18px 44px -34px rgba(17,17,17,.16);
}

.car-template .fleet-category-detail__booking-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.car-template .fleet-category-detail__booking-fields {
    min-width: 0;
}

.car-template .fleet-category-detail .price-card-body {
    padding: 18px;
}

.car-template .fleet-category-detail .sb-field-group {
    margin-bottom: 12px;
}

.car-template .fleet-category-detail .sb-field-group input {
    padding: 12px 13px;
    font-size: 13px;
}

.car-template .fleet-category-detail .price-summary {
    margin-top: 2px;
    margin-bottom: 12px;
}

.car-template .fleet-category-detail .ps-row {
    font-size: 12px;
}

.car-template .fleet-category-detail .ps-note {
    font-size: 11px;
    line-height: 1.5;
}

.car-template .fleet-category-detail .booking-calendar-section {
    margin-top: 0;
}

.car-template .fleet-category-detail .cal-legend {
    gap: 10px 12px;
    margin-bottom: 12px;
}

.car-template .fleet-category-detail .cal-wrap {
    border-radius: 14px;
}

.car-template .fleet-category-detail .cal-header {
    padding: 10px 12px;
}

.car-template .fleet-category-detail .cal-days {
    gap: 4px;
}

.car-template .fleet-category-detail .cal-day {
    min-height: 54px;
    border-radius: 9px;
}

.car-template .fleet-category-detail .cal-day .day-num {
    font-size: 13px;
}

.car-template .fleet-category-detail .cal-day .day-price {
    font-size: 9px;
}

.car-template .fleet-category-detail .cta-primary {
    min-height: 48px;
    margin-top: 14px;
    font-size: 11px;
}

.car-template .fleet-category-detail .btn-sub-note {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.5;
}

.car-template .booking-calendar-section {
    margin-top: 6px;
}

.car-template .booking-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #e8390e;
}

.car-template .booking-step::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #e8390e;
}

.car-template .booking-title {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
    color: #111;
}

.car-template .booking-title--sm {
    font-size: clamp(30px, 4vw, 40px);
    margin-bottom: 10px;
}

.car-template .booking-intro {
    margin-bottom: 24px;
    color: #777;
    line-height: 1.8;
    font-size: 15px;
    max-width: 56ch;
}

.car-template .booking-errors {
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
}

.car-template .booking-errors p {
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff0f1;
    border: 1px solid #f5cdd2;
    color: #c62828;
    line-height: 1.6;
}

.car-template .booking-field {
    margin-bottom: 16px;
}

.car-template .booking-field label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #aaa;
}

.car-template .booking-field input,
.car-template .booking-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    color: #111;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.car-template .booking-field input:focus,
.car-template .booking-field textarea:focus {
    border-color: #e8390e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232,57,14,.08);
}

.car-template .booking-field textarea {
    resize: vertical;
    min-height: 122px;
}

.car-template .booking-submit {
    width: 100%;
    margin-top: 8px;
}

.car-template .booking-submit-note {
    margin-top: 12px;
}

.car-template .booking-back-link {
    width: auto;
    margin-top: 12px;
}

.car-template .booking-summary__header {
    margin-bottom: 18px;
}

.car-template .booking-summary__header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
    color: #111;
}

.car-template .booking-summary__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    margin-bottom: 18px;
}

.car-template .booking-summary__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-template .booking-summary__rows {
    display: grid;
    gap: 10px;
}

.car-template .booking-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: #666;
}

.car-template .booking-row strong {
    color: #111;
    font-weight: 700;
    text-align: right;
}

.car-template .booking-row--discount {
    color: #2e7d32;
}

.car-template .booking-row--discount strong {
    color: #2e7d32;
}

.car-template .booking-row--total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(232,57,14,.15);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.car-template .booking-row--total strong {
    color: #e8390e;
    font-size: 18px;
}

.car-template .booking-row--muted {
    margin-top: 6px;
    font-size: 12px;
    color: #999;
}

.car-template .booking-row--muted strong {
    color: #777;
}

.car-template .booking-success {
    padding-top: 12px;
}

.car-template .booking-success__card {
    text-align: center;
}

.car-template .booking-success__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(46,125,50,.14), rgba(46,125,50,.08));
    color: #2e7d32;
    box-shadow: 0 18px 40px -28px rgba(46,125,50,.45);
}

.car-template .booking-success__icon svg {
    width: 42px;
    height: 42px;
}

.car-template .booking-success__intro {
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

.car-template .booking-success__code {
    margin: 0 auto 24px;
    padding: 18px 20px;
    max-width: 320px;
    display: grid;
    gap: 8px;
    border-radius: 16px;
    background: #fff7f4;
    border: 1px solid rgba(232,57,14,.14);
}

.car-template .booking-success__code span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #999;
}

.car-template .booking-success__code strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .04em;
    color: #e8390e;
}

.car-template .booking-success__summary {
    margin-top: 4px;
    padding: 24px;
    text-align: left;
}

.car-template .booking-success__contact {
    margin: 24px auto 0;
    max-width: 46ch;
    color: #777;
    line-height: 1.8;
}

.car-template .booking-success__contact strong {
    color: #111;
}

.car-template .booking-success__actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .car-template .booking-template__shell {
        padding: 0 24px;
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

@media (max-width: 768px) {
    .car-template .booking-template__shell,
    .car-template .booking-template__shell--single {
        padding: 0 24px;
        grid-template-columns: 1fr;
    }

    .car-template .booking-card--summary {
        position: static;
        top: auto;
    }

    .car-template .booking-card--form,
    .car-template .booking-card--summary {
        padding: 20px;
    }

    .car-template .booking-title {
        font-size: 30px;
    }

    .car-template .booking-success__code strong {
        font-size: 24px;
    }

    .car-template .booking-success__summary {
        padding: 20px;
    }
}

/* ============================================================
   Fleet template
   ============================================================ */

.car-template .fleet-template {
    padding: 8px 0 80px;
}

.car-template .fleet-template__shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.car-template .fleet-template__intro {
    margin-bottom: 22px;
}

.car-template .fleet-template__title {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.04;
    color: #111;
}

.car-template .fleet-template__lead {
    max-width: 64ch;
    color: #777;
    line-height: 1.8;
    font-size: 15px;
}

.car-template .fleet-search-bar-wrap {
    margin-bottom: 30px;
}

.car-template .fleet-search-bar {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    border-top: 3px solid #e8390e;
    box-shadow: 0 8px 48px rgba(0,0,0,.08);
    overflow: hidden;
}

.car-template .fleet-sb-inner {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr auto;
    min-height: 88px;
}

.car-template .fleet-sb-cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 30px 18px 0;
    margin-left: 30px;
    border-right: 1px solid #eee;
}

.car-template .fleet-sb-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #aaa;
}

.car-template .fleet-cta-title {
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    color: #111;
}

.car-template .fleet-cta-title span {
    color: #e8390e;
}

.car-template .fleet-cta-sub,
.car-template .fleet-sb-hint {
    margin-top: 4px;
    font-size: 11px;
    color: #bbb;
}

.car-template .fleet-sb-fields-row {
    display: contents;
}

.car-template .fleet-sb-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 24px;
    border-right: 1px solid #eee;
    min-width: 0;
}

.car-template .fleet-sb-val,
.car-template .fleet-sb-val input,
.car-template .fleet-sb-val select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    min-width: 0;
}

.car-template .fleet-sb-cta {
    display: flex;
}

.car-template .fleet-sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    margin: 0;
    border-radius: 0;
    background: #e8390e;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.car-template .fleet-status {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.6;
}

.car-template .fleet-status--warning {
    background: rgba(239,68,68,.08);
    border-color: rgba(239,68,68,.2);
    color: #c23a3a;
}

.car-template .fleet-empty {
    padding: 40px 28px;
    border: 1.5px solid #eee;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 18px 44px -34px rgba(17,17,17,.12);
}

.car-template .fleet-empty h2 {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #111;
}

.car-template .fleet-empty p {
    max-width: 54ch;
    margin: 0 auto 18px;
    color: #777;
    line-height: 1.8;
}

.car-template .fleet-empty__cta {
    width: auto;
}

.car-template .fleet-empty--soft h2 {
    font-size: 22px;
}

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

.car-template .fleet-template__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    background: #fff;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    box-shadow: 0 18px 44px -34px rgba(17,17,17,.12);
}

.car-template .fleet-template__card:hover {
    transform: translateY(-8px);
    border-color: rgba(232,57,14,.22);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.car-template .fleet-template__card.scenic { border-top: 4px solid #4caf50; }
.car-template .fleet-template__card.adventure { border-top: 4px solid #2196f3; }
.car-template .fleet-template__card.wild { border-top: 4px solid #e8390e; }

.car-template .fleet-template__image {
    height: 220px;
    overflow: hidden;
}

.car-template .fleet-template__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.car-template .fleet-template__card:hover .fleet-template__image img {
    transform: scale(1.05);
}

.car-template .fleet-template__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.car-template .fleet-template__name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.car-template .fleet-template__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.car-template .fleet-template__badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.car-template .fleet-template__card.scenic .fleet-template__badge { background: #e8f5e9; color: #388e3c; }
.car-template .fleet-template__card.adventure .fleet-template__badge { background: #e3f2fd; color: #1565c0; }
.car-template .fleet-template__card.wild .fleet-template__badge { background: #fdf0ec; color: #e8390e; }

.car-template .fleet-template__desc {
    margin-bottom: 18px;
    color: #888;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.car-template .fleet-template__bullets {
    flex: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.car-template .fleet-template__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}

.car-template .fleet-template__bullets li::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-top: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.car-template .fleet-template__card.scenic .fleet-template__bullets li::before { background: #4caf50; }
.car-template .fleet-template__card.adventure .fleet-template__bullets li::before { background: #2f93e8; }
.car-template .fleet-template__card.wild .fleet-template__bullets li::before { background: #e8390e; }

.car-template .fleet-template__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 16px 26px;
    border-radius: 999px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s ease, transform .16s ease;
}

.car-template .fleet-template__card.scenic .fleet-template__cta { background: #4caf50; }
.car-template .fleet-template__card.adventure .fleet-template__cta { background: #2f93e8; }
.car-template .fleet-template__card.wild .fleet-template__cta { background: #f43b06; }

.car-template .fleet-template__card.scenic .fleet-template__cta:hover { background: #43a047; }
.car-template .fleet-template__card.adventure .fleet-template__cta:hover { background: #1f86dd; }
.car-template .fleet-template__card.wild .fleet-template__cta:hover { background: #e83604; }

.car-template .fleet-template__cta--disabled,
.car-template .fleet-template__cta--disabled:hover {
    background: #dadada !important;
    color: #fff;
    transform: none;
    cursor: default;
}

.car-template .fleet-template__note {
    margin-top: 10px;
    color: #9a9a9a;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.car-template .fleet-template__card:hover .fleet-template__cta .btn-arrow-icon {
    transform: translateX(3px);
}

@media (max-width: 1180px) {
    .car-template .fleet-category-detail__summary {
        grid-template-columns: 1fr;
    }

    .car-template .fleet-category-detail__media {
        min-height: 220px;
    }

    .car-template .fleet-category-detail__thumbs .car-gallery__thumb {
        width: 76px;
        height: 62px;
    }

    .car-template .fleet-category-detail__booking-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .car-template .fleet-category-detail__shell {
        padding: 0 24px;
    }

    .car-template .car-breadcrumb {
        padding: 18px 24px 12px;
        gap: 8px;
        font-size: 11px;
        flex-wrap: wrap;
    }

    .car-template .fleet-category-detail__title {
        font-size: 30px;
    }

    .car-template .fleet-category-detail__stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .car-template .fleet-category-detail__summary {
        padding: 12px;
        gap: 14px;
    }

    .car-template .fleet-category-detail__media {
        min-height: 184px;
    }

    .car-template .fleet-category-detail__summary-title {
        font-size: 24px;
    }

    .car-template .fleet-category-detail__thumbs .car-gallery__thumb {
        width: 100% !important;
        min-width: 0;
        height: 96px !important;
    }

    .car-template .gallery-strip.car-gallery__thumbs,
    .car-template .fleet-category-detail__thumbs {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        width: 100%;
        max-width: none;
        gap: 10px;
        margin-top: 12px;
        height: auto;
        overflow: hidden;
        padding: 0;
        justify-content: stretch;
        align-items: stretch;
    }

    .car-template .gallery-strip.car-gallery__thumbs > .gallery-thumb,
    .car-template .gallery-strip.car-gallery__thumbs > .car-gallery__thumb,
    .car-template .fleet-category-detail__thumbs > .gallery-thumb,
    .car-template .fleet-category-detail__thumbs > .car-gallery__thumb {
        display: block;
        flex: none;
        width: 100% !important;
        max-width: none !important;
        min-width: 0;
        height: 96px !important;
        border-radius: 14px;
        justify-self: stretch;
        align-self: stretch;
    }

    .car-template .gallery-strip.car-gallery__thumbs .gallery-thumb:nth-child(n + 5) {
        display: none;
    }

    .car-template .fleet-template__shell {
        padding: 0 24px;
    }

    .car-template .fleet-template__intro {
        margin-bottom: 18px;
    }

    .car-template .fleet-template__title {
        font-size: 32px;
    }

    .car-template .fleet-template__lead {
        font-size: 14px;
        line-height: 1.7;
    }

    .car-template .fleet-search-bar {
        border-radius: 18px;
    }

    .car-template .fleet-sb-inner {
        grid-template-columns: 1fr;
    }

    .car-template .fleet-sb-cta-left {
        padding: 18px 20px;
        margin-left: 0;
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .car-template .fleet-sb-cell {
        padding: 16px 20px 14px;
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .car-template .fleet-sb-val input,
    .car-template .fleet-sb-val select {
        min-height: 36px;
        font-size: 15px;
    }

    .car-template .fleet-sb-btn {
        width: 100%;
        min-height: 68px;
    }

    .car-template .fleet-template__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .car-template .fleet-template__image {
        height: 210px;
    }

    .car-template .fleet-template__body {
        padding: 18px;
    }

    .car-template .fleet-template__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .car-template .fleet-template__cta {
        width: 100%;
        justify-content: space-between;
    }

    .car-template .fleet-category-detail__actions {
        display: block;
    }

    .car-template .fleet-category-detail__actions .btn-outline {
        width: 100%;
        justify-content: space-between;
    }

    .car-template .fleet-category-detail .cal-legend {
        gap: 8px 10px;
    }

    .car-template .fleet-category-detail .cal-legend-item {
        font-size: 11px;
    }

    .car-template .fleet-category-detail .cal-day {
        min-height: 58px;
    }
}

@media (max-width: 480px) {
    .car-template .fleet-category-detail,
    .car-template .fleet-template {
        padding-bottom: 56px;
    }

    .car-template .fleet-category-detail__shell,
    .car-template .fleet-template__shell,
    .car-template .car-breadcrumb {
        padding-left: 16px;
        padding-right: 16px;
    }

    .car-template .fleet-category-detail__title,
    .car-template .fleet-template__title {
        font-size: 26px;
    }

    .car-template .fleet-category-detail__lead,
    .car-template .fleet-template__lead {
        font-size: 13px;
        line-height: 1.65;
    }

    .car-template .fleet-category-detail__stats {
        padding: 12px;
        align-items: flex-start;
    }

    .car-template .fleet-category-detail__availability {
        width: 100%;
        text-align: center;
    }

    .car-template .fleet-category-detail__summary {
        padding: 10px;
        gap: 12px;
    }

    .car-template .fleet-category-detail__media,
    .car-template .fleet-template__image {
        min-height: 0;
        height: 180px;
    }

    .car-template .fleet-category-detail__summary-title,
    .car-template .fleet-template__name {
        font-size: 22px;
    }

    .car-template .fleet-category-detail__summary-sub,
    .car-template .fleet-template__sub {
        font-size: 12px;
    }

    .car-template .fleet-category-detail__summary-specs,
    .car-template .fleet-template__specs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .car-template .fleet-category-detail__thumbs .car-gallery__thumb {
        width: 100% !important;
        height: 88px !important;
    }

    .car-template .fleet-template__body,
    .car-template .fleet-filters,
    .car-template .fleet-category-detail .price-card-body {
        padding: 14px;
    }

    .car-template .fleet-template__amount,
    .car-template .fleet-category-detail__amount {
        font-size: 24px;
    }

    .car-template .fleet-template__cta,
    .car-template .fleet-category-detail .cta-primary {
        font-size: 10px;
    }

    .car-template .fleet-category-detail .cal-header {
        min-height: 56px;
        padding: 8px 10px;
    }

    .car-template .fleet-category-detail .cal-nav {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .car-template .fleet-category-detail .cal-month {
        font-size: 15px;
    }

    .car-template .cal-grid {
        padding: 10px;
    }

    .car-template .cal-days {
        gap: 3px;
        grid-auto-rows: 58px;
    }

    .car-template .cal-day {
        font-size: 13px;
        border-radius: 8px;
    }

    .car-template .cal-day .day-price {
        display: none;
    }

    .car-template .cal-day-name {
        padding: 8px 0;
        font-size: 9px;
        letter-spacing: .08em;
    }

    .car-template .cal-day.range-start {
        border-radius: 8px 0 0 8px;
    }

    .car-template .cal-day.range-end {
        border-radius: 0 8px 8px 0;
    }

    .car-template .cal-day.range-start.range-end {
        border-radius: 8px;
    }
}
