/*
Theme Name: WashCar
Theme URI: https://washcar.com
Author: 1portal | Development Team | kiani
Author URI: https://washcar.com
Description: تم داینامیک وردپرس برای سیستم رزرو کارواش
Version: 1.0.0
Text Domain: washcar-th
*/

:root {
    --font-family: IRANSansX;
    --bg-color: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    /* Lighter Primary Color as requested */
    --primary: #38bdf8; /* Lighter than #0ea5e9 */
    --primary-dark: #0ea5e9;
    --primary-light: #e0f2fe;

    --surface: #f8fafc;
    --border: #f1f5f9;
    --white: #ffffff;
    --black: #0f172a;

    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.75rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}


@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 100;
    src: url('assets/fonts/woff/IRANSansXFaNum-Thin.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Thin.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 200;
    src: url('assets/fonts/woff/IRANSansXFaNum-UltraLight.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-UltraLight.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/woff/IRANSansXFaNum-Light.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Light.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/woff/IRANSansXFaNum-Medium.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Medium.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/woff/IRANSansXFaNum-DemiBold.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-DemiBold.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 800;
    src: url('assets/fonts/woff/IRANSansXFaNum-ExtraBold.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 900;
    src: url('assets/fonts/woff/IRANSansXFaNum-Black.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Black.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 950;
    src: url('assets/fonts/woff/IRANSansXFaNum-ExtraBlack.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-ExtraBlack.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 1000;
    src: url('assets/fonts/woff/IRANSansXFaNum-Heavy.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Heavy.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: bold;
    src: url('assets/fonts/woff/IRANSansXFaNum-Bold.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Bold.woff2') format('woff2');
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: normal;
    src: url('assets/fonts/woff/IRANSansXFaNum-Regular.woff') format('woff'),
    url('assets/fonts/woff2/IRANSansXFaNum-Regular.woff2') format('woff2');
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

/* iOS-like smooth scrolling */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

body {
    font-family: IRANSansX;
    /*background-color:#fff!important;*/
    /*color: var(--text-primary);*/
    /*line-height: 1.5;*/
    padding-bottom: 80px; /* Space for nav */
    /* iOS-like smooth scrolling */
    /*-webkit-overflow-scrolling: touch;*/
    /*overflow-y: auto;*/
    /*overflow-x: hidden;*/
    /*position: relative;*/
}

/* Global Notification (Toast) */
.washcar-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100000;
    min-width: 260px;
    max-width: 90%;
    opacity: 0;
    transition: all 0.3s ease-out;
    border-right: 4px solid #2271b1;
}

.washcar-notification.show {
    top: 20px;
    opacity: 1;
}

.washcar-notification-error {
    border-right-color: #d63638;
}

.washcar-notification-success {
    border-right-color: #00a32a;
}

.washcar-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.washcar-notification-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.washcar-notification-message {
    flex: 1;
    font-size: 14px;
    color: #1d2327;
    line-height: 1.5;
}

.washcar-notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #646970;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.washcar-notification-close:hover {
    color: #1d2327;
}

@media (max-width: 768px) {
    .washcar-notification {
        left: 10px;
        right: 10px;
        transform: none;
        max-width: none;
    }
}

/* Utilities */
/*.app-container {*/
/*    max-width: 480px;*/
/*    -webkit-overflow-scrolling: touch;*/
/*    overflow-y: visible;*/
/*    overflow-x: hidden;*/
/*    margin: 0 auto;*/
/*    background: var(--white);*/
/*    min-height: 100vh;*/
/*    position: relative;*/
/*}*/

.hidden {
    display: none !important;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 8px 1.2rem;
    border-bottom: 1px solid var(--border);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--surface);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
}

.page-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.location-text .label {
    font-size: 0.625rem;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.location-text .value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

.notification-btn,
.support-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}


.support-btn i {
    width: 20px;
    height: 20px;
}

.notification-btn .badge {
    position: absolute;
    top: 0.625rem;
    right: 0.75rem;
    width: 0.375rem;
    height: 0.375rem;
    background: #ef4444;
    border-radius: 50%;
}

/* Search */
.search-container {
    display: flex;
    gap: 0.75rem;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    background: var(--surface);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.875rem 2.75rem 0.875rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--text-muted);
}

.filter-btn {
    width: 3rem;
    background: rgba(15, 23, 42, 0.9);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Categories */
.categories {
    padding: 0.5rem 0 1rem;
}

.categories-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0 1.5rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
}

.categories-scroll:active {
    cursor: grabbing;
}

/* Hide scrollbar on mobile, show on desktop */
@media (max-width: 768px) {
    .categories-scroll {
        scrollbar-width: none;
    }
    
    .categories-scroll::-webkit-scrollbar {
        display: none;
    }
}

/* Show subtle scrollbar on desktop */
@media (min-width: 769px) {
    .categories-scroll::-webkit-scrollbar {
        height: 6px;
        display: block;
    }
    
    .categories-scroll::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 10px;
    }
    
    .categories-scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    .categories-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.3);
    }
}

