.booking-page {
    max-width: 1240px;
    overflow: visible;
}

.booking-layout {
    align-items: stretch;
    overflow: visible;
}

.booking-main-column {
    min-width: 0;
}

.booking-summary-column {
    align-self: stretch;
    height: auto;
    overflow: visible;
}

.page-header {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(13, 110, 253, 0.08);
}

.page-header__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-description {
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.75;
}

.booking-card,
.booking-summary-card {
    border-radius: 1.25rem;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.booking-card .card-header,
.booking-summary-card .card-header {
    background: transparent;
}

.booking-card .card-body,
.booking-summary-card .card-body {
    padding: 1.4rem 1.4rem 1.5rem;
}

.booking-card .card-header {
    padding: 1.2rem 1.4rem 0.2rem;
}

.booking-form-grid {
    row-gap: 1.1rem;
}

.booking-form-grid>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd, #3b82f6);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.18);
}

.booking-card .form-label,
.booking-summary-card .summary-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    display: inline-block;
}

.booking-card .form-control,
.booking-card .form-select,
.booking-card textarea {
    border-radius: 0.95rem;
    border: 1px solid #d1d5db;
    min-height: 50px;
    height: 50px;
    padding: 0.75rem 1rem;
    background: #ffffff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.95rem;
    line-height: 1.5;
    box-sizing: border-box;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus,
.booking-card textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.12);
}

.booking-card input[type="date"],
.booking-card input[type="time"],
.booking-card input[type="number"] {
    min-height: 50px;
    height: 50px;
}

.booking-card textarea {
    min-height: 124px;
    height: auto;
    resize: vertical;
}

.trip-type-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.trip-type-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 50px;
    height: 50px;
    padding: 0.75rem 1rem;
    border: 1px solid #dbeafe;
    border-radius: 0.95rem;
    background: #ffffff;
    color: #334155;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.trip-type-option:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 20px rgba(14, 116, 214, 0.08);
}

.trip-type-option.active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.12);
}

.trip-type-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.trip-type-indicator {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    border: 2px solid #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.trip-type-option.active .trip-type-indicator {
    border-color: #2563eb;
    background: #2563eb;
    box-shadow: inset 0 0 0 2px #ffffff;
}

.trip-type-text {
    font-weight: 600;
    line-height: 1;
}

.trip-type-option.active .trip-type-text {
    font-weight: 700;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon .field-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #0ea5e9;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.input-with-icon .form-control {
    padding-left: 2.85rem;
    padding-right: 1rem;
}

#pickupLocation,
#dropoffLocation,
#travelDate,
#pickupTime,
#returnDate,
#durationDays {
    font-size: 0.95rem;
}

#pickupLocation::placeholder,
#dropoffLocation::placeholder,
#travelDate::placeholder,
#durationDays::placeholder {
    font-size: 0.95rem;
}

.location-stack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.location-action-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.location-action-row .btn {
    flex: 1 1 0;
    border-radius: 0.85rem;
    min-height: 38px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem;
}

.location-action-row .btn.active,
.location-action-row .btn:hover {
    background-color: #eff6ff;
    color: #0d53b0;
    border-color: #dbeafe;
}

.pickup-feedback {
    display: grid;
    gap: 0.5rem;
}

.pickup-live-status,
.pickup-live-error {
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    font-size: 0.92rem;
}

.pickup-live-status {
    background: #eef6ff;
    color: #164e8b;
    border: 1px solid #bfdbfe;
}

.pickup-live-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

#vehiclesListBooking .vehicle-card-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1.15rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#vehiclesListBooking .vehicle-card-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

#vehiclesListBooking .vehicle-card-card.active {
    border-color: #2563eb;
    border-width: 2px;
    background: rgba(239, 246, 255, 0.85);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.14);
}

#vehiclesListBooking .vehicle-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 175px;
    padding: 0.75rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

#vehiclesListBooking .vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0.75rem;
    background: transparent;
    padding: 0.25rem;
}

#vehiclesListBooking .vehicle-image-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 0.4rem;
    color: #94a3b8;
    background: #f8fafc;
    border-radius: 0.75rem;
    text-align: center;
}

