/* ========================================
   VEHICLES PAGE — DEDICATED STYLES
   ======================================== */

/* PAGE LAYOUT */
.vp-layout {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-height: calc(100vh - 70px);
    background: #f3f6fa;
}

/* ========================================
   LEFT SIDEBAR
   ======================================== */
.vp-sidebar {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    padding: 16px 12px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 62px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    box-sizing: border-box;
}

.vp-sidebar::-webkit-scrollbar {
    width: 4px;
}
.vp-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Hide Filters button */
.vf-hide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #fff;
    border: 1.5px solid #3B82F6;
    border-radius: 24px;
    color: #3B82F6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 4px;
}
.vf-hide-btn:hover {
    background: rgba(59,130,246,0.06);
}

/* Filter Panel */
.vf-panel {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.vf-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: #f3f6fa;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.vf-panel-header:hover {
    background: #eaf0fb;
}

.vf-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
}

.vf-chevron {
    color: #3B82F6;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.vf-panel.collapsed .vf-chevron {
    transform: rotate(-90deg);
}

.vf-panel-body {
    padding: 14px 16px 12px;
    overflow: hidden;
    max-height: 500px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.vf-panel.collapsed .vf-panel-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Location block */
.vf-location-label {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.vf-location-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.vf-location-input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #1e293b;
    background: transparent;
    width: 100%;
    font-weight: 500;
}

.vf-pickup-dropoff-label {
    font-size: 13px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 8px;
}

.vf-date-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 14px;
    cursor: pointer;
}

.vf-date-display span {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.vf-search-btn {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #3B82F6, #2563eb);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}
.vf-search-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59,130,246,0.4);
}

/* Check Availability button — appears after dates selected */
.vf-check-btn {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
    animation: vfCheckPulse 1.5s ease-in-out;
}
.vf-check-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(34,197,94,0.4);
}
@keyframes vfCheckPulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

/* Checkbox grid (2 columns) */
.vf-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
    margin-bottom: 10px;
}

/* Checkbox row */
.vf-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #1e293b;
    cursor: pointer;
    line-height: 1.3;
}

.vf-checkbox-row input[type="checkbox"] {
    display: none;
}

.vf-custom-checkbox {
    width: 17px;
    height: 17px;
    min-width: 17px;
    border: 1.8px solid #b0bec5;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    position: relative;
}

.vf-checkbox-row input[type="checkbox"]:checked + .vf-custom-checkbox {
    background: #3B82F6;
    border-color: #3B82F6;
}

.vf-checkbox-row input[type="checkbox"]:checked + .vf-custom-checkbox::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

.vf-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 10px 0 8px;
}

.vf-check-all {
    background: none;
    border: none;
    color: #3B82F6;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.vf-check-all:hover {
    color: #1d4ed8;
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */
.vp-main {
    flex: 1;
    min-width: 0;
    padding: 24px 24px 48px;
}

/* Top bar */
.vp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.vp-count-badge {
    background: #3B82F6;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
}

.vp-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vp-search-input {
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    width: 180px;
    transition: border-color 0.2s;
    background: #fff;
}
.vp-search-input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.vp-year-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.vp-year-btn {
    padding: 5px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}
.vp-year-btn:hover,
.vp-year-btn.active {
    background: #3B82F6;
    color: #fff;
    border-color: #3B82F6;
}

.vp-sort-select {
    padding: 7px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.vp-sort-select:focus {
    border-color: #3B82F6;
}

/* ========================================
   VEHICLE CARDS GRID
   ======================================== */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.vc-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.vc-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

.vc-image-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

.vc-card {
    position: relative;
}
.vc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.vc-card:hover .vc-image-wrap img {
    transform: scale(1.04);
}

.vc-year-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.3px;
}

.vc-new-badge {
    position: absolute;
    top: 10px;
    left: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
    animation: vcNewPulse 2s ease-in-out infinite;
}

@keyframes vcNewPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.vc-partner-name {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 6px;
    font-style: italic;
}

.vc-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    color: #94a3b8;
    font-size: 15px;
}
.vc-fav-btn:hover {
    background: #fff;
    color: #ef4444;
}

.vc-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vc-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 8px;
}

