/* ===== RESET & BASE - APPLE STYLE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #1d1d1f; background: #fff; line-height: 1.47059; font-weight: 400; letter-spacing: -0.022em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ===== TOP BAR - APPLE STYLE ===== */
.top-bar {
    background: #f5f5f7;
    border-bottom: none;
    padding: 10px 0;
    font-size: 12px;
}
.top-bar .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6e6e73;
}
.top-bar-contact svg { width: 12px; height: 12px; fill: #6e6e73; }
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 16px;
}
.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: transparent;
}
.social-icon:hover { background: #1d1d1f; }
.social-icon:hover svg { fill: #fff; }
.social-icon svg { width: 12px; height: 12px; fill: #1d1d1f; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-bar-right a {
    color: #6e6e73;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.top-bar-right a:hover { color: #1d1d1f; }

/* ===== MAIN HEADER - APPLE STYLE ===== */
.main-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 14px 0;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}
.main-header .container {
    max-width: 980px;
    margin: 0 auto;
    margin-left: 05%;
    margin-right: 25%;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 36px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.logo-icon {
    width: 36px;
    height: 36px;
}
.logo-text {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}
.logo-text span { color: #06c; }
.search-boxes {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    max-width: 480px;
}
.search-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #d2d2d7;
    background: #fff;
    font-size: 14px;
    color: #86868b;
}
.search-input.city {
    border-right: none;
    border-radius: 10px 0 0 10px;
    min-width: 130px;
}
.search-input.evs {
    border-radius: 0 10px 10px 0;
    flex: 1;
}
.search-input svg { width: 15px; height: 15px; fill: #86868b; flex-shrink: 0; }
.search-input input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #1d1d1f;
    width: 100%;
    background: transparent;
    letter-spacing: -0.01em;
}
.search-input input::placeholder { color: #86868b; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.main-nav a, .nav-dropdown-trigger {
    font-size: 13px;
    font-weight: 400;
    color: #1d1d1f;
    white-space: nowrap;
    transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    letter-spacing: -0.01em;
    text-decoration: none;
}
.main-nav a:hover, .nav-dropdown-trigger:hover { color: #06c; }
.main-nav a.active { color: #06c; }
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.nav-dropdown-arrow {
    font-size: 8px;
    margin-left: 3px;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #1d1d1f;
    transition: background 0.2s ease;
    letter-spacing: -0.01em;
}
.nav-dropdown-item:hover {
    background: #f5f5f7;
    color: #1d1d1f;
}
.login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #1d1d1f;
    white-space: nowrap;
    transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.login-btn:hover { color: #06c; }
.login-btn svg { width: 18px; height: 18px; }
.bookmark-btn {
    display: flex;
    align-items: center;
    transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.bookmark-btn:hover { opacity: 0.6; }
.bookmark-btn svg { width: 18px; height: 18px; fill: none; stroke: #1d1d1f; stroke-width: 1.5; }

/* ===== CONTAINER - APPLE STYLE ===== */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== COMPARE SECTION - APPLE STYLE ===== */
.compare-section {
    padding: 40px 0 60px;
}
.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.compare-header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    line-height: 1.08;
}
.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #d2d2d7;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: transparent;
}
.share-btn:hover { background: #f5f5f7; border-color: #86868b; }
.share-btn svg { width: 16px; height: 16px; }

.compare-content {
    display: flex;
    gap: 40px;
}

/* ===== SIDEBAR LEFT WRAPPER ===== */
.sidebar-left {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ===== CATEGORIES SIDEBAR - APPLE STYLE ===== */
.categories {
    width: 100%;
    flex-shrink: 0;
    background: #fff;
    border: none;
    border-radius: 18px;
    padding: 28px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.06);
}
.categories h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.category-item:last-child { border-bottom: none; }
.category-item label {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    cursor: pointer;
    letter-spacing: -0.01em;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1.5px solid #d2d2d7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: #fff;
}
.custom-checkbox.checked {
    background: #06c;
    border-color: #06c;
}
.custom-checkbox svg {
    width: 12px;
    height: 12px;
    fill: #fff;
    display: none;
}
.custom-checkbox.checked svg { display: block; }

/* ===== ADVERTISEMENT BOX - APPLE STYLE ===== */
.ad-container {
    display: block;
    width: 100%;
    margin-top: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
}
.ad-container:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.ad-label {
    display: block;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ad-content {
    width: 100%;
    min-height: 200px;
    max-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    padding: 16px;
}
.ad-content img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
}

/* ===== ADD VEHICLE - APPLE STYLE ===== */
.add-vehicle-area {
    flex: 1;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.add-vehicle-card {
    width: 280px;
    min-height: 360px;
    border: 1.5px solid #d2d2d7;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: #fff;
}
.add-vehicle-card:hover {
    border-color: #06c;
    background: #fbfbfd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.add-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid #d2d2d7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.add-vehicle-card:hover .add-icon { border-color: #06c; background: rgba(6,204,255,0.04); }
.add-icon svg { width: 32px; height: 32px; fill: #86868b; }
.add-vehicle-card:hover .add-icon svg { fill: #06c; }
.add-vehicle-card span {
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

/* ===== ACCORDION SPECS - APPLE STYLE ===== */
.specs-section {
    flex: 1;
    min-width: 0;
}
.accordion-panel {
    background: #fff;
    border: none;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.06);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.accordion-header:hover { background: #fbfbfd; }
.accordion-header h3 {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}
.accordion-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.accordion-arrow svg { width: 20px; height: 20px; fill: #86868b; }
.accordion-panel.collapsed .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.accordion-panel.collapsed .accordion-body { max-height: 0 !important; }
.spec-row {
    display: flex;
    align-items: center;
    padding: 16px 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.spec-row:first-child { border-top: none; }
.spec-label {
    width: 280px;
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    flex-shrink: 0;
    letter-spacing: -0.01em;
}
.spec-value {
    flex: 1;
    font-size: 14px;
    color: #86868b;
    letter-spacing: -0.01em;
}

/* ===== BREADCRUMBS - APPLE STYLE ===== */
.breadcrumbs {
    padding: 24px 0;
    font-size: 12px;
    color: #86868b;
}
.breadcrumbs a { color: #06c; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 8px; }

/* ===== FOOTER - APPLE STYLE ===== */
.footer {
    background: #f5f5f7;
    border-top: none;
    padding: 0 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0 30px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo span { font-size: 20px; font-weight: 600; color: #1d1d1f; letter-spacing: -0.01em; }
.footer-logo span em { color: #06c; font-style: normal; }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6e6e73;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: #06c; flex-shrink: 0; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
    font-size: 13px;
    color: #6e6e73;
    transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    letter-spacing: -0.01em;
}
.footer-col ul li a:hover { color: #1d1d1f; }

/* Subscribe Section - Apple Style */
.subscribe-section {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 36px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.subscribe-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    max-width: 400px;
    letter-spacing: -0.02em;
}
.subscribe-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 480px;
}
.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.subscribe-form input:focus { border-color: #06c; box-shadow: 0 0 0 3px rgba(6,204,255,0.15); }
.subscribe-form button {
    padding: 12px 28px;
    background: #1d1d1f;
    color: #fff;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    letter-spacing: -0.01em;
}
.subscribe-form button:hover { background: #424245; }

/* Footer Bottom - Apple Style */
.footer-bottom {
    background: #f5f5f7;
    padding: 0;
    margin-top: 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-bottom-left {
    font-size: 12px;
    color: #86868b;
}
.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom-center a {
    font-size: 12px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: 0;
    transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.footer-bottom-center a:hover { color: #1d1d1f; }
.footer-bottom-center span { color: #d2d2d7; }
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.footer-social-icon:hover { opacity: 0.5; }
.footer-social-icon svg { width: 18px; height: 18px; fill: #86868b; }

/* ===== FLOATING WIDGETS - APPLE STYLE ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

.chatbot-btn {
    position: fixed;
    bottom: 150px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: #1d1d1f;
}
.chatbot-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.chatbot-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chatbot-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #06c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chatbot-badge svg { width: 8px; height: 8px; fill: #fff; }

/* ===== MOBILE MENU - APPLE STYLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== RESPONSIVE - APPLE STYLE ===== */
@media (max-width: 1200px) {
    .main-nav { gap: 20px; }
    .main-nav a { font-size: 12px; }
}
@media (max-width: 992px) {
    .top-bar-center, .top-bar-right { display: none; }
    .mobile-menu-toggle { display: flex; }
    .main-nav { display: none; }
    .search-boxes { max-width: 280px; }
    .compare-content { flex-direction: column; }
    .sidebar-left { width: 100%; }
    .categories { max-height: none; }
    .add-vehicle-card { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .spec-label { width: 200px; }
}
@media (max-width: 576px) {
    .top-bar-left { gap: 14px; }
    .top-bar-contact span { display: none; }
    .compare-header h1 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .subscribe-form { flex-direction: column; }
    .spec-label { width: 140px; font-size: 13px; }
    .spec-value { font-size: 13px; }
    .accordion-header h3 { font-size: 18px; }
}

/* ===== EV SECTION - APPLE STYLE ===== */
.ev-section {
    padding: 60px 0 80px;
    background: #fff;
}
.ev-section-title {
    font-size: 40px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 36px;
}

/* Filter Bar */
.ev-filter-bar {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #d2d2d7;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 100;
}
.ev-filter-group {
    display: flex;
    align-items: stretch;
    flex: 1;
}
.ev-filter-item {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}
.ev-filter-item:hover {
    background: #fbfbfd;
}
.ev-filter-item label {
    font-size: 11px;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ev-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #1d1d1f;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.ev-select svg:first-child {
    width: 18px;
    height: 18px;
    fill: #86868b;
    flex-shrink: 0;
}
.ev-select span {
    flex: 1;
}
.ev-select-arrow {
    width: 18px;
    height: 18px;
    fill: #86868b;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ev-filter-item.open .ev-select-arrow {
    transform: rotate(180deg);
}
.ev-filter-item.open {
    background: #fbfbfd;
}

/* Dropdown */
.ev-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 14px 14px;
    border: 1px solid #d2d2d7;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
}
.ev-filter-item.open .ev-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ev-dropdown-item {
    padding: 14px 24px;
    font-size: 15px;
    color: #1d1d1f;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: -0.01em;
}
.ev-dropdown-item:hover {
    background: #f5f5f7;
}
.ev-dropdown-item.selected {
    background: #f5f5f7;
    color: #1d1d1f;
    font-weight: 600;
}

.ev-filter-divider {
    width: 1px;
    background: #d2d2d7;
    margin: 12px 0;
}
.ev-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 48px;
    background: #1d1d1f;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
}
.ev-search-btn:hover {
    background: #424245;
}
.ev-search-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Cards Grid */
.ev-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.ev-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #d2d2d7;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ev-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.ev-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f7;
}
.ev-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ev-card:hover .ev-card-img img {
    transform: scale(1.04);
}
.ev-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ev-card-category {
    font-size: 11px;
    font-weight: 600;
    color: #06c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ev-card-name {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.ev-card-specs {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 0;
}
.ev-spec {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}
.ev-spec:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.06);
}
.ev-spec-label {
    font-size: 11px;
    font-weight: 500;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.ev-spec-value {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}
.ev-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ev-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ev-price-label {
    font-size: 11px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: 0;
}
.ev-price-value {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}
.ev-card-btn {
    padding: 10px 22px;
    background: transparent;
    color: #06c;
    border: 1.5px solid #06c;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
}
.ev-card-btn:hover {
    background: #06c;
    color: #fff;
}

/* Load More */
.ev-load-more {
    display: flex;
    justify-content: center;
}
.ev-load-more-btn {
    padding: 14px 40px;
    background: #1d1d1f;
    color: #fff;
    border: none;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ev-load-more-btn:hover {
    background: #424245;
    transform: scale(1.02);
}

/* No Results */
.ev-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #86868b;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* ===== BRANDS SECTION - APPLE STYLE ===== */
.brands-section {
    padding: 60px 0 80px;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.brands-section-title {
    font-size: 40px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: center;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 8px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-decoration: none;
    cursor: pointer;
}
.brand-card:hover {
    background: #f5f5f7;
    transform: translateY(-2px);
}
.brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
}
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-name {
    font-size: 12px;
    font-weight: 500;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
    max-width: 90px;
}
.brand-card:hover .brand-name {
    color: #06c;
}

/* Brands Responsive */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .brands-section-title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    .brand-name {
        font-size: 11px;
    }
}
@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-section-title {
        font-size: 28px;
    }
}

/* EV Section Responsive */
@media (max-width: 992px) {
    .ev-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ev-section-title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .ev-filter-bar {
        flex-direction: column;
    }
    .ev-filter-group {
        flex-direction: column;
    }
    .ev-filter-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .ev-search-btn {
        padding: 18px;
    }
    .ev-filter-item {
        position: static;
    }
    .ev-dropdown {
        border-radius: 0 0 14px 14px;
    }
}
@media (max-width: 576px) {
    .ev-cards-grid {
        grid-template-columns: 1fr;
    }
    .ev-section-title {
        font-size: 28px;
    }
    .ev-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .ev-card-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== SLIDER BANNER ===== */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 0;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 80px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}
.slide-overlay h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.slide-overlay p {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #1d1d1f;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #fff;
    transform: scale(1.2);
}
.dot:hover {
    background: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .slider-wrapper { height: 300px; }
    .slide-overlay { padding: 30px 40px; }
    .slide-overlay h2 { font-size: 28px; }
    .slide-overlay p { font-size: 16px; }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
}
@media (max-width: 576px) {
    .slider-wrapper { height: 250px; }
    .slide-overlay { padding: 20px; }
    .slide-overlay h2 { font-size: 22px; }
    .slide-overlay p { font-size: 14px; }
}