#vehiclesListBooking .vehicle-image-fallback i {
    font-size: 1.4rem;
    color: #94a3b8;
    line-height: 1;
}

#vehiclesListBooking .vehicle-image-fallback .fallback-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.01em;
}

#vehiclesListBooking .vehicle-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.15rem 1.15rem 1.25rem;
}

#vehiclesListBooking .vehicle-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

#vehiclesListBooking .vehicle-card-radio {
    width: 1.15rem;
    height: 1.15rem;
    margin: 0;
    accent-color: #2563eb;
    flex-shrink: 0;
    cursor: pointer;
}

#vehiclesListBooking .vehicle-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    word-break: break-word;
}

#vehiclesListBooking .vehicle-specs-line {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
}

#vehiclesListBooking .vehicle-description {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#vehiclesListBooking .vehicle-card-bottom {
    margin-top: auto;
}

#vehiclesListBooking .vehicle-price-main {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

#vehiclesListBooking .vehicle-price-main .price-unit {
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
}

#vehiclesListBooking .vehicle-pricing-sublabel {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.15rem;
}

#vehiclesListBooking .select-vehicle-btn {
    border-radius: 0.65rem;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    transition: all 0.2s ease;
}

#vehiclesListBooking .vehicle-card-card.active .vehicle-card-title,
#vehiclesListBooking .vehicle-card-card.active .vehicle-price-main {
    color: #1d4ed8;
}

#vehiclesListBooking .vehicle-card-card.active .select-vehicle-btn {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    #vehiclesListBooking .vehicle-card-media {
        height: 165px;
    }
}

@media (max-width: 576px) {
    #vehiclesListBooking .vehicle-card-media {
        height: 155px;
    }

    #vehiclesListBooking .vehicle-card-footer {
        flex-direction: row;
        align-items: center;
    }
}

.submit-booking-button {
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-booking-button:hover {
    transform: translateY(-1px);
}

.booking-summary-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    height: fit-content;
}

