/**
 * Booking Page — Matching site theme
 * Navy (#0f172a), Sky Blue (#0ea5e9), Orange (#f97316)
 *
 * @package HassetCarThemeOne
 */

/* ==========================================================================
   Booking Hero — Compact Banner
   ========================================================================== */
.booking-hero {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.booking-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.7);
}

.booking-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(14, 165, 233, 0.3) 100%);
}

.booking-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.booking-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.booking-hero__badge i {
    color: var(--accent, #f97316);
    font-size: 0.8rem;
}

.booking-hero__title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.booking-hero__title span {
    color: var(--secondary, #0ea5e9);
}

.booking-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

@media (max-width: 768px) {
    .booking-hero { height: 180px; }
    .booking-hero__title { font-size: 1.8rem; }
    .booking-hero__subtitle { font-size: 0.9rem; }
    .booking-hero__badge { font-size: 0.7rem; padding: 5px 12px; }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.booking-page {
    padding: 2.5rem 0 5rem;
    background: var(--bg-light, #f8fafc);
    min-height: 60vh;
}

/* ==========================================================================
   Search Widget — Navy theme
   ========================================================================== */
.search-widget {
    background: var(--primary, #0f172a);
    border-radius: var(--radius-lg, 1rem);
    padding: 2.5rem;
    max-width: 540px;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 50px rgba(15,23,42,0.25);
}

.search-widget__form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.search-widget__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-widget__label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-widget__input {
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: var(--radius-md, 0.5rem);
    font-size: 1rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--primary, #0f172a);
    background: #fff;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-widget__input:focus {
    outline: none;
    border-color: var(--secondary, #0ea5e9);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.2);
}

.search-widget__input::placeholder {
    color: #94a3b8;
}

.search-widget__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
}

.search-widget__row--date {
    grid-template-columns: 1fr auto auto auto;
    gap: 6px;
    align-items: center;
}

.search-widget__input--time {
    width: 68px;
    padding: 14px 6px;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%2394a3b8'/%3E%3C/svg%3E") no-repeat right 8px center;
    padding-right: 20px;
    position: relative;
    z-index: 10;
}

.search-widget__time-sep {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.search-widget__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    padding: 2px 0;
}

.search-widget__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary, #0ea5e9);
}

.search-widget__btn {
    margin-top: 0.8rem;
    padding: 16px;
    background: var(--accent, #f97316);
    color: #fff;
    border: none;
    border-radius: var(--radius-md, 0.5rem);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.search-widget__btn:hover {
    background: var(--accent-hover, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

.search-widget__btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   Booking Card
   ========================================================================== */
.booking-card {
    max-width: 860px;
    margin: 2.5rem auto 0;
}

/* Card Header */
.booking-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.booking-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(14,165,233,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary, #0ea5e9);
    flex-shrink: 0;
}

.booking-card__icon--success {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.booking-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin-bottom: 4px;
}

.booking-card__desc {
    font-size: 0.92rem;
    color: var(--text-body, #475569);
}

/* ==========================================================================
   Form Elements
   ========================================================================== */
.booking__form-grid {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

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

.booking__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking__field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary, #0f172a);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking__field label i {
    color: var(--secondary, #0ea5e9);
    font-size: 0.75rem;
}

.booking__input {
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md, 0.5rem);
    font-size: 0.95rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: var(--primary, #0f172a);
}

.booking__input:hover { border-color: #cbd5e1; }

.booking__input:focus {
    outline: none;
    border-color: var(--secondary, #0ea5e9);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.booking__phone-wrap {
    display: flex;
    gap: 0;
}

.booking__input--code {
    width: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-md, 0.5rem) 0 0 var(--radius-md, 0.5rem);
    border-right: none;
    padding: 12px 8px;
    font-size: 0.85rem;
}

.booking__input--phone {
    flex: 1;
    border-radius: 0 var(--radius-md, 0.5rem) var(--radius-md, 0.5rem) 0;
}

.booking__input::placeholder { color: #94a3b8; }

/* Section Labels */
.booking__section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-body, #475569);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking__section-label i { color: var(--secondary, #0ea5e9); }

/* Info Bar */
.booking__info-bar {
    display: flex;
    gap: 2rem;
    padding: 1.2rem 0;
    margin: 1.5rem auto;
    max-width: 540px;
    justify-content: center;
}

.booking__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body, #475569);
}

.booking__info-item i { color: var(--secondary, #0ea5e9); }

/* Date Badge */
.booking__date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--primary, #0f172a);
    font-weight: 500;
}

.booking__date-badge i { color: var(--secondary, #0ea5e9); }

/* ==========================================================================
   Vehicle Cards
   ========================================================================== */
.booking__vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking__vehicle-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.booking__vehicle-card:hover {
    border-color: var(--secondary, #0ea5e9);
    box-shadow: 0 8px 25px rgba(14,165,233,0.12);
    transform: translateY(-4px);
}

.booking__vehicle-card:active {
    transform: translateY(-2px);
}

.booking__vehicle-card--selected {
    border-color: var(--secondary, #0ea5e9);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.booking__vehicle-card--selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: var(--secondary, #0ea5e9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.booking__vehicle-card-img {
    height: 160px;
    background: var(--bg-light, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.booking__vehicle-card-img img {
    max-width: 88%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.booking__vehicle-card:hover .booking__vehicle-card-img img {
    transform: scale(1.05);
}

.booking__vehicle-card-body { padding: 1.2rem 1rem 1rem; }

.booking__vehicle-card-category {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--secondary, #0ea5e9);
    margin-bottom: 2px;
}

.booking__vehicle-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary, #0f172a);
    margin-bottom: 8px;
}

.booking__vehicle-card-specs {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-body, #475569);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.booking__vehicle-card-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.booking__vehicle-card-specs i { font-size: 0.7rem; color: #94a3b8; }

.booking__vehicle-card-footer {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.booking__vehicle-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent, #f97316);
}

.booking__vehicle-card-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-body, #475569);
}

.booking__vehicle-card-select { display: none; }

/* ==========================================================================
   Extras — Card toggles
   ========================================================================== */
.booking__extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

.booking__extra-card { cursor: pointer; }
.booking__extra-card input { display: none; }

.booking__extra-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1.2rem 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md, 0.5rem);
    text-align: center;
    transition: all 0.2s ease;
}

.booking__extra-card-inner i {
    font-size: 1.4rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.booking__extra-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #0f172a);
}

.booking__extra-price {
    font-size: 0.7rem;
    color: var(--secondary, #0ea5e9);
    font-weight: 500;
}

.booking__extra-card input:checked + .booking__extra-card-inner {
    border-color: var(--secondary, #0ea5e9);
    background: rgba(14,165,233,0.05);
}

.booking__extra-card input:checked + .booking__extra-card-inner i {
    color: var(--secondary, #0ea5e9);
}

.booking__extra-card-inner:hover { border-color: var(--secondary, #0ea5e9); }

/* Discount */
.booking__discount-wrap {
    display: flex;
    gap: 8px;
}
.booking__discount-wrap .booking__input { flex: 1; }

.booking__discount-apply {
    padding: 0 1.5rem;
    background: var(--primary, #0f172a);
    color: #fff;
    border: none;
    border-radius: var(--radius-md, 0.5rem);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}
.booking__discount-apply:hover { background: var(--secondary, #0ea5e9); }

/* ==========================================================================
   Summary
   ========================================================================== */
.booking__summary-modern {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg, 1rem);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    background: #fff;
}

.booking__summary-modern table { width: 100%; border-collapse: collapse; }

.booking__summary-modern td {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.92rem;
    color: var(--primary, #0f172a);
}

.booking__summary-modern td:first-child {
    font-weight: 400;
    color: var(--text-body, #475569);
    width: 38%;
}

.booking__summary-modern tr:last-child td { border-bottom: none; padding-top: 14px; }

.booking__summary-total {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: var(--accent, #f97316) !important;
}

/* Terms */
.booking__terms-check { margin: 1.5rem 0; }

.booking__checkbox-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-body, #475569);
}

.booking__checkbox-modern input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary, #0ea5e9);
}

.booking__checkbox-modern a {
    color: var(--secondary, #0ea5e9);
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.booking__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    gap: 12px;
}

.booking__actions--split { justify-content: space-between; }

.booking__btn-next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent, #f97316);
    color: #fff;
    border: none;
    border-radius: var(--radius-md, 0.5rem);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking__btn-next:hover {
    background: var(--accent-hover, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249,115,22,0.3);
}

.booking__btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    color: var(--primary, #0f172a);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md, 0.5rem);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.booking__btn-change-dates {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    background: none;
    border: none;
    color: var(--secondary, #0ea5e9);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    transition: color 0.2s;
}

.booking__btn-change-dates:hover {
    color: var(--primary, #0f172a);
}

.booking__btn-prev:hover {
    border-color: var(--primary, #0f172a);
    background: var(--bg-light, #f8fafc);
}

.booking__btn-confirm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent, #f97316);
    color: #fff;
    border: none;
    border-radius: var(--radius-md, 0.5rem);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking__btn-confirm:hover {
    background: var(--accent-hover, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* ==========================================================================
   Success
   ========================================================================== */
.booking__success-modern { text-align: center; padding: 2rem 1rem; }
.booking__success-animation { margin-bottom: 1.5rem; }

.booking__success-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: var(--secondary, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(14,165,233,0.3);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.booking__success-modern h2 {
    font-size: 1.8rem;
    color: var(--primary, #0f172a);
    margin-bottom: 0.5rem;
}

.booking__success-modern p {
    color: var(--text-body, #475569);
    margin-bottom: 2rem;
}

.booking__success-ref {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(14,165,233,0.06);
    border: 1px solid rgba(14,165,233,0.2);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md, 0.5rem);
    margin-bottom: 2rem;
}

.booking__success-ref span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-body, #475569);
}

.booking__success-ref strong {
    font-size: 1.5rem;
    color: var(--primary, #0f172a);
    letter-spacing: 2px;
}

.booking__success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Loading & Toast
   ========================================================================== */
.booking__loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.booking__loader { text-align: center; }

.booking__loader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--secondary, #0ea5e9);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 1rem;
}

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

.booking__loader p { color: var(--primary, #0f172a); font-weight: 500; }

.booking__toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 14px 20px;
    border-radius: var(--radius-md, 0.5rem);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 10000;
    max-width: 450px;
    animation: toastUp 0.3s ease;
}

@keyframes toastUp {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.booking__toast i { font-size: 1.1rem; }
.booking__toast-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #94a3b8;
    cursor: pointer;
    margin-left: auto;
}

/* Panels */
.booking__panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.booking__panel--active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .booking-hero { height: 220px; margin-top: 70px; }
    .booking-hero__title { font-size: 2rem; }

    .booking-stepper { margin-top: -22px; }
    .booking-stepper__icon { width: 36px; height: 36px; font-size: 0.8rem; }
    .booking-stepper__label { font-size: 0.6rem; }

    .booking-card { padding: 1.5rem; margin: 1.5rem 0.5rem 0; }
    .booking-card__header { flex-direction: column; gap: 8px; }

    .search-widget { padding: 1.5rem; max-width: 100%; }
    .search-widget__row { grid-template-columns: 1fr 1fr; }
    .search-widget__row--date { grid-template-columns: 1fr auto auto auto; }

    .booking__form-grid--2,
    .booking__form-grid--3 { grid-template-columns: 1fr; }
    .booking__extras-grid { grid-template-columns: 1fr; }
    .booking__vehicles-grid { grid-template-columns: 1fr; }
    .booking__info-bar { flex-direction: column; gap: 8px; align-items: flex-start; }

    .booking__actions--split { flex-direction: column-reverse; gap: 10px; }
    .booking__btn-next, .booking__btn-prev, .booking__btn-confirm { width: 100%; justify-content: center; }
    .booking__success-actions { flex-direction: column; }
    .booking__success-actions a { width: 100%; justify-content: center; }
}

/* Air Datepicker theme match */
.air-datepicker {
    --adp-font-family: var(--font-body, 'Inter', sans-serif);
    --adp-accent-color: var(--secondary, #0ea5e9);
    --adp-color-secondary: var(--accent, #f97316);
    --adp-border-color: #e2e8f0;
    --adp-border-radius: 12px;
    --adp-cell-border-radius: 8px;
    --adp-day-cell-height: 38px;
    --adp-pointer-size: 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.air-datepicker-nav--title { font-weight: 600; }

.air-datepicker-cell.-selected- {
    background: var(--secondary, #0ea5e9);
}

.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
}

.air-datepicker--pointer { display: none; }

/* ==========================================================================
   Vehicle Card Actions
   ========================================================================== */
.booking__vehicle-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.booking__btn-details {
    flex: 1;
    padding: 8px 12px;
    background: transparent;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #0f172a);
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking__btn-details:hover {
    border-color: var(--secondary, #0ea5e9);
    color: var(--secondary, #0ea5e9);
    background: rgba(14,165,233,0.04);
}

.booking__btn-select {
    flex: 1;
    padding: 8px 12px;
    background: var(--accent, #f97316);
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking__btn-select:hover {
    background: var(--accent-hover, #ea580c);
    transform: translateY(-1px);
}

/* ==========================================================================
   Vehicle Detail Modal
   ========================================================================== */
.vehicle-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.vehicle-modal--open {
    opacity: 1;
    visibility: visible;
}

.vehicle-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.vehicle-modal__content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.vehicle-modal--open .vehicle-modal__content {
    transform: scale(1) translateY(0);
}

.vehicle-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 1.4rem;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.vehicle-modal__close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* Modal Gallery */
.vehicle-modal__gallery {
    background: var(--bg-light, #f8fafc);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 16px 0 0 16px;
}

.vehicle-modal__gallery .splide {
    width: 100%;
    height: auto;
}

.vehicle-modal__gallery .splide__track {
    height: auto;
}

.vehicle-modal__gallery .splide__list {
    height: auto;
}

.vehicle-modal__gallery .splide__arrow {
    background: rgba(0,0,0,0.4);
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.vehicle-modal__gallery:hover .splide__arrow {
    opacity: 1;
}

.vehicle-modal__gallery .splide__arrow svg {
    fill: white;
    width: 1rem;
    height: 1rem;
}

.vehicle-modal__main-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 1rem;
}

.vehicle-modal__main-img img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

#modal-thumbs-splide {
    margin-top: 8px;
}

#modal-thumbs-splide .splide__track--nav > .splide__list > .splide__slide.is-active {
    border: none;
}

#modal-thumbs-splide .splide__track {
    padding: 4px 0;
}

.vehicle-modal__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
}

#modal-thumbs-splide .splide__slide.is-active .vehicle-modal__thumb,
.vehicle-modal__thumb:hover {
    border-color: var(--secondary, #0ea5e9);
    opacity: 1;
}

/* Modal Info */
.vehicle-modal__info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.vehicle-modal__category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary, #0ea5e9);
}

.vehicle-modal__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin: 0;
}

.vehicle-modal__name span {
    font-weight: 400;
    color: #94a3b8;
    font-size: 1rem;
}

.vehicle-modal__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vehicle-modal__spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #475569;
    background: var(--bg-light, #f8fafc);
    padding: 6px 12px;
    border-radius: 6px;
}

.vehicle-modal__spec i {
    color: var(--secondary, #0ea5e9);
    font-size: 0.8rem;
}

.vehicle-modal__desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.vehicle-modal__features h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin-bottom: 8px;
}

.vehicle-modal__features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    list-style: none;
    padding: 0;
}

.vehicle-modal__features li {
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-modal__features li i {
    color: #10b981;
    font-size: 0.75rem;
}

/* Modal Reviews */
.vehicle-modal__reviews h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-modal__reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vehicle-modal__review {
    background: var(--bg-light, #f8fafc);
    padding: 12px 14px;
    border-radius: 8px;
    border-left: 3px solid #FBBC05;
}

.vehicle-modal__review-stars {
    color: #FBBC05;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.vehicle-modal__review-text {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.vehicle-modal__review-author {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* Modal Footer */
.vehicle-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
}

.vehicle-modal__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
}

.vehicle-modal__price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent, #f97316);
}

.vehicle-modal__price-unit {
    font-size: 0.9rem;
    color: #475569;
}

.vehicle-modal__price-total {
    display: block;
    width: 100%;
    font-size: 0.78rem;
    color: #94a3b8;
}

.vehicle-modal__btn-choose {
    padding: 12px 24px;
    background: var(--accent, #f97316);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.vehicle-modal__btn-choose:hover {
    background: var(--accent-hover, #ea580c);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .vehicle-modal__content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        width: 95%;
        border-radius: 12px;
    }

    .vehicle-modal__gallery {
        border-radius: 12px 12px 0 0;
        min-height: auto;
        padding: 1.5rem;
    }

    .vehicle-modal__main-img { min-height: 180px; }

    .vehicle-modal__info { padding: 1.5rem; }

    .vehicle-modal__features ul { grid-template-columns: 1fr; }

    .vehicle-modal__footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .vehicle-modal__btn-choose {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Payment Method Selection
   ========================================================================== */
.payment-select {
    margin: 2rem 0 1.5rem;
}

.payment-select__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-body, #475569);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-select__label i {
    color: var(--secondary, #0ea5e9);
}

.payment-select__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-select__option {
    cursor: pointer;
}

.payment-select__option input[type="radio"] {
    display: none;
}

.payment-select__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: #fff;
}

.payment-select__option input:checked + .payment-select__card {
    border-color: var(--secondary, #0ea5e9);
    background: rgba(14, 165, 233, 0.03);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.payment-select__card:hover {
    border-color: #cbd5e1;
}

.payment-select__card-icons {
    display: flex;
    gap: 6px;
    font-size: 1.5rem;
    color: #64748b;
    flex-shrink: 0;
}

.payment-select__card-icons .fa-cc-visa { color: #1a1f71; }
.payment-select__card-icons .fa-cc-mastercard { color: #eb001b; }
.payment-select__card-icons .fa-cc-amex { color: #006fcf; }
.payment-select__card-icons .fa-money-check-alt { color: #475569; }

.payment-select__card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-select__card-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary, #0f172a);
}

.payment-select__card-desc {
    font-size: 0.78rem;
    color: #94a3b8;
}

.payment-select__card-badge {
    flex-shrink: 0;
}

.payment-select__note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-select__note i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Stripe Card Element */
.payment-stripe {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--bg-light, #f8fafc);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.payment-stripe__label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--primary, #0f172a);
    margin-bottom: 10px;
    display: block;
}

.payment-stripe__element {
    padding: 14px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.payment-stripe__element:focus-within {
    border-color: var(--secondary, #0ea5e9);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.payment-stripe__errors {
    color: #dc2626;
    font-size: 0.82rem;
    margin-top: 8px;
    min-height: 20px;
}

@media (max-width: 768px) {
    .payment-select__card {
        flex-wrap: wrap;
        gap: 10px;
    }
    .payment-select__card-badge { display: none; }
}


/* ==========================================================================
   Insurance & Protection Addon Cards
   ========================================================================== */
.booking__addon-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.booking__addon-card {
    cursor: pointer;
}

.booking__addon-card input[type="radio"],
.booking__addon-card input[type="checkbox"] {
    display: none;
}

.booking__addon-card-inner {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: #fff;
}

.booking__addon-card input:checked + .booking__addon-card-inner {
    border-color: var(--secondary, #0ea5e9);
    background: rgba(14, 165, 233, 0.03);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.booking__addon-card-inner:hover {
    border-color: #cbd5e1;
}

.booking__addon-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.booking__addon-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary, #0f172a);
}

.booking__addon-card-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent, #f97316);
}

.booking__addon-card-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

.booking__addon-card--none .booking__addon-card-inner {
    background: var(--bg-light, #f8fafc);
}

/* ==========================================================================
   Vehicle Listing — Sidebar + List Layout (Refined)
   ========================================================================== */
.vehicle-listing {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar */
.vehicle-listing__filter-mobile-toggle {
    display: none;
}

.vehicle-listing__sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0;
    overflow: hidden;
}

.vehicle-listing__trip-info {
    background: #fff;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.vehicle-listing__trip-location {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    margin-bottom: 8px;
}

.vehicle-listing__trip-dates {
    font-size: 0.82rem;
    color: var(--text-body, #475569);
    line-height: 1.6;
}

.vehicle-listing__filter-group {
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 20px;
}

.vehicle-listing__filter-group:last-child {
    border-bottom: none;
}

.vehicle-listing__filter-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary, #0f172a);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vehicle-listing__filter-toggle {
    font-size: 0.75rem;
    color: #94a3b8;
}

.vehicle-listing__filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vehicle-listing__filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-body, #475569);
    transition: color 0.15s;
}

.vehicle-listing__filter-check:hover {
    color: var(--primary, #0f172a);
}

.vehicle-listing__filter-check input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--secondary, #0ea5e9);
    border-radius: 3px;
}

/* Results */
.vehicle-listing__results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary, #0ea5e9);
    margin-bottom: 1.2rem;
}

.vehicle-listing__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.vehicle-listing__empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #94a3b8;
}

.vehicle-listing__empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

.vehicle-listing__empty h3 {
    color: var(--text-body, #475569);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Vehicle List Item — Horizontal card (polished) */
.vehicle-listing__item {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 1.5rem;
    align-items: stretch;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.vehicle-listing__item:hover {
    border-color: var(--secondary, #0ea5e9);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
    transform: translateY(-2px);
}

.vehicle-listing__item-img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

.vehicle-listing__item-img img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vehicle-listing__item:hover .vehicle-listing__item-img img {
    transform: scale(1.05);
}

.vehicle-listing__item-img i {
    font-size: 3rem;
    color: #e2e8f0;
}

/* Body — wraps info + price vertically */
.vehicle-listing__item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.vehicle-listing__item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-listing__item-category {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary, #0ea5e9);
    text-transform: capitalize;
}

.vehicle-listing__item-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary, #0f172a);
    letter-spacing: -0.3px;
}

.vehicle-listing__item-name span {
    font-weight: 400;
    font-size: 0.88rem;
    color: #94a3b8;
    font-style: italic;
}

.vehicle-listing__item-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 4px;
}

.vehicle-listing__item-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--text-body, #475569);
    font-weight: 500;
}

.vehicle-listing__item-specs span i {
    color: var(--secondary, #0ea5e9);
    font-size: 0.78rem;
    width: 16px;
    text-align: center;
}

/* Price bar — bottom of body */
.vehicle-listing__item-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    gap: 1rem;
}

.vehicle-listing__item-price-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-listing__item-price-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.vehicle-listing__item-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary, #0f172a);
    line-height: 1.2;
}

.vehicle-listing__item-price-tax {
    font-size: 0.7rem;
    color: #94a3b8;
}

.vehicle-listing__item-price-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-listing__item-btn {
    padding: 11px 24px;
    background: var(--accent, #f97316);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.vehicle-listing__item-btn:hover {
    background: var(--accent-hover, #ea580c);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.vehicle-listing__item-btn i {
    margin-left: 5px;
    font-size: 0.7rem;
}

.vehicle-listing__item-details {
    padding: 9px 16px;
    background: transparent;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary, #0ea5e9);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.vehicle-listing__item-details:hover {
    border-color: var(--secondary, #0ea5e9);
    background: rgba(14, 165, 233, 0.04);
}

/* Responsive */
@media (max-width: 900px) {
    .vehicle-listing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vehicle-listing__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #fff;
        padding: 2rem 1.5rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    }

    .vehicle-listing__sidebar.mobile-filter--open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .vehicle-listing__filter-mobile-toggle {
        display: none;
    }

    .vehicle-listing__trip-info {
        display: none;
    }

    /* Fixed filter button at bottom */
    .mobile-filter-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 998;
        background: var(--primary, #0f172a);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 14px 28px;
        font-size: 0.9rem;
        font-weight: 600;
        font-family: var(--font-heading, 'Outfit', sans-serif);
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }

    .mobile-filter-btn:active {
        transform: translateX(-50%) scale(0.95);
    }

    .mobile-filter-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-filter-close h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }

    .mobile-filter-close button {
        background: #f1f5f9;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1.2rem;
        color: #475569;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vehicle-listing__results {
        padding-bottom: 80px;
    }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 901px) {
    .mobile-filter-btn { display: none !important; }
    .mobile-filter-close { display: none !important; }
}

@media (max-width: 600px) {
    .vehicle-listing__item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }

    .vehicle-listing__item-img {
        min-height: 150px;
    }

    .vehicle-listing__item-info {
        align-items: center;
        text-align: center;
    }

    .vehicle-listing__item-specs {
        justify-content: center;
    }

    .vehicle-listing__item-price {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vehicle-listing__item-price-left {
        justify-content: center;
    }

    .vehicle-listing__item-price-actions {
        width: 100%;
        flex-direction: column;
    }

    .vehicle-listing__item-btn,
    .vehicle-listing__item-details {
        width: 100%;
        text-align: center;
    }
}
