:root {
    --primary: #000000;
    /* Black for premium interactions */
    --primary-blue: #2563EB;
    /* Keep blue for accents/buttons */
    --bg-body: #F5F5F7;
    /* Apple-like light gray */
    --text-main: #1D1D1F;
    --text-secondary: #86868B;
    --card-bg: #FFFFFF;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
    display: block !important;
    /* Override potential Grid/Flex from style.css */
}

/* Sidebar Override */
.sidebar {
    display: none !important;
}

.main-content {
    margin-left: 0;
    padding: 0;
    background: transparent;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.navbar .logo img {
    height: 40px;
    /* Original colors */
}

.login-trigger {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #E5E5E5;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.2s;
    background: white;
    font-size: 14px;
}

.login-trigger:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

/* Hero Minimal */
.hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Filter Bar Light */
.filter-bar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 8px 12px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-bar.is-sticky {

    background: rgba(255, 255, 255, 0.95);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    border-color: rgba(0, 0, 0, 0.05);
}

/* Fade Overlay */
.fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    /* Reduced from 250px */
    background: linear-gradient(to bottom, var(--bg-body) 60%, rgba(245, 245, 247, 0) 100%);
    pointer-events: none;
    z-index: 99;
    /* Below filter-bar (100) but above content */
    backdrop-filter: blur(1px);
    /* Reduced blur */
    -webkit-mask-image: linear-gradient(to bottom, white 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, white 50%, transparent 100%);
}

.search-group {
    flex: 2.5;
    position: relative;
}

.search-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-group input {
    width: 100%;
    background: #F5F5F7;
    border: none;
    padding: 12px 12px 12px 44px;
    border-radius: 10px;
    color: var(--text-main);
    font-size: 14px;
    font-family: inherit;
    transition: 0.2s;
}

.search-group input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px var(--primary-blue);
}

.filter-dropdown {
    position: relative;
}

.filter-dropbtn {
    background: white;
    color: var(--text-main);
    border: 1px solid #E5E5E5;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
    white-space: nowrap;
}

.filter-dropbtn:hover {
    border-color: #D1D1D6;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid #E5E5E5;
    min-width: 260px;
    max-height: 320px;
    /* Limit height */
    overflow-y: auto;
    /* Enable scroll */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 16px;
    z-index: 101;
}

.dropdown-content.show {
    display: block;
}

.modal-left {
    position: relative;
    /* Ensure it is a positioning context */
    z-index: 1;
}

.car-preview-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Sit above watermark */
}

.car-preview-container #detailImg {
    width: 100%;
    max-width: 700px;
    max-height: 40vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    z-index: 1;
    flex-shrink: 0;
    transform: scale(1);
    transition: transform 0.5s;
}

/* Only animate the car image on hover */
.car-preview-container:hover #detailImg {
    transform: scale(1.05);
}

/* Increased specificity to override .modal-left img from style.css */
.modal-left .detail-brand-watermark {
    position: absolute;
    top: 70%;
    /* Center exactly */
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 80% !important;
    /* Slightly reduced */
    max-width: none !important;
    max-height: none !important;
    /* Override constraint */
    opacity: 0.05 !important;

    z-index: 10 !important;

    pointer-events: none;
    transition: none !important;
    display: block;
    /* Ensure it's not hidden by default if JS lags */
}

#detailAccordion {
    position: relative;
    z-index: 2;
    /* Sit above watermark */
}

.filter-grid {
    display: grid;
    gap: 4px;
    /* Tighter gap */
}

#filterMarca.filter-grid {
    grid-template-columns: 1fr;
    /* Single column for better list scrolling */
}

.filter-btn {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 13px;
    transition: 0.2s;
}

.filter-btn:hover {
    background: #F5F5F7;
}

.filter-btn.active {
    background: var(--text-main);
    color: white;
}

.brand-logo-filter {
    max-height: 20px;
    /* Small refined logo */
    max-width: 30px;
    object-fit: contain;
}

.filter-dropdown {
    position: relative;
    flex-shrink: 0;
}

.price-range-container {
    display: flex;
    flex-direction: column;
    min-width: 200px;
    /* Fixed width */
    padding: 0 10px;
}

.price-range-container label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 6px;
    margin-bottom: 4px;
}

/* Base Track */
.slider-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #E5E5E5;
    border-radius: 99px;
    z-index: 1;
}

/* Range Inputs */
.slider-wrapper input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    position: absolute;
    background: none;
    pointer-events: none;
    /* Let clicks pass through track */
    z-index: 2;
    height: 100%;
    top: 0;
    margin: 0;
    /* Reset margin */
}

/* Slider Thumb (Handle) */
.slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    /* Re-enable pointer events for thumb */
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: -6px;
    /* Center vertical */
    position: relative;
    z-index: 3;
}

/* Firefox */
.slider-wrapper input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 5px;
}

.btn-reset-filters {
    font-size: 13px;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    margin-left: auto;
}

.client-type-filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #E5E5E5;
}

.client-type-filter-btn {
    background: white;
    border: 1px solid #E5E5E5;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.client-type-filter-btn:hover {
    border-color: var(--primary-blue);
    background: #F5F5F7;
}