.summary-badge {
    background: rgba(13, 110, 253, 0.12);
    color: #0d6efd;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.summary-section-label {
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.summary-list {
    display: grid;
    gap: 0.15rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.summary-item--last {
    border-bottom: none;
}

.summary-label {
    color: #64748b;
    font-size: 0.94rem;
}

.summary-value {
    color: #111827;
    font-weight: 600;
    text-align: right;
    font-size: 0.95rem;
    line-height: 1.45;
}

.summary-value-multiline {
    white-space: pre-line;
}

.summary-total-box {
    margin-top: 1rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.summary-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
}

.summary-total-title {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
}

.summary-total-value {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
}

.summary-help-text {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .booking-main-column {
        flex: 0 0 65%;
        max-width: 65%;
    }

    .booking-summary-column {
        flex: 0 0 35%;
        max-width: 35%;
        align-self: stretch;
        height: auto;
    }

    .booking-summary-card {
        position: sticky;
        top: var(--booking-summary-top, 140px);
        z-index: 10;
        transition: top 0.2s ease;
    }
}

@media (max-width: 991.98px) {
    .booking-summary-card {
        position: static !important;
        top: auto !important;
    }

    .booking-main-column,
    .booking-summary-column {
        flex: 0 0 100%;
        max-width: 100%;
        align-self: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .booking-page {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-header {
        text-align: center;
    }

    .booking-card .card-body,
    .booking-summary-card .card-body {
        padding: 1.3rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-value {
        width: 100%;
        text-align: left;
    }

    .location-action-row {
        flex-direction: column;
    }

    .trip-type-toggle {
        grid-template-columns: 1fr;
    }
}

.location-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-top: 8px;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    max-height: 280px;
    overflow-y: auto;
    animation: dropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.autocomplete-item {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease, color 0.15s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #eff6ff;
}

.autocomplete-item.active .autocomplete-title {
    color: #075985;
}

.autocomplete-icon {
    font-size: 18px;
    color: #0ea5e9;
    flex-shrink: 0;
}

.autocomplete-text {
    overflow: hidden;
}

.autocomplete-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-subtitle {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-status-item {
    padding: 14px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

@media (max-width: 576px) {
    .booking-page {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .submit-booking-button {
        width: 100%;
    }
}

.pickup-live-status {
    min-height: 44px;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pickup-live-error {
    min-height: 1.25rem;
}

.booking-method-group #pickupMethodSearch,
.booking-method-group #pickupMethodLive {
    border-radius: 0.95rem;
}

.booking-method-group #pickupMethodSearch.active,
.booking-method-group #pickupMethodLive.active {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

/* Dynamic Category Filter Pills */
.category-filter-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.95rem;
    padding: 0.75rem 1rem;
}

.category-filter-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.category-filter-pills::-webkit-scrollbar {
    height: 4px;
}

.category-filter-pills::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.category-pill {
    white-space: nowrap;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    flex-shrink: 0;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #334155;
    cursor: pointer;
}

.category-pill:hover {
    border-color: #93c5fd;
    background-color: #eff6ff;
    color: #1d4ed8;
}

.category-pill.active {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22);
}

/* Compact Booking Summary Styles */
@media (min-width: 1024px) {
    .booking-main-column {
        flex: 1 1 0% !important;
        width: auto !important;
        max-width: none !important;
    }

    .booking-summary-column {
        flex: 0 0 340px !important;
        width: 340px !important;
        max-width: 340px !important;
        align-self: stretch;
        height: auto;
    }

    .booking-summary-card {
        display: flex !important;
        flex-direction: column !important;
        max-height: calc(100vh - 56px - 88px - 32px) !important; /* 56px banner + 88px navbar + 32px buffer */
        position: sticky !important;
        top: calc(56px + 88px + 16px) !important; /* 56px banner + 88px navbar + 16px margin */
        z-index: 100 !important;
    }

    .booking-summary-card .card-body {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        overflow: hidden !important;
        min-height: 0 !important;
    }

    .booking-summary-card .summary-list {
        overflow-y: auto !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        padding-right: 4px !important;
    }

    .booking-summary-card .summary-list::-webkit-scrollbar {
        width: 4px !important;
    }

    .booking-summary-card .summary-list::-webkit-scrollbar-thumb {
        background-color: #cbd5e1 !important;
        border-radius: 4px !important;
    }

    .booking-summary-card .summary-list::-webkit-scrollbar-track {
        background-color: transparent !important;
    }
}

/* Force stacked layout on Tablet & Mobile (below 1024px) */
@media (max-width: 1023.98px) {
    .booking-main-column,
    .booking-summary-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        align-self: auto !important;
        height: auto !important;
    }

    .booking-summary-card {
        position: static !important;
        max-height: none !important;
        top: auto !important;
        z-index: auto !important;
    }

    .booking-summary-card .card-body {
        display: block !important;
        overflow: visible !important;
    }

    .booking-summary-card .summary-list {
        overflow-y: visible !important;
        max-height: none !important;
    }
}

/* Ensure Header & Navbar stay on top of sticky card */
.navbar {
    z-index: 9000 !important;
}

.announcement-bar {
    z-index: 99999 !important;
}

.booking-summary-card .card-header {
    padding: 0.9rem 1rem 0.1rem !important;
}

.booking-summary-card .card-body {
    padding: 0.9rem 1rem 1rem !important;
}

.booking-summary-card .section-badge--sm {
    width: 1.8rem !important;
    height: 1.8rem !important;
    font-size: 0.8rem !important;
}

.booking-summary-card .summary-section-label {
    font-size: 0.65rem !important;
    margin-bottom: 0.05rem !important;
}

.booking-summary-card h5 {
    font-size: 1.05rem !important;
}

.booking-summary-card .summary-badge {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.72rem !important;
}

.booking-summary-card .summary-item {
    padding: 0.45rem 0 !important;
}

.booking-summary-card .summary-label {
    font-size: 0.86rem !important;
}

.booking-summary-card .summary-value {
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
}

.booking-summary-card .summary-total-box {
    margin-top: 0.75rem !important;
    padding: 0.85rem 0.9rem !important;
}

.booking-summary-card .summary-total-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 0.25rem !important;
    gap: 0.5rem !important;
}

.booking-summary-card .summary-total-title {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.booking-summary-card .summary-total-value {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    text-align: right !important;
    flex-grow: 1 !important;
    display: inline-flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.booking-summary-card .summary-total-value span {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
}

.booking-summary-card .summary-help-text {
    font-size: 0.76rem !important;
    text-align: left !important;
    margin-top: 0.35rem !important;
    display: block !important;
}

.booking-summary-card .summary-estimate-notice {
    font-size: 0.74rem !important;
    text-align: left !important;
    margin-top: 0.5rem !important;
}

.booking-summary-card .submit-booking-button {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
}

/* Mobile Sticky Bottom Bar Styles */
@media (max-width: 1023.98px) {
    .mobile-sticky-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12) !important;
        border-top: 1px solid #e2e8f0 !important;
        z-index: 1040 !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: block !important;
    }

    .mobile-sticky-bar.show {
        transform: translateY(0) !important;
    }

    /* Narrow Mobile Layout (< 450px) */
    @media (max-width: 449.98px) {
        .mobile-sticky-bar-grid {
            display: grid !important;
            grid-template-columns: 1fr auto !important;
            grid-template-rows: auto auto !important;
            align-items: center !important;
            row-gap: 6px !important;
            column-gap: 8px !important;
        }

        .mobile-sticky-label {
            grid-column: 1 !important;
            grid-row: 1 !important;
            font-size: 0.72rem !important;
            color: #64748b !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            font-weight: 700 !important;
            white-space: nowrap !important;
        }

        .mobile-sticky-button {
            grid-column: 2 !important;
            grid-row: 1 !important;
            font-size: 0.85rem !important;
            padding: 0.45rem 1rem !important;
            flex-shrink: 0 !important;
            white-space: nowrap !important;
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2) !important;
        }

        .mobile-sticky-details {
            grid-column: 1 / span 2 !important;
            grid-row: 2 !important;
            display: flex !important;
            align-items: center !important;
            gap: 6px !important;
            min-width: 0 !important;
            width: 100% !important;
            overflow: hidden !important;
        }

        .mobile-sticky-name {
            font-size: 0.88rem !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            max-width: 60% !important;
        }

        .mobile-sticky-separator {
            display: inline !important;
            color: #cbd5e1 !important;
            font-size: 0.85rem !important;
        }

        .mobile-sticky-price {
            font-size: 0.82rem !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            flex-grow: 1 !important;
        }
    }

    /* Wide Mobile / Tablet Layout (450px to 1023.98px) */
    @media (min-width: 450px) {
        .mobile-sticky-bar-grid {
            display: grid !important;
            grid-template-columns: 1fr auto !important;
            grid-template-rows: auto auto !important;
            align-items: center !important;
            column-gap: 16px !important;
            row-gap: 2px !important;
        }

        .mobile-sticky-label {
            grid-column: 1 !important;
            grid-row: 1 !important;
            font-size: 0.72rem !important;
            color: #64748b !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            font-weight: 700 !important;
            white-space: nowrap !important;
        }

        .mobile-sticky-button {
            grid-column: 2 !important;
            grid-row: 1 / span 2 !important;
            font-size: 0.9rem !important;
            padding: 0.55rem 1.3rem !important;
            flex-shrink: 0 !important;
            white-space: nowrap !important;
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2) !important;
        }

        .mobile-sticky-details {
            grid-column: 1 !important;
            grid-row: 2 !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            min-width: 0 !important;
        }

        .mobile-sticky-name {
            font-size: 0.92rem !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            width: 100% !important;
        }

        .mobile-sticky-separator {
            display: none !important;
        }

        .mobile-sticky-price {
            font-size: 0.82rem !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            width: 100% !important;
        }
    }

    #mobileStickyVehiclePrice span,
    #mobileStickyVehiclePrice .text-warning,
    #mobileStickyVehiclePrice .text-primary {
        font-size: inherit !important;
        font-weight: 700 !important;
    }

    /* Add bottom padding to body so page content is not hidden by sticky bar */
    body.has-mobile-sticky-bar {
        padding-bottom: 90px !important;
    }
}

.submit-booking-button-container {
    display: block !important;
    width: 100% !important;
}

@media (min-width: 1024px) {
    .mobile-sticky-bar {
        display: none !important;
    }
}

/* ==========================================================================
   3-STEP BOOKING WIZARD STYLES
   ========================================================================== */
.booking-wizard-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.25rem;
    padding: 1.1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: default;
    user-select: none;
    transition: all 0.25s ease;
}