.category-pill {
    white-space: nowrap;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.category-pill.active {
    background: rgba(15, 23, 42, 0.9);
    color: var(--white);
    transform: scale(1.05);
}

.category-pill:not(.active) {
    background: var(--surface);
    color: var(--text-secondary);
}

/* Banner */
.banner-section {
    padding: 0 1.5rem 1rem;
}

.banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f1ff 100%);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.banner-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.banner-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.banner h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.banner-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.banner-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.banner-btn:active {
    transform: translateY(0);
}

/* Discount Modal */
.discount-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.discount-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.discount-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.discount-modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.discount-modal-close:hover {
    background: var(--surface);
    color: var(--text-primary);
}

.discount-code-box {
    text-align: center;
    padding: 1.5rem 0;
}

.discount-code-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.discount-code-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    padding: 0.75rem;
    background: var(--primary-light);
    border-radius: 0.5rem;
    border: 2px dashed var(--primary);
}

.discount-copy-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}


.discount-copy-btn:active {
    transform: translateY(0);
}

.discount-copy-btn.copied {
    background: #10b981;
}

.discount-code-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Maps Modal */
.maps-modal-box {
    padding: 1rem 0;
}

.maps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.map-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.map-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(-2px);
}

.map-item:active {
    transform: translateX(0);
}

.map-item span {
    flex: 1;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Maps Button */
.maps-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.maps-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1;
}

.maps-btn {
    position: relative;
}


/* List */
.list-section {
    padding: 0 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
}

.see-all {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;

}

.carwash-list {
    display: grid;
    gap: 1.5rem;
}

.carwash-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--border);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.star-icon {
    width: 0.75rem;
    height: 0.75rem;
    fill: #eab308;
    color: #eab308;
}

.card-content {
    padding: 0 1rem 1rem;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-address {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.book-btn {
   background: #45c5ff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

p, span, .vehicle-price,input {
    font-family: IRANSansX;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 400px;
    background: var(--primary-dark);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 18px 18px 0 0;
    padding: 0.55rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08), 0 4px 16px 0 rgba(0, 0, 0, 0.04);
    width: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.625rem;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: #ffffff;
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-item.active svg {
    transform: scale(1.1);
}

/* Details Page */
.hero-image {
    height: 18rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: none !important;
}

.hero-image.scrolled {
    height: 18rem !important;
}

#hero-image-container {
    transition: none !important;
}

#hero-image-container.scrolled {
    height: 18rem !important;
    transition: none !important;
}

.hero-image.scrolled .gallery-prev,
.hero-image.scrolled .gallery-next {
    opacity: 1;
    pointer-events: auto;
    transition: none !important;
}

.hero-image.scrolled .hero-overlay {
    opacity: 1;
    transition: none !important;
}

.hero-image img,
.hero-image .gallery-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none;
}

.hero-image.scrolled img,
.hero-image.scrolled .gallery-slide {
    object-position: center top;
}

.hero-image.scrolled .vip-badge {
    transition: none !important;
}

.hero-image.scrolled .back-btn {
    transition: none !important;
}

.hero-image.scrolled .back-btn i {
    transition: none !important;
}