.vc-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vc-category-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.vc-category-tag.economy  { background: #dbeafe; color: #1d4ed8; }
.vc-category-tag.standard { background: #dcfce7; color: #15803d; }
.vc-category-tag.suv      { background: #fef9c3; color: #854d0e; }
.vc-category-tag.luxury   { background: #fce7f3; color: #9d174d; }
.vc-category-tag.minivan  { background: #ede9fe; color: #6d28d9; }
.vc-category-tag.convertible { background: #ffedd5; color: #c2410c; }

/* Specs row */
.vc-specs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 10px;
    flex-wrap: wrap;
}

.vc-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.vc-spec svg {
    color: #3B82F6;
    flex-shrink: 0;
}

/* Price section */
.vc-price-section {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.vc-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.vc-price-label {
    font-size: 11px;
    color: #94a3b8;
}

.vc-price-original {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

.vc-price-current {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
}

.vc-price-unit {
    font-size: 12px;
    color: #64748b;
}

.vc-total-price {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.vc-total-price span {
    font-weight: 700;
    color: #1e293b;
}

.vc-book-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #3B82F6, #2563eb);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 3px 10px rgba(59,130,246,0.25);
    margin-bottom: 6px;
}
.vc-book-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(59,130,246,0.35);
}

.vc-pay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.vc-pay-amount {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

/* ========================================
   MOBILE TOGGLE BUTTON
   ======================================== */
.vp-filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #3B82F6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
}

/* ========================================
   FOOTER (vehicles page)
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #3B82F6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
}
.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Sidebar hidden state (desktop hide-filters button) */
.vp-sidebar.hidden {
    display: none;
}
.vp-layout.sidebar-hidden .vp-main {
    padding-left: 32px;
}

/* Show Filters button (appears when sidebar is hidden) */
.vp-show-filters-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #fff;
    border: 1.5px solid #3B82F6;
    border-radius: 24px;
    color: #3B82F6;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s;
}
.vp-show-filters-btn:hover {
    background: rgba(59,130,246,0.06);
}
.vp-show-filters-btn svg {
    color: #3B82F6;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .vp-sidebar {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
    }
    .vp-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .vp-layout {
        flex-direction: column;
    }
    .vp-sidebar {
        width: 100%;
        min-width: unset;
        position: static;
        height: auto;
        display: none;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .vp-sidebar.open {
        display: flex;
    }
    .vp-filter-toggle-btn {
        display: flex;
    }
    .vp-main {
        padding: 16px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vp-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VEHICLES CALENDAR (Same as Home Page)
   ======================================== */
.vf-date-display.clickable {
    cursor: pointer;
    transition: all 0.2s;
}

.vf-date-display.clickable:hover {
    background: #f8fafc;
    border-color: #3B82F6;
}

/* Calendar Modal Styles (Same as Home Page) */
.calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.calendar-modal.active {
    display: flex;
}

.calendar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.calendar-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.month-year-selector {
    display: flex;
    gap: 12px;
    align-items: center;
}

.month-year-selector select {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.calendar-body {
    display: flex;
    padding: 24px;
    gap: 24px;
}

.month-calendar {
    flex: 1;
}

.month-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    padding: 8px 4px;
}

.day {
    aspect-ratio: 1;
    border: 1px solid #e2e8f0;
    background: white;
    color: #1e293b;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 6px;
}

.day:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.day.past,
.day.disabled {
    color: #cbd5e1;
    background: #f8fafc;
    cursor: not-allowed;
}

.day.today {
    border-color: #3B82F6;
    font-weight: 700;
}

.day.selected {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.day.selected.start {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.day.selected.end {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}

.day.in-range {
    background: #dbeafe;
    border-color: #93c5fd;
}

.time-selectors {
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.time-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.time-group:last-child {
    margin-bottom: 0;
}

.time-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    min-width: 100px;
}

.time-inputs {
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-select {
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    background: white;
}

.calendar-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
}

.btn-cancel {
    padding: 10px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-apply {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #3B82F6;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-apply:hover {
    background: #2563eb;
}

/* Favorites Button */
.vc-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1;
}

.vc-fav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.vc-fav-btn.active {
    color: #ef4444;
    background: rgba(255, 255, 255, 1);
}

/* ========================================
   BOOKING MODAL
   ======================================== */
.bk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.bk-modal {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.bk-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: none; background: #f1f5f9;
    border-radius: 50%; cursor: pointer;
    font-size: 14px; color: #64748b;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.bk-close:hover { background: #e2e8f0; }
.bk-title {
    font-size: 22px; font-weight: 700;
    color: #1e293b; margin: 0 0 20px 0;
}
.bk-vehicle-row {
    display: flex; gap: 14px; align-items: center;
    background: #f8fafc; border-radius: 12px;
    padding: 14px; margin-bottom: 20px;
}
.bk-vehicle-img {
    width: 90px; height: 64px;
    object-fit: cover; border-radius: 8px;
    flex-shrink: 0;
}
.bk-vehicle-name {
    font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: 4px;
}
.bk-vehicle-meta { font-size: 13px; color: #64748b; }
.bk-dates-row {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; flex-wrap: wrap;
}
.bk-date-box {
    flex: 1; min-width: 90px;
    background: #f0f9ff; border: 1px solid #bae6fd;
    border-radius: 10px; padding: 10px 14px;
}
.bk-days-box { background: #fef9c3; border-color: #fde68a; }
.bk-date-label { font-size: 11px; color: #64748b; text-transform: uppercase; font-weight: 600; margin-bottom: 3px; }
.bk-date-val { font-size: 15px; font-weight: 700; color: #1e293b; }
.bk-price-row {
    display: flex; justify-content: space-between; align-items: center;
    background: #f0fdf4; border: 1px solid #86efac;
    border-radius: 12px; padding: 14px 18px;
    margin-bottom: 20px;
}
.bk-price-label { font-size: 15px; color: #166534; font-weight: 600; }
.bk-price-total { font-size: 24px; font-weight: 800; color: #15803d; }
.bk-field-group { margin-bottom: 14px; }
.bk-label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.bk-input {
    width: 100%; padding: 10px 14px;
    border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; color: #1e293b;
    box-sizing: border-box; outline: none;
    transition: border-color 0.2s;
}
.bk-input:focus { border-color: #3B82F6; }
.bk-textarea { min-height: 72px; resize: vertical; }
.bk-error {
    background: #fef2f2; border: 1px solid #fecaca;
    color: #dc2626; border-radius: 8px;
    padding: 10px 14px; font-size: 14px;
    margin-bottom: 14px;
}
.bk-submit-btn {
    width: 100%; padding: 14px;
    background: #3B82F6; color: #fff;
    border: none; border-radius: 10px;
    font-size: 16px; font-weight: 700;
    cursor: pointer; transition: background 0.2s;
    margin-bottom: 10px;
}
.bk-submit-btn:hover { background: #2563eb; }
.bk-submit-btn:disabled { background: #93c5fd; cursor: not-allowed; }
.bk-cancel-btn {
    width: 100%; padding: 12px;
    background: #f1f5f9; color: #374151;
    border: none; border-radius: 10px;
    font-size: 15px; cursor: pointer;
    transition: background 0.2s;
}
.bk-cancel-btn:hover { background: #e2e8f0; }
.bk-note { font-size: 12px; color: #94a3b8; text-align: center; margin: 0; }
.bk-success-modal { text-align: center; }
.bk-success-icon {
    width: 72px; height: 72px;
    background: #dcfce7; color: #16a34a;
    border-radius: 50%; font-size: 32px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.bk-success-msg { color: #374151; font-size: 15px; line-height: 1.6; margin-bottom: 24px; }

/* ========================================
   PRICE RANGE SLIDER
   ======================================== */
.vf-price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.vf-range-wrap {
    position: relative;
    height: 20px;
    margin-bottom: 14px;
}

.vf-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    transform: translateY(-50%);
    pointer-events: none;
}

.vf-range-fill {
    position: absolute;
    height: 100%;
    background: #3B82F6;
    border-radius: 4px;
}

.vf-range {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}
.vf-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #3B82F6;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(59,130,246,0.4);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s;
}
.vf-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.vf-range::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #3B82F6;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(59,130,246,0.4);
    cursor: pointer;
    pointer-events: all;
}

.vf-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vf-price-dash { color: #94a3b8; font-size: 14px; }
.vf-price-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 10px;
    flex: 1;
    background: #f8fafc;
    gap: 4px;
    font-size: 13px;
    color: #64748b;
}
.vf-price-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    outline: none;
}
.vf-price-input::-webkit-outer-spin-button,
.vf-price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ========================================
   MOBILE SIDEBAR DRAWER
   ======================================== */
.vp-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
}
.vp-sidebar-overlay.open { display: block; }

.vp-filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid #3B82F6;
    border-radius: 24px;
    color: #3B82F6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}
.vp-filter-toggle-btn:hover { background: rgba(59,130,246,0.06); }

.vp-show-filters-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #3B82F6;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}
.vp-show-filters-btn:hover { background: #2563eb; }

/* ========================================
   RESPONSIVE — VEHICLES PAGE
   ======================================== */
@media (max-width: 900px) {
    .vp-layout { flex-direction: column; }

    .vp-sidebar {
        position: fixed;
        top: 0; left: -100%;
        width: 300px;
        height: 100%;
        z-index: 501;
        transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
        border-right: none;
        box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    }
    .vp-sidebar.open { left: 0; }
    .vp-sidebar.hidden { left: -100%; }

    .vf-hide-btn { display: flex; }
    .vp-filter-toggle-btn { display: flex; }
    .vp-show-filters-btn { display: none !important; }

    .vp-main { width: 100%; min-height: auto; }

    .vp-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px;
    }
    .vp-topbar-right {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }
    .vp-search-input { width: 100%; }
    .vp-year-filter { flex-wrap: wrap; }
    .vp-sort-select { width: 100%; }

    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 12px 24px;
        gap: 12px;
    }
}

@media (max-width: 540px) {
    .vp-grid { grid-template-columns: 1fr; }
    .vp-year-filter .vp-year-btn { font-size: 11px; padding: 5px 8px; }
}

/* Loading skeleton for vehicle cards */
.vc-skeleton {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.vc-skeleton-img {
    width: 100%; height: 200px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s infinite;
}
.vc-skeleton-body { padding: 16px; }
.vc-skeleton-line {
    height: 14px; border-radius: 6px; margin-bottom: 10px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s infinite;
}
.vc-skeleton-line.short { width: 60%; }
.vc-skeleton-line.btn { height: 40px; border-radius: 8px; margin-top: 16px; }
@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