.wizard-step-circle {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.wizard-step .step-check {
    display: none;
    font-size: 1.1rem;
}

.wizard-step-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #64748b;
    transition: color 0.2s ease;
}

.wizard-step.active .wizard-step-circle {
    background: linear-gradient(135deg, #0d6efd, #2563eb);
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transform: scale(1.05);
}

.wizard-step.active .wizard-step-label {
    color: #0f172a;
    font-weight: 700;
}

.wizard-step.completed .wizard-step-circle {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.wizard-step.completed .step-num {
    display: none;
}

.wizard-step.completed .step-check {
    display: inline-block;
}

.wizard-step.completed .wizard-step-label {
    color: #0f172a;
}

.wizard-step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 1rem;
    transition: background 0.3s ease;
}

.wizard-step-line.completed {
    background: #10b981;
}

.wizard-step-pane {
    animation: fadeInWizardStep 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInWizardStep {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-wizard-nav {
    min-height: 48px;
    border-radius: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-wizard-next {
    background: linear-gradient(135deg, #0d6efd, #2563eb);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.25);
}

.btn-wizard-next:hover {
    background: linear-gradient(135deg, #0b5ed7, #1d4ed8);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
}

.btn-wizard-back {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
}

.btn-wizard-back:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.btn-wizard-skip {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
}

.btn-wizard-skip:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}

/* Step 2 Sticky Accessible Navigation Bar */
.step2-sticky-nav {
    position: sticky;
    bottom: 0.75rem;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 1.15rem;
    padding: 0.85rem 1.15rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.05);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.step2-sticky-nav .step2-nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

#vehiclesListBooking {
    padding-bottom: 1.5rem;
}

/* Category Filter Pills */
.category-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
}

.category-filter-pills::-webkit-scrollbar {
    height: 4px;
}

.category-filter-pills::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

/* Summary Toggle Button (Mobile) */
.summary-toggle-btn {
    width: 2rem;
    height: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.summary-toggle-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

@media (max-width: 768px) {
    .booking-wizard-steps {
        padding: 0.85rem 1rem;
        border-radius: 1rem;
    }

    .wizard-step-circle {
        width: 2rem;
        height: 2rem;
        font-size: 0.85rem;
    }

    .wizard-step-label {
        font-size: 0.78rem;
    }

    .wizard-step-line {
        margin: 0 0.5rem;
    }

    .wizard-nav-row:not(.step2-sticky-nav) {
        flex-direction: column-reverse;
        width: 100%;
    }

    .wizard-nav-row:not(.step2-sticky-nav) .btn-wizard-nav {
        width: 100%;
    }

    /* Step 2 Sticky Navigation Bar for Mobile */
    .step2-sticky-nav {
        padding: 0.65rem 0.85rem;
        border-radius: 1rem;
        bottom: 0.5rem;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        gap: 0.45rem;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    }

    .step2-sticky-nav .btn-wizard-back {
        min-height: 44px;
        padding: 0.55rem 0.75rem;
        font-size: 0.85rem;
        flex-shrink: 0;
        width: auto !important;
    }

    .step2-sticky-nav .step2-nav-buttons {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .step2-sticky-nav .btn-wizard-skip {
        min-height: 44px;
        padding: 0.55rem 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
        flex: 1 1 auto;
        text-align: center;
        width: auto !important;
    }

    .step2-sticky-nav .btn-wizard-next {
        min-height: 44px;
        padding: 0.55rem 0.85rem;
        font-size: 0.85rem;
        white-space: nowrap;
        flex: 1 1 auto;
        text-align: center;
        width: auto !important;
    }
}
