        /* Horizontal Filter Bar */
        .filter-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
        }

        .filter-form {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        /* Filter Dropdown */
        .filter-dropdown {
            position: relative;
        }

        .filter-dropdown-btn {
            background: transparent;
            border: none;
            padding: 8px 16px;
            font-size: 14px;
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
            border-radius: 4px;
        }

        .filter-dropdown-btn:hover {
            color: #1a1a1a;
            background: #f5f5f5;
        }

        .filter-dropdown-btn.active {
            color: #1a1a1a;
            font-weight: 600;
        }

        .filter-dropdown-btn i {
            font-size: 10px;
            transition: transform 0.2s ease;
        }

        .filter-dropdown:hover .filter-dropdown-btn i {
            transform: rotate(180deg);
        }

        .filter-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            min-width: 180px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
        }

        .filter-dropdown:hover .filter-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .filter-dropdown-menu.price-menu {
            padding: 0;
            min-width: 280px;
            max-width: 300px;
        }

        /* Price Filter Redesign */
        .price-filter-content {
            padding: 0;
        }

        .price-presets {
            padding: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            background: #fff;
            border-bottom: 1px solid #f0ece7;
        }

        .price-preset {
            display: inline-block;
            padding: 7px 14px;
            border-radius: 50px;
            font-size: 12px;
            color: #555;
            text-decoration: none;
            transition: all 0.2s ease;
            background: #f8f6f3;
            border: 1px solid #e8e4df;
            white-space: nowrap;
        }

        .price-preset:hover {
            background: #fff;
            border-color: #1e3a5f;
            color: #1e3a5f;
        }

        .price-preset.active {
            background: #1e3a5f;
            color: #fff;
            border-color: #1e3a5f;
        }

        .price-divider {
            display: flex;
            align-items: center;
            padding: 10px 14px 4px;
            background: #fff;
            gap: 10px;
        }

        .price-divider::before,
        .price-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e8e4df;
        }

        .price-divider span {
            font-size: 10px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .price-inputs {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            padding: 8px 14px 0;
            background: #fff;
        }

        .price-input-group {
            flex: 1;
        }

        .price-input-group label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-input-wrapper {
            display: flex;
            align-items: center;
            border: 1px solid #e8e4df;
            border-radius: 8px;
            background: #fff;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }

        .price-input-wrapper:focus-within {
            border-color: #1e3a5f;
        }

        .price-input-wrapper .currency-symbol {
            padding: 0 6px 0 10px;
            color: #999;
            font-size: 13px;
            background: transparent;
            height: 36px;
            display: flex;
            align-items: center;
            border-right: none;
        }

        .price-input-wrapper input {
            flex: 1;
            border: none;
            padding: 8px 8px 8px 2px;
            font-size: 13px;
            color: #1a1a1a;
            font-weight: 500;
            width: 100%;
            outline: none;
        }

        .price-input-wrapper input::-webkit-outer-spin-button,
        .price-input-wrapper input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .price-input-wrapper input[type=number] {
            -moz-appearance: textfield;
        }

        .price-separator {
            color: #ccc;
            font-size: 14px;
            padding-bottom: 8px;
        }

        .price-slider-redesigned {
            margin: 14px 14px 10px;
        }

        .price-filter-actions {
            display: flex;
            justify-content: flex-end;
            gap: 6px;
            padding: 8px 14px;
            border-top: 1px solid #f0ece7;
            background: #fff;
        }

        .clear-price-btn {
            flex: 0 0 auto;
            padding: 5px 12px;
            background: #fff;
            color: #666;
            border: 1px solid #e8e4df;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            line-height: 1.4;
        }

        .clear-price-btn:hover {
            background: #f8f6f3;
            color: #333;
            border-color: #ccc;
        }

        .filter-option {
            display: block;
            padding: 10px 16px;
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.15s ease;
        }

        .filter-option:hover {
            background: #f8f8f8;
            color: #1a1a1a;
        }

        .filter-option.selected {
            background: #f0f0f0;
            color: #1a1a1a;
            font-weight: 600;
        }

        .filter-option.sub {
            padding-left: 28px;
            font-size: 13px;
        }

        .filter-option small {
            color: #999;
            font-weight: 400;
        }

        /* Apply Price Button */
        .apply-price-btn {
            flex: 0 0 auto;
            padding: 5px 14px;
            background: linear-gradient(135deg, #1e3a5f, #0d2137);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }

        .apply-price-btn:hover {
            background: #0d2137;
        }

        /* Sort Dropdown */
        .sort-dropdown {
            position: relative;
            flex-shrink: 0;
        }

        .sort-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: transparent;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sort-dropdown-btn:hover {
            border-color: #ccc;
            background: #f9f9f9;
        }

        .sort-dropdown-btn .sort-label {
            font-size: 13px;
            color: #666;
        }

        .sort-dropdown-btn .sort-value {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a1a;
        }

        .sort-dropdown-btn i {
            font-size: 10px;
            color: #666;
            transition: transform 0.2s ease;
        }

        .sort-dropdown:hover .sort-dropdown-btn i {
            transform: rotate(180deg);
        }

        .sort-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 4px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            min-width: 180px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
        }

        .sort-dropdown:hover .sort-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .sort-option {
            display: block;
            padding: 10px 16px;
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.15s ease;
        }

        .sort-option:hover {
            background: #f8f8f8;
            color: #1a1a1a;
        }

        .sort-option.selected {
            background: #f0f0f0;
            color: #1a1a1a;
            font-weight: 600;
        }

        .sort-option:first-child {
            border-radius: 8px 8px 0 0;
        }

        .sort-option:last-child {
            border-radius: 0 0 8px 8px;
        }

        /* Active Filters */
        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .active-filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 12px;
            color: #555;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .active-filter-tag:hover {
            background: #1a1a1a;
            color: #fff;
            border-color: #1a1a1a;
        }

        .active-filter-tag i {
            font-size: 9px;
        }

        .clear-filters-btn {
            padding: 5px 12px;
            background: transparent;
            color: #1a1a1a;
            border-radius: 20px;
            font-size: 12px;
            text-decoration: underline;
            transition: all 0.2s ease;
        }

        .clear-filters-btn:hover {
            color: #666;
        }

        /* Products Grid - Full Width */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        @media (min-width: 576px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

        @media (min-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 20px;
            }
        }

        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 20px;
            }
        }

        /* Shimmer Skeleton Cards */
        .shimmer-grid { margin-top: 20px; }
        .shimmer-card {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
        }
        .shimmer-image {
            aspect-ratio: 3/4;
            background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
            background-size: 200% 100%;
            animation: shimmer 1.4s ease-in-out infinite;
        }
        .shimmer-body { padding: 12px; }
        .shimmer-line {
            height: 12px;
            border-radius: 6px;
            margin-bottom: 8px;
            background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
            background-size: 200% 100%;
            animation: shimmer 1.4s ease-in-out infinite;
        }
        .shimmer-line.w75 { width: 75%; }
        .shimmer-line.w50 { width: 50%; }
        .shimmer-line.w40 { width: 40%; }
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Empty State */
        .empty-products {
            text-align: center;
            padding: 80px 20px;
        }

        .empty-products .empty-icon {
            font-size: 80px;
            color: #ddd;
            margin-bottom: 24px;
        }

        .empty-products h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .empty-products p {
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
        }

        .view-all-btn {
            display: inline-block;
            padding: 12px 32px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .view-all-btn:hover {
            background: #333;
            color: #fff;
        }

        /* Price Slider Styles */
        .noUi-target {
            background: #e8e4df;
            border: none;
            box-shadow: none;
            height: 6px;
            border-radius: 3px;
        }

        .noUi-connect {
            background: #1e3a5f;
            border-radius: 3px;
        }

        .noUi-handle {
            border: 3px solid #1e3a5f;
            background: #fff;
            box-shadow: 0 1px 4px rgba(30, 58, 95, 0.3);
            border-radius: 50%;
            width: 20px !important;
            height: 20px !important;
            top: -7px !important;
            right: -10px !important;
            cursor: grab;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .noUi-handle:hover {
            transform: scale(1.15);
            box-shadow: 0 2px 8px rgba(30, 58, 95, 0.4);
        }

        .noUi-handle:active {
            cursor: grabbing;
            transform: scale(1.1);
        }

        .noUi-handle:before, .noUi-handle:after {
            display: none;
        }

        .noUi-horizontal .noUi-tooltip {
            display: none;
        }

        /* Keep dropdown open while interacting with slider */
        .price-filter-dropdown:focus-within .filter-dropdown-menu,
        .price-filter-dropdown .filter-dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mobile Styles */
        .mobile-filter-bar {
            display: none;
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            position: sticky;
            top: 0;
            z-index: 90;
        }

        .mobile-filter-toolbar {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-filter-btn {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0 16px;
            background: #1e3a5f;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            transition: all 0.2s ease;
            height: 40px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .mobile-filter-btn:active {
            background: #162d4a;
            transform: scale(0.97);
        }

        .mobile-filter-btn i {
            font-size: 13px;
        }

        .filter-count-badge {
            background: #fff;
            color: #1e3a5f;
            font-size: 10px;
            font-weight: 700;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 0;
            padding: 0 5px;
        }

        .mobile-sort-wrap {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
        }

        .mobile-sort-icon {
            position: absolute;
            left: 12px;
            font-size: 13px;
            color: #6b7280;
            pointer-events: none;
            z-index: 1;
        }

        .mobile-sort-select {
            width: 100%;
            padding: 0 30px 0 34px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            background: #f9fafb;
            color: #374151;
            height: 40px;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            cursor: pointer;
            transition: border-color 0.2s ease;
        }

        .mobile-sort-select:focus {
            outline: none;
            border-color: #1e3a5f;
            background-color: #fff;
        }

        /* ============================================
           MOBILE FILTER SIDEBAR - Modern Redesign
           ============================================ */
        .mobile-filter-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 88%;
            max-width: 360px;
            height: 100vh;
            height: 100dvh;
            background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
            z-index: 100001;
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 8px 0 40px rgba(0,0,0,0.12);
            border-right: 1px solid rgba(0,0,0,0.05);
        }

        .mobile-filter-sidebar.active {
            left: 0;
        }

        /* Header with gradient accent */
        .mobile-filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            padding-top: calc(14px + env(safe-area-inset-top));
            background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
            flex-shrink: 0;
        }

        .mobile-filter-header h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.3px;
        }

        .filter-header-btn {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.15);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #fff;
            font-size: 16px;
        }

        .filter-header-btn:active {
            background: rgba(255,255,255,0.25);
            transform: scale(0.95);
        }

        .filter-close-btn svg {
            width: 18px;
            height: 18px;
            stroke: #D4AF37;
        }

        .filter-apply-btn {
            background: rgba(212, 175, 55, 0.25);
            color: #D4AF37;
        }

        .filter-apply-btn:active {
            background: rgba(212, 175, 55, 0.4);
        }

        .filter-clear-all-btn {
            color: #D4AF37;
        }

        /* Content area */
        .mobile-filter-content {
            flex: 1;
            overflow-y: auto;
            padding: 0;
            padding-bottom: 90px;
            -webkit-overflow-scrolling: touch;
        }

        /* Filter sections */
        .mobile-filter-section {
            border-bottom: 1px solid #f0f0f0;
            background: #fff;
        }

        /* Active Filters Tag Strip */
        .mobile-selected-filters {
            background: #f8f9fb;
            border-bottom: 1px solid #eef0f2;
            padding: 12px 20px;
        }

        .mobile-selected-filters-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .mf-selected-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: #fff;
            border: 1px solid #e2e5ea;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: #1e3a5f;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mf-tag-remove {
            width: 16px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #e5e7eb;
            border-radius: 50%;
            font-size: 8px;
            color: #6b7280;
            transition: all 0.15s ease;
            flex-shrink: 0;
        }

        .mf-selected-tag:active .mf-tag-remove {
            background: #dc2626;
            color: #fff;
        }

        /* Accordion Header */
        .mf-accordion-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            background: #fafbfc;
            border: none;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .mf-accordion-header:active {
            background: #f0f2f5;
        }

        .mf-accordion-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #1e3a5f;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .mf-title-dot {
            width: 6px;
            height: 6px;
            background: #D4AF37;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .mf-filter-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            background: #D4AF37;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            border-radius: 9px;
            margin-left: 2px;
        }

        .mf-chevron {
            font-size: 12px;
            color: #9ca3af;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .mf-accordion-item.expanded .mf-chevron {
            transform: rotate(180deg);
        }

        /* Accordion Body - Collapse Animation */
        .mf-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
            opacity: 0;
        }

        .mf-accordion-item.expanded .mf-accordion-body {
            max-height: 500px;
            opacity: 1;
        }

        .mobile-filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 16px 20px;
        }

        /* Chip-style filter options */
        .mobile-filter-option {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 20px;
            background: #fff;
            border: 1.5px solid #e5e7eb;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 500;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.2s ease;
            min-height: 44px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-filter-option:active {
            transform: scale(0.96);
        }

        .mobile-filter-option input {
            display: none;
        }

        .mobile-filter-option input:checked + .mf-chip-label {
            font-weight: 600;
        }

        /* Selected state */
        .mobile-filter-option:has(input:checked) {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
            border-color: #1e3a5f;
            color: #fff;
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
        }

        /* Checkmark on selected chip */
        .mobile-filter-option:has(input:checked) .mf-chip-label::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 10px;
            margin-right: 4px;
            opacity: 0.85;
        }

        /* Hover effect for non-selected */
        .mobile-filter-option:not(:has(input:checked)):active {
            background: #f8f9fa;
            border-color: #d1d5db;
        }

        @media (hover: hover) {
            .mobile-filter-option:not(:has(input:checked)):hover {
                border-color: #c5c9d0;
                background: #f9fafb;
                box-shadow: 0 2px 6px rgba(0,0,0,0.06);
            }
        }

        /* Fixed Bottom Actions - Premium style */
        .mobile-filter-actions {
            display: flex;
            gap: 12px;
            padding: 16px 20px;
            padding-bottom: calc(16px + env(safe-area-inset-bottom));
            background: #fff;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 20;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1), 0 -1px 6px rgba(0,0,0,0.04);
            border-top: 1px solid #eef0f2;
        }

        .mobile-filter-actions .clear-btn {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 14px 20px;
            background: #fff;
            border: 1.5px solid #e5e7eb;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            color: #6b7280;
            cursor: pointer;
            min-height: 50px;
            transition: all 0.2s ease;
        }

        .apply-count {
            opacity: 0.85;
            font-weight: 500;
        }

        .mobile-filter-actions .clear-btn:active {
            background: #f5f5f5;
            transform: scale(0.98);
        }

        .mobile-filter-actions .apply-btn {
            flex: 1;
            padding: 14px 24px;
            background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            min-height: 50px;
            transition: all 0.2s ease;
            box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-filter-actions .apply-btn:active {
            transform: scale(0.98);
            box-shadow: 0 3px 12px rgba(30, 58, 95, 0.25);
        }

        /* Mobile Price Filter */
        .mobile-price-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 0;
        }

        /* Price Range Section */
        .mobile-filter-section:last-of-type .mobile-filter-options {
            padding-bottom: 8px;
        }

        .mobile-price-inputs {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            padding: 0 20px 20px;
            background: #fff;
        }

        .mobile-price-input {
            flex: 1;
        }

        .mobile-price-input label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: #6b7280;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-price-input input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            min-height: 40px;
            transition: border-color 0.2s ease;
        }

        .mobile-price-input input:focus {
            outline: none;
            border-color: #1e3a5f;
            box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
        }

        .mobile-price-dash {
            color: #9ca3af;
            padding-bottom: 14px;
            font-weight: 600;
            font-size: 14px;
        }

        /* Overlay with blur */
        .mobile-filter-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 100000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

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

        /* Active Filters Bar Mobile */
        @media (max-width: 991px) {
            .active-filters-bar {
                padding: 10px 0 !important;
            }

            .active-filters {
                flex-wrap: nowrap !important;
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding-bottom: 4px;
            }

            .active-filters::-webkit-scrollbar {
                display: none;
            }

            .active-filter-tag {
                flex-shrink: 0;
                padding: 6px 12px;
                font-size: 12px;
                border-radius: 16px;
            }

            .clear-filters-btn {
                flex-shrink: 0;
            }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .filter-bar {
                display: none;
            }

            .mobile-filter-bar {
                display: block;
            }

            .products-section {
                padding: 20px 0 !important;
            }

            .products-grid {
                gap: 12px !important;
            }
        }

        @media (min-width: 992px) {
            .mobile-filter-sidebar,
            .mobile-filter-overlay {
                display: none !important;
            }
        }

        /* Very small screens */
        @media (max-width: 375px) {
            .mobile-filter-btn {
                padding: 0 12px;
                font-size: 12px;
                height: 36px;
                gap: 5px;
            }

            .mobile-sort-select {
                height: 36px;
                font-size: 12px;
                padding: 0 26px 0 30px;
            }

            .mobile-sort-icon {
                left: 10px;
                font-size: 12px;
            }

            .mobile-filter-option {
                padding: 8px 12px;
                font-size: 12px;
                min-height: 40px;
            }

            .mf-accordion-header {
                padding: 12px 16px;
            }

            .mf-accordion-title {
                font-size: 12px;
            }

            .mobile-filter-options {
                padding: 14px 16px;
            }

            .mf-selected-tag {
                font-size: 11px;
                padding: 5px 10px;
            }
        }