/* Vehicle Type Selection */
.vehicle-type-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: #f9f9ffdb !important;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: right;
    width: 100%;
}


.vehicle-type-btn:hover {
    background: #f7f7fc !important;

    transform: translateY(-1px);
}

.vehicle-type-btn:active {
    transform: translateY(0);
}

.vehicle-type-btn.selected {
    background: #f0f7fc !important;

    border: 1px solid #dfedf6 !important;
}

.vehicle-type-btn.selected .vehicle-name {
    color: #155dfc !important;
    font-weight: 700 !important;
}

.vehicle-type-btn.selected .vehicle-price {
    color: #155dfc !important;
    font-size: 1rem !important;
}

.hero-image img,
.hero-image .gallery-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}
.feature-duration{
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.details-content {
    padding: 0 1.25rem;
    padding-bottom: 10px; /* Space for sticky footer */
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}


.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.primary-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Booking Page */
.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.date-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin: 0 -1.25rem;
    padding: 0 1.25rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
}

.date-scroll:active {
    cursor: grabbing;
}

/* Hide scrollbar on mobile, show on desktop */
@media (max-width: 768px) {
    .date-scroll {
        scrollbar-width: none;
    }
    
    .date-scroll::-webkit-scrollbar {
        display: none;
    }
}

/* Show subtle scrollbar on desktop */
@media (min-width: 769px) {
    .date-scroll::-webkit-scrollbar {
        height: 6px;
        display: block;
    }
    
    .date-scroll::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 10px;
    }
    
    .date-scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    .date-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.3);
    }
}

.date-card {
    min-width: 70px;
    height: 80px;
    border-radius: 1rem;
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--white);
    transition: all 0.2s;
}

.date-card.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    text-align: center;
    font-size: 0.875rem;
    cursor: pointer;
    background: var(--white);
    transition: all 0.2s;
}

.time-slot.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
}

.time-slot:not(.disabled):hover {
 
    border-color: var(--primary);
}

/* Tabs */
.tabs {
    background: var(--surface);
    padding: 0.25rem;
    border-radius: 1rem;
    display: flex;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    padding: 0.625rem;
    border: none;
    background: transparent;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
}