.client-type-filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.client-type-filter-btn i {
    font-size: 11px;
}

/* GRID & CARD - SHOWROOM STYLE */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    /* Wider cards */
    gap: 40px;
    /* More breathing room */
}

.guest-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.guest-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.guest-card-img-wrapper {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.guest-card-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.guest-card:hover .guest-card-img {
    transform: scale(1.1);
    /* Cinematic Zoom */
}

.badge-offer {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.guest-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

/* Header Row: Logo + Titles */
.guest-card-header-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guest-card-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    /* No filter, pure brand color */
}

.guest-card-model-group {
    display: flex;
    flex-direction: column;
}

.guest-card-model {
    font-size: 1.5rem;
    font-weight: 800;
    /* Extra Bold */
    margin: 0;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.guest-card-version {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.3;
}

/* Specs Row: Pills */
.guest-card-specs-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.spec-pill {
    background: #F5F5F7;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-pill i {
    color: var(--text-main);
}

/* Footer Row: Price + Action */
.guest-card-footer-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid #F5F5F7;
}

.guest-price-group {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 2px;
}

.price-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-main small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.price-sub {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.btn-showroom-action {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text-main);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.guest-card:hover .btn-showroom-action {
    background: var(--primary-blue);
    transform: rotate(-45deg);
    /* Dynamic arrow interaction */
}

.price-request {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Modal Overrides (Light Theme compatibility) */
.modal-content {
    background: white;
    color: var(--text-main);
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-modal {
    color: var(--text-main);
}

.modal-title {
    color: var(--text-main);
}

.config-label {
    color: var(--text-secondary);
}

.tech-label {
    color: var(--text-secondary);
}

.tech-value {
    color: var(--text-main);
}

.btn-option {
    border-color: #E5E5E5;
    color: var(--text-main);
}

.btn-option:hover {
    border-color: var(--primary-blue);
}

.btn-option.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.tabs-nav {
    border-bottom-color: #E5E5E5;
}


/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .search-group,
    .price-slider-group,
    .filter-dropdown {
        width: 100%;
    }

    .filter-dropbtn {
        justify-content: space-between;
    }
}

/* Login Modal */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.login-modal-box {
    background: white;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    color: #333;
}

.login-modal-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.login-tab-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
}

.login-tab-promup {
    background: #f9fafb;
    border-bottom: 2px solid transparent;
}

.login-tab-editor {
    background: #fff;
    color: #666;
    border-bottom: 2px solid transparent;
}

.login-modal-body {
    padding: 24px;
}

.login-modal-title {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
    color: #333;
}

.login-input-group {
    margin-bottom: 12px;
}

.login-label {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

#searchInput {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: 0.2s;
}

.login-pass-group {
    margin-bottom: 20px;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-btn-cancel {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-weight: 500;
}

.login-btn-confirm {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.login-status-msg {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
    min-height: 20px;
    color: #64748b;
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.btn-header-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--text-main);
    color: white;
    border: none;
}

.btn-header-login:hover {
    background: #000;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.client-type-selector {
    display: flex;
    gap: 4px;
    background: #F5F5F7;
    padding: 4px;
    border-radius: 12px;
}

.client-type-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-type-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.client-type-btn.active {
    background: white;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.client-type-btn i {
    font-size: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Footer Styles */
.site-footer {
    background: white;
    padding: 80px 0 30px;
    border-top: 1px solid #E5E5E5;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F5F5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: 0.2s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #F5F5F7;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
        /* Todo: Add mobile menu toggle logic */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

#btnLoadMore {
    background: white;
    color: var(--text-main);
    border: 1px solid #E5E5E5;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#btnLoadMore:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.hamburger-menu-btn {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-main);
    font-size: 16px;
}

.hamburger-menu-btn:hover {
    border-color: var(--primary-blue);
    background: #F5F5F7;
}

.hamburger-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.hamburger-backdrop.active {
    display: block;
    opacity: 1;
}

.hamburger-menu-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    max-height: 70vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
}

.hamburger-menu-panel.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

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

.hamburger-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.hamburger-close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.hamburger-close:hover {
    background: #F5F5F7;
    color: var(--text-main);
}

.hamburger-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hamburger-filter-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hamburger-filter-dropbtn {
    width: 100%;
    background: white;
    color: var(--text-main);
    border: 1px solid #E5E5E5;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    text-align: left;
}

.hamburger-filter-dropbtn:hover {
    border-color: var(--primary-blue);
    background: #F5F5F7;
}

.hamburger-filter-dropbtn i:first-child {
    color: var(--primary-blue);
}

.hamburger-filter-dropbtn i:last-child {
    margin-left: auto;
    font-size: 12px;
}

.hamburger-filter-section .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 12px 0;
    min-width: auto;
    max-height: 250px;
}

.hamburger-filter-section .filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.btn-reset-filters-menu {
    margin-top: auto;
    background: var(--text-main);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset-filters-menu:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .hamburger-menu-panel {
        width: 95%;
        max-width: none;
    }

    .hamburger-content {
        padding: 16px;
    }
}