.tab-btn.active {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

/* Profile */
.profile-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.menu-list {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.menu-item:last-child {
    border-bottom: none;
}

.info-card-content {
    color: rgb(109, 117, 132);
    font-size: 0.775rem;
}

.info-card-box-one {
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    background-color: #fff;
    box-shadow: rgba(232, 234, 236, 0.1) 0px 8px 24px;
}

/* Map Icon Links Hover Effects */


.price-archive {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gallery-prev {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-next {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.chevron-right, .chevron-left {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--black);
}

.header-image-slider-top-single-page {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.vip-badge-single-page {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 3px 10px 2px 10px;
    background: #155dfc;
    color: #fff;
    border-radius: 0.75rem;
    font-size: 0.725rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-card-box-one-tile-map {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

#cw-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

.box-map {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.carwash-mobile-btn {
    text-decoration: none;
    color: inherit;
}



.carwash-mobile-btn:hover i {
    color: white;
}

.carwash-mobile-btn i {
    color: #5b5b5b;
    transition: color 0.2s ease;
}

.maps-btn {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.maps-btn svg {
    width: 18px;
    height: 18px;
}

.box-rating-single {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.675rem;
}

.rating-location-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rati-single {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rating-star-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.single-star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-info {
    display: flex;
    align-items: center;
}

.font-bold {
    font-weight: bold;
}

#cw-reviews {
    color: var(--text-muted);
}

.address-clickable {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

/* Single Carwash Page - Gallery Slide */
.gallery-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide[data-slide-index="0"] {
    opacity: 1;
    z-index: 1;
}

.gallery-slide:not([data-slide-index="0"]) {
    opacity: 0;
    z-index: 0;
}

/* Single Carwash Page - Map Pin Icon */
.address-clickable i[data-lucide="map-pin"] {
    width: 14px;
}

/* Single Carwash Page - Address Text */
#cw-address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    font-size: 12px
}


/* Single Carwash Page - Tags Container */
.carwash-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Single Carwash Page - Tag Item */
.carwash-tag-item {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    font-size: 0.75rem;
    color: var(--text);
}

/* Carwash Tabs Container */
.carwash-tabs-container {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.carwash-tabs-header {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
}

.carwash-tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.carwash-tab-btn:hover {
    color: var(--text);
}

.carwash-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.carwash-tab-content {
    display: none;
}

.carwash-tab-content.active {
    display: block;
}

/* Reviews Card */
.reviews-card {
    padding: 1.5rem;
}

.review-form-container {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.review-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.review-form-group {
    margin-bottom: 1.25rem;
}

.review-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.star-input {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.star-input i {
    width: 24px;
    height: 24px;
    color: #ddd;
    stroke-width: 2;
    fill: none;
    transition: all 0.2s ease;
}

.star-input:hover i,
.star-input.hover i {
    color: #ffc107;
    fill: #ffc107;
    transform: scale(1.1);
}

.star-input.active i,
.star-input.active svg {
    color: #ffc107 !important;
    fill: #ffc107 !important;
}

.star-input i,
.star-input svg {
    pointer-events: none;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.review-submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.45rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-submit-btn:hover {
    background: var(--primary-dark);
}

.reviews-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: box-shadow 0.3s ease;
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.review-bottom-stars {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.review-bottom-stars .review-star {
    width: 18px;
    height: 18px;
    color: #ddd;
    stroke-width: 2;
    flex-shrink: 0;
}

.review-bottom-stars .review-star-filled {
    fill: #ffc107;
    color: #ffc107;
}

.review-bottom-stars .review-star-empty {
    fill: none;
    color: #ddd;
}

.review-content-wrapper {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}



.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
    width: 100%;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    flex-shrink: 0;
    margin-top: 0;
}

.avatar-letter {
    color: #666;
    font-weight: 600;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-content {
    color: rgb(47, 50, 56);
    line-height: 1.7;
    font-size: 0.875rem;
    font-weight: 400;
    padding-right: 50px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: right;
}

/* Pagination */
.reviews-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-page {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
}

.pagination-page.active {
    font-weight: 600;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .carwash-tabs-header {
        flex-wrap: wrap;
    }
    
    .carwash-tab-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .review-header {
        gap: 0.6rem;
    }
    
    .review-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .review-bottom-stars {
        flex-direction: row;
        justify-content: flex-end;
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .review-bottom-stars .review-star {
        width: 14px;
        height: 14px;
    }
    
    .review-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .avatar-letter {
        font-size: 0.9rem;
    }
    
    .review-author-name {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.7rem;
    }
    
    .review-content {
        font-size: 0.8rem;
    }
    
    .star-input i {
        width: 20px;
        height: 20px;
    }
}

/* Single Carwash Page - Vehicle Selection Card */
.vehicle-selection-card {
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

/* Single Carwash Page - Vehicle Selection Title */
.vehicle-selection-title {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    text-align: center;
    color: #494949;
}

/* Single Carwash Page - Vehicle Selection Container */
#vehicle-selection {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

/* Single Carwash Page - Vehicle Type Button Inner */
.vehicle-type-btn-inner {
    flex: 1;
    text-align: right;
}

/* Single Carwash Page - Vehicle Name */
.vehicle-name {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

/* Single Carwash Page - Vehicle Description */
.vehicle-description {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

.vehicle-description p {
    margin: 0;
}

/* Single Carwash Page - Vehicle Duration */
.vehicle-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: #666;
    border-radius: 0.5rem;
    margin-top: 0.25rem;
}

.vehicle-duration i[data-lucide="clock"] {
    width: 10px;
    height: 10px;
}

/* Single Carwash Page - Vehicle Price Container */
.vehicle-price-container {
    text-align: left;
    min-width: 100px;
}

/* Single Carwash Page - Vehicle Price */
.vehicle-price {
    font-weight: bold;
    color: #38bdf8;
    font-size: 1rem;
    margin-bottom: 0.125rem;
    transition: all 0.3s ease;
}


/* Single Carwash Page - Sticky Footer Container */
.sticky-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Single Carwash Page - Price Label */
#price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Single Carwash Page - Base Price */
#base-price {
    font-size: 1.125rem;
    font-weight: bold;
}

/* Single Carwash Page - Price Currency */
.price-currency {
    font-size: 0.75rem;
}

/* Single Carwash Page - Booking Button in Footer */
#booking-btn {
    flex: 1;
}

/* Single Carwash Page - Maps Modal */
#maps-modal {
    display: none;
}

/* Single Carwash Page - Map Item Image */
.map-item img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

/* Single Carwash Page - Map Item Icon */
.map-item i[data-lucide="chevron-left"] {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 3px 10px 2px 10px;
    background: #155dfc;
    color: #fff;
    border-radius: 0.75rem;
    font-size: 0.725rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vehicle-duration i {
    width: 12px !important;
    height: 12px !important;
}

/* Index Page - Discount Modal */
#discount-modal {
    display: none;
}

/* Index Page - Card Image */
.card-image {
    position: relative;
}

/* Index Page - VIP Badge Overlay */
.vip-badge-overlay {
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    z-index: 10;
}

/* Index Page - VIP Badge in Card */
.carwash-card .vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: #155dfc;
    color: #fff;
    border-radius: 0.75rem;
    font-size: 0.625rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Index Page - Map Pin Icon in Card */
.card-address i[data-lucide="map-pin"] {
    width: 12px;
    height: 12px;
}

/* Booking Page Styles */
#cw-name-small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.booking-content-wrapper {
    padding: 1.5rem;
    padding-bottom: 6rem;
}

.booking-step {
    margin-bottom: 2rem;
}

/* Vehicle Info Form Styles */
.vehicle-info-form {
    padding: 1rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-hint {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Iranian Plate Number Styles */
.iranian-plate-container {
    display: flex;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    direction: ltr;
    max-width: 100%;
    margin: 0 auto;
}

.plate-blue-section {
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    position: relative;
}

.iran-flag {
    width: 100%;
    margin-bottom: 0.25rem;
}

.flag-stripes {
    display: flex;
    flex-direction: column;
    height: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.stripe {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stripe.green {
    background: #239f40;
}

.stripe.white {
    background: #ffffff;
    position: relative;
}

.stripe.red {
    background: #da0000;
}

.flag-emblem {
    font-size: 8px;
    color: #da0000;
    line-height: 1;
}

.iran-text {
    text-align: center;
    font-size: 0.65rem;
    line-height: 1.2;
}

.ir-text {
    font-weight: 600;
    font-size: 0.7rem;
}

.iran-text-en {
    font-size: 0.6rem;
    opacity: 0.9;
}

.plate-main-section {
    display: flex;
    flex: 1;
    background: #f2f2f2;
    padding: 0.2rem;
    gap: 0.1rem;
    justify-content: center;
}

.plate-segment {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plate-segment.plate-numbers {
    width: 60px;
}
.plate-segment.plate-segment--three {
    width: 75px;
}

.plate-segment.plate-letter {
    width: 65px;
    position: relative;
}

.plate-segment.plate-iran {
    width: 60px;
    flex-direction: column;
    gap: 0.25rem;
}

.plate-segment:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background: #fff;
}

.plate-input-segment {
    border: none;
    background: transparent;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: IRANSansX;
    color: #333;
    padding: 0;
    outline: none;
    direction: ltr;
}

.plate-input-segment::placeholder {
    color: #999;
    font-weight: 400;
}

.plate-segment.plate-letter select.plate-input-segment {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 0.25rem center;
    padding-left: 1.5rem;
    text-align: center;
}

.iran-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-align: center;
    margin-bottom: 0.1rem;
}

.plate-segment.plate-iran .plate-input-segment {
    font-size: 0.9rem;
}

/* Mini Plate (انتخاب از خودروهای من) – شبیه پلاک واقعی، کوچک‌تر */
.plate-mini {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    direction: ltr;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.plate-mini__blue {
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 2px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    gap: 0;
}
.plate-mini__flag {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 8px;
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 1px;
}
.plate-mini__stripe { flex: 1; min-height: 2px; }
.plate-mini__stripe--g { background: #239f40; }
.plate-mini__stripe--w { background: #fff; }
.plate-mini__stripe--r { background: #da0000; }
.plate-mini__iran-txt {
    font-size: 0.45rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.plate-mini__code {
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1;
}
.plate-mini__iran {
    font-size: 0.45rem;
    line-height: 1;
}
.plate-mini__main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 2px 4px;
    background: #f2f2f2;
}
.plate-mini__main--motor {
    gap: 4px;
}
.plate-mini__num,
.plate-mini__letter {
    font-size: 0.7rem;
    font-weight: 700;
    color: #333;
    font-family: inherit;
    line-height: 1;
}
.plate-mini__letter {
    min-width: 0.9em;
    text-align: center;
}
.plate-mini-fallback {
    font-size: 0.85rem;
    color: #64748b;
}
/* مینی‌پلاک در دراپ‌داون خودروهای من (single-carwash) */
.vehicle-selection__item-plate--mini {
    display: inline-flex;
    align-items: center;
}
.vehicle-selection__item-plate--mini .plate-mini {
    transform: scale(0.95);
}
/* مینی‌پلاک در صفحه رزرو */
.booking-vehicle-plate-mini {
    display: inline-flex;
    align-items: center;
}
.booking-vehicle-plate-mini .plate-mini {
    transform: scale(0.95);
}

/* پلاک کامل نمایشی در لیست خودروهای من – همان دیزاین Booking */
.plate-display {
    pointer-events: none;
    flex-shrink: 0;
}
.plate-display .plate-segment:focus-within {
    box-shadow: none;
    border-color: #e0e0e0;
}
.plate-display-value {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: inherit;
    color: #333;
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
    direction: ltr;
}
.plate-display .plate-segment.plate-iran .plate-display-value {
    font-size: 0.9rem;
}
.plate-display-value.motorcycle-plate-input-top,
.plate-display-value.motorcycle-plate-input-bottom {
    font-size: inherit;
    min-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plate-display-fallback {
    font-size: 0.9rem;
    color: #64748b;
}
.vehicle-selection__item-plate--full {
    display: inline-flex;
    align-items: center;
}
.booking-vehicle-plate-display {
    display: inline-flex;
    align-items: center;
}

/* پلاک فشرده در لیست خودروهای من – باکس و جزئیات کوچک‌تر */
.plate-display.plate-display--compact {
    transform: scale(0.72);
    transform-origin: left center;
}
.plate-display.plate-display--compact .plate-blue-section {
    min-width: 32px;
    padding: 0.25rem 0.4rem;
}
.plate-display.plate-display--compact .iran-flag {
    margin-bottom: 0.1rem;
}
.plate-display.plate-display--compact .flag-stripes {
    height: 12px;
}
.plate-display.plate-display--compact .flag-emblem {
    font-size: 5px;
}
.plate-display.plate-display--compact .iran-text,
.plate-display.plate-display--compact .ir-text,
.plate-display.plate-display--compact .iran-text-en {
    font-size: 0.5rem;
}
.plate-display.plate-display--compact .plate-main-section {
    padding: 0.15rem 0.25rem;
    gap: 0.08rem;
}
.plate-display.plate-display--compact .plate-segment {
    border-radius: 4px;
}
.plate-display.plate-display--compact .plate-segment.plate-numbers {
    width: 38px;
}
.plate-display.plate-display--compact .plate-segment.plate-segment--three {
    width: 46px;
}
.plate-display.plate-display--compact .plate-segment.plate-letter {
    width: 40px;
}
.plate-display.plate-display--compact .plate-segment.plate-iran {
    width: 38px;
    gap: 0.1rem;
}
.plate-display.plate-display--compact .plate-display-value {
    font-size: 0.85rem;
}
.plate-display.plate-display--compact .plate-segment.plate-iran .plate-display-value {
    font-size: 0.65rem;
}
.plate-display.plate-display--compact .iran-label {
    font-size: 0.5rem;
}
.plate-display.plate-display--compact.motorcycle-plate-container .plate-main-section {
    min-height: 50px;
    padding: 0.25rem 0.4rem;
}
.plate-display.plate-display--compact .motorcycle-plate-input-top {
    font-size: 0.9rem;
    min-height: 22px;
}
.plate-display.plate-display--compact .motorcycle-plate-input-bottom {
    font-size: 0.8rem;
    min-height: 24px;
}
.plate-display.plate-display--compact.motorcycle-plate-container .plate-blue-section {
    min-width: 32px;
}

/* Auth Form Styles */
.auth-form {
    padding: 1rem 0;
}

.auth-error-message {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    border: 1px solid #f88;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    color: #c33;
    font-size: 0.875rem;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(204, 51, 51, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.code-timer {
    font-weight: 600;
    color: var(--primary-color);
}

.secondary-btn {
    background: #f0f0f0;
    color: var(--text-primary);
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.secondary-btn:hover:not(:disabled) {
    background: #e0e0e0;
    border-color: #ccc;
}

.secondary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vehicle-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.booking-vehicle-btn {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.booking-vehicle-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.booking-vehicle-btn.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.booking-vehicle-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.booking-vehicle-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

.service-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-item.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-item-info {
    flex: 1;
}

.service-item-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.service-item-description {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.service-item-duration {
    font-size: 11px;
    color: var(--text-muted);
}

.service-price-container {
    text-align: left;
}

.service-price-display {
    font-weight: bold;
    color: var(--primary);
}

.service-price-label {
    font-size: 10px;
    color: var(--text-muted);
}

.booking-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.booking-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.booking-price-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#total-price {
    font-size: 1.25rem;
    font-weight: bold;
}

.booking-price-currency {
    font-size: 0.75rem;
}

#submit-btn {
    flex: 1;
}

/* #plate-segment-1 {
    width: 20px;
} */

#plate-segment-3 {
    width: 80px;
}

/* #plate-segment-4 {
    width: 20px;
} */

#plate-segment-2 {
    width: 65px;
}

#resend-code-btn, option, select,button {
    font-family: IRANSansX !important;
}

/* Loading Spinner */
.booking-loading-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.booking-loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 200px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.booking-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Discount Code Styles */
.discount-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.discount-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Discount Modal */
.discount-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.discount-modal.show,
.discount-modal[style*="flex"] {
    display: flex;
}

.discount-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.discount-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.discount-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.discount-modal-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.discount-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.discount-modal-close:hover {
    background: var(--surface);
    color: var(--text-primary);
}

.discount-modal-body {
    padding: 1.25rem;
}

.discount-modal-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border);
}

.discount-message {
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    text-align: right;
}

.discount-message.discount-success {
    background: #d1fae5;
    color: #065f46;
}

.discount-message.discount-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Support Modal */
.support-modal-box {
    padding: 1rem;
}

.support-modal-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-align: center;
    color: var(--text-primary);
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-option:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(-5px);
}

.support-option i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.support-option i:last-child {
    margin-right: auto;
    opacity: 0.7;
    width: 14px;
    height: 14px;
}

.support-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.support-option-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.support-option:hover .support-option-label {
    color: rgba(255, 255, 255, 0.9);
}

.support-option-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.support-option:hover .support-option-value {
    color: white;
}

.booking-price-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.discount-amount {
    font-size: 0.55rem;
    color: #059669;
    font-weight: 500;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .discount-code-input-wrapper {
        flex-direction: column;
    }
    
    .discount-apply-btn {
        width: 100%;
    }
}

/* Slot Taken Modal */
.slot-taken-modal {
    animation: fadeIn 0.3s ease-out;
}

.slot-taken-modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.star-input{
    color:rgb(221, 221, 221);
}

/* ================================================
   Filter Sidebar Styles
   ================================================ */

/* Overlay */
.filter-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Container */
.filter-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-sidebar.active {
    transform: translateY(0);
}

/* Header */
.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.filter-sidebar-header::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 2px;
    opacity: 0.5;
}

.filter-sidebar-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.filter-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-close-btn:hover {
    background: var(--border);
}

.filter-close-btn:active {
    transform: scale(0.95);
}

/* Content */
.filter-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    scroll-behavior: smooth;
}

.filter-sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

.filter-sidebar-content::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
    opacity: 0.5;
}

/* Filter Section */
.filter-section {
    margin-bottom: 1rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.filter-section-title:hover {
    background: rgba(56, 189, 248, 0.05);
}

.filter-chevron {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.filter-section-title.active .filter-chevron {
    transform: rotate(-90deg);
}

.filter-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.25rem;
}

.filter-section-content.active {
    max-height: 600px;
    padding: 0 1.25rem 1.25rem;
}

/* Vehicle Type Options */
.vehicle-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.vehicle-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.vehicle-type-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.vehicle-type-option.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.vehicle-type-option:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.vehicle-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

/* Filter Search Box */
.filter-search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease;
}

.filter-search-box:focus-within {
    border-color: var(--primary);
}

.filter-search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.filter-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.filter-search-box input::placeholder {
    color: var(--text-muted);
}

/* Vehicle Name Suggestions */
.vehicle-suggestions {
    margin-top: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vehicle-suggestions::-webkit-scrollbar {
    width: 6px;
}

.vehicle-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.vehicle-suggestions::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
    opacity: 0.5;
}

.vehicle-suggestion-item {
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.vehicle-suggestion-item:last-child {
    border-bottom: none;
}

.vehicle-suggestion-item:hover {
    background: #f0f7ff;
    color: var(--primary);
    font-weight: 500;
}

.vehicle-suggestion-item:active {
    background: var(--primary);
    color: white;
}

/* Price Badges */
.price-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.price-badge-item {
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    position: relative;
    flex: 0 0 auto;
}

.price-badge-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.price-badge-item:hover .price-badge {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
}

.price-badge-item input[type="checkbox"]:checked ~ .price-badge {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.3);
}

.price-badge-item[data-available="false"] .price-badge {
    opacity: 0.4;
    cursor: not-allowed;
}

.price-badge-item[data-available="false"]:not(:has(input:checked)) {
    display: none;
}

/* Tags List */
.tags-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 1rem;
}

.tags-list::-webkit-scrollbar {
    width: 6px;
}

.tags-list::-webkit-scrollbar-track {
    background: transparent;
}

.tags-list::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
    opacity: 0.5;
}

.tag-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.tag-checkbox:hover {
    background: rgba(56, 189, 248, 0.05);
}

.tag-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
    position: relative;
}

.tag-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.tag-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.tag-label {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.no-tags {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 2rem 0;
}

/* Address List */
.address-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 1rem;
}

.address-list::-webkit-scrollbar {
    width: 6px;
}

.address-list::-webkit-scrollbar-track {
    background: transparent;
}

.address-list::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
    opacity: 0.5;
}

.address-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.address-checkbox:hover {
    background: rgba(56, 189, 248, 0.05);
}

.address-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
}

.address-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.address-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.address-label {
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.no-addresses {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 2rem 0;
}

/* Footer */
.filter-sidebar-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.filter-clear-btn,
.filter-apply-btn {
    flex: 1;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: var(--font-family);
}

.filter-clear-btn {
    background: var(--surface);
    color: var(--text-primary);
}

.filter-clear-btn:hover {
    background: var(--border);
}

.filter-clear-btn:active {
    transform: scale(0.98);
}

.filter-apply-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.filter-apply-btn:hover {
    box-shadow: 0 6px 16px rgba(56, 189, 248, 0.4);
    transform: translateY(-1px);
}

.filter-apply-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive Design */
@media (min-width: 768px) {
    .filter-sidebar {
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        max-width: 500px;
    }
    
    .filter-sidebar.active {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 480px) {
    .filter-sidebar {
        max-height: 85vh;
    }
    
    .vehicle-type-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vehicle-type-option {
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .vehicle-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .price-inputs {
        gap: 0.5rem;
    }
}

/* Animation for smooth opening */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Body scroll lock when sidebar is open */
body.filter-sidebar-open {
    overflow: hidden;
}
a{
    text-decoration:none;
}
