/* ==============================================
   DROPDOWNS - Guest Counter & Filter Modals
   Modern Airbnb-style design
   ============================================== */

/* ==============================================
   GUESTS DROPDOWN
   ============================================== */

.guests-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 16px 0;
}

.guests-counter-list {
    padding: 0 24px;
}

.guests-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light, #ebebeb);
}

.guests-counter-row:last-child {
    border-bottom: none;
}

.guests-counter-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guests-counter-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
}

.guests-counter-description {
    font-size: 14px;
    color: var(--text-secondary, #717171);
}

.guests-counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light, #b0b0b0);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary, #717171);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.counter-btn:hover:not(:disabled) {
    border-color: var(--text-primary, #222);
    color: var(--text-primary, #222);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    min-width: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
}

.guests-footer {
    padding: 16px 24px 8px;
    border-top: 1px solid var(--border-light, #ebebeb);
    margin-top: 8px;
}

.guests-notice {
    font-size: 12px;
    color: var(--text-secondary, #717171);
    line-height: 1.5;
    margin: 0;
}

/* ==============================================
   FILTER MODALS (Price, Type, Beds)
   ============================================== */

.filter-modal {
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: auto;
    left: auto;
    transform: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.filter-modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.filter-modal-content {
    padding: 24px;
}

.filter-modal-header {
    margin-bottom: 24px;
}

.filter-modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary, #222);
    margin: 0 0 4px;
}

.filter-modal-subtitle {
    font-size: 14px;
    color: var(--text-secondary, #717171);
    margin: 0;
}

.filter-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light, #ebebeb);
}

.filter-clear-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary, #717171);
    text-decoration: underline;
    cursor: pointer;
    padding: 8px 0;
}

.filter-clear-btn:hover {
    color: var(--text-primary, #222);
}

.filter-apply-btn {
    padding: 12px 24px;
    background: var(--text-primary, #222);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.filter-apply-btn:hover {
    background: #000;
}

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

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

/* ==============================================
   PRICE FILTER
   ============================================== */

.price-slider-container {
    position: relative;
    margin-bottom: 24px;
}

.price-histogram {
    display: flex;
    align-items: flex-end;
    height: 60px;
    gap: 2px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.price-histogram-bar {
    flex: 1;
    background: var(--border-light, #ddd);
    border-radius: 2px 2px 0 0;
    min-height: 4px;
    transition: background 0.2s;
}

.price-histogram-bar.in-range {
    background: var(--text-primary, #222);
}

.price-slider-track {
    position: relative;
    height: 2px;
    background: var(--border-light, #ddd);
    border-radius: 1px;
}

.price-slider-range {
    position: absolute;
    height: 100%;
    background: var(--text-primary, #222);
    border-radius: 1px;
}

.price-slider {
    position: absolute;
    top: -6px;
    width: 100%;
    height: 14px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--border-light, #ddd);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.price-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--border-light, #ddd);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.price-input-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary, #717171);
    margin-bottom: 8px;
}

.price-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light, #ddd);
    border-radius: 8px;
    padding: 0 12px;
    background: var(--bg-primary, #fff);
    transition: border-color 0.15s ease;
}

.price-input-wrapper:focus-within {
    border-color: var(--text-primary, #222);
}

.price-input-wrapper .currency {
    font-size: 16px;
    color: var(--text-secondary, #717171);
    margin-right: 4px;
}

.price-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-primary, #222);
    outline: none;
    width: 100%;
    min-width: 0;
}

.price-separator {
    color: var(--text-secondary, #717171);
    font-size: 16px;
}

/* ==============================================
   TYPE OF PLACE FILTER
   ============================================== */

.type-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.type-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light, #ebebeb);
    transition: opacity 0.15s ease;
}

.type-option:last-child {
    border-bottom: none;
}

.type-option:hover {
    opacity: 0.8;
}

.type-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-option-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
}

.type-option-description {
    font-size: 14px;
    color: var(--text-secondary, #717171);
}

.type-option-checkbox {
    position: relative;
    flex-shrink: 0;
}

.type-option-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-light, #b0b0b0);
    border-radius: 4px;
    background: transparent;
    transition: all 0.15s ease;
    position: relative;
}

.type-option-checkbox input:checked + .checkbox-custom {
    background: var(--text-primary, #222);
    border-color: var(--text-primary, #222);
}

.type-option-checkbox input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.type-option-checkbox input:focus + .checkbox-custom {
    box-shadow: 0 0 0 2px var(--bg-primary, #fff), 0 0 0 4px var(--text-primary, #222);
}

/* ==============================================
   BEDS FILTER
   ============================================== */

.beds-counters {
    display: flex;
    flex-direction: column;
}

.beds-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light, #ebebeb);
}

.beds-counter-row:last-child {
    border-bottom: none;
}

.beds-counter-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
}

.beds-counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.beds-counter-controls .counter-btn {
    width: 32px;
    height: 32px;
}

.beds-counter-controls .counter-value {
    min-width: 40px;
}

/* ==============================================
   DARK MODE
   ============================================== */

[data-theme="dark"] .guests-counter-row,
[data-theme="dark"] .guests-footer,
[data-theme="dark"] .filter-modal-footer,
[data-theme="dark"] .type-option,
[data-theme="dark"] .beds-counter-row {
    border-color: var(--border-color, #333);
}

[data-theme="dark"] .guests-counter-label,
[data-theme="dark"] .counter-value,
[data-theme="dark"] .filter-modal-header h3,
[data-theme="dark"] .type-option-label,
[data-theme="dark"] .beds-counter-label {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .guests-counter-description,
[data-theme="dark"] .guests-notice,
[data-theme="dark"] .filter-modal-subtitle,
[data-theme="dark"] .type-option-description,
[data-theme="dark"] .price-input-group label {
    color: var(--text-secondary, #aaa);
}

[data-theme="dark"] .counter-btn {
    border-color: var(--border-color, #555);
    color: var(--text-secondary, #aaa);
}

[data-theme="dark"] .counter-btn:hover:not(:disabled) {
    border-color: var(--text-primary, #fff);
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .filter-apply-btn {
    background: #fff;
    color: #222;
}

[data-theme="dark"] .filter-apply-btn:hover {
    background: #f7f7f7;
}

[data-theme="dark"] .price-slider-track,
[data-theme="dark"] .price-histogram-bar {
    background: var(--border-color, #333);
}

[data-theme="dark"] .price-slider-range,
[data-theme="dark"] .price-histogram-bar.in-range {
    background: #fff;
}

[data-theme="dark"] .price-slider::-webkit-slider-thumb {
    background: #fff;
    border-color: #555;
}

[data-theme="dark"] .price-input-wrapper {
    border-color: var(--border-color, #444);
    background: var(--bg-secondary, #1e1e1e);
}

[data-theme="dark"] .price-input-wrapper input {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .checkbox-custom {
    border-color: var(--border-color, #555);
}

[data-theme="dark"] .type-option-checkbox input:checked + .checkbox-custom {
    background: #fff;
    border-color: #fff;
}

[data-theme="dark"] .type-option-checkbox input:checked + .checkbox-custom::after {
    border-color: #222;
}

/* ==============================================
   MOBILE RESPONSIVE
   ============================================== */

/* ==============================================
   ALL FILTERS MODAL - Consolidated Mobile View
   ============================================== */

.all-filters-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.all-filters-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.all-filters-modal {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(100%) !important;
    border-radius: 24px 24px 0 0 !important;
    max-height: calc(100vh - var(--navbar-height-mobile, 50px) - 80px) !important;
    max-height: calc(100dvh - var(--navbar-height-mobile, 50px) - 80px) !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    background: var(--bg-primary, #fff) !important;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.2) !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    padding-bottom: env(safe-area-inset-bottom, 0) !important;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1) !important;
    /* Match guest dropdown style - bottom sheet on mobile */
}

.all-filters-modal.active {
    transform: translateY(0) !important;
}

/* Desktop: position as regular dropdown */
@media (min-width: 769px) {
    .all-filters-modal {
        position: fixed !important;
        top: auto !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(100%) !important;
        max-width: 600px !important;
        width: auto !important;
        max-height: 80vh !important;
        border-radius: 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    }
    
    .all-filters-modal.active {
        transform: translateX(-50%) translateY(8px) !important;
    }
}

.all-filters-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
}

.all-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-light, #ebebeb);
    position: sticky;
    top: 0;
    background: var(--bg-primary, #fff);
    z-index: 10;
    /* Match guest dropdown header style */
}

@media (max-width: 768px) {
    .all-filters-header {
        padding: 16px 20px 12px;
    }
}

.all-filters-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary, #222);
    margin: 0;
}

.all-filters-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary, #222);
    font-size: 18px;
    transition: background 0.2s ease;
}

.all-filters-close:active {
    background: var(--bg-hover, #f7f7f7);
}

.all-filters-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    -webkit-overflow-scrolling: touch;
}

.all-filters-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light, #ebebeb);
}

.all-filters-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.all-filters-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #222);
    margin: 0 0 8px;
}

.filter-section-subtitle {
    font-size: 14px;
    color: var(--text-secondary, #717171);
    margin: 0 0 16px;
}

/* Price inputs in all-filters modal */
.all-filters-section .price-inputs {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.all-filters-section .price-input-group {
    flex: 1;
}

.all-filters-section .price-input-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary, #717171);
    margin-bottom: 6px;
}

.all-filters-section .price-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light, #dddddd);
    border-radius: 8px;
    padding: 10px 12px;
    background: var(--bg-primary, #fff);
}

.all-filters-section .price-input-wrapper .currency {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary, #717171);
    margin-right: 4px;
}

.all-filters-section .price-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #222);
    outline: none;
    width: 100%;
}

.all-filters-section .price-separator {
    align-self: flex-end;
    margin-bottom: 10px;
    color: var(--text-secondary, #717171);
    font-weight: 500;
}

/* Type options in all-filters modal */
.all-filters-section .type-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.all-filters-section .type-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light, #ebebeb);
}

.all-filters-section .type-option:last-child {
    border-bottom: none;
}

.all-filters-section .type-option-content {
    flex: 1;
}

.all-filters-section .type-option-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
    margin-bottom: 2px;
}

.all-filters-section .type-option-description {
    display: block;
    font-size: 14px;
    color: var(--text-secondary, #717171);
}

/* Beds counters in all-filters modal */
.all-filters-section .beds-counters {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.all-filters-section .beds-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light, #ebebeb);
}

.all-filters-section .beds-counter-row:last-child {
    border-bottom: none;
}

.all-filters-section .beds-counter-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
}

.all-filters-section .beds-counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.all-filters-section .counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light, #b0b0b0);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary, #717171);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.all-filters-section .counter-btn:hover:not(:disabled) {
    border-color: var(--text-primary, #222);
    color: var(--text-primary, #222);
}

.all-filters-section .counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.all-filters-section .counter-value {
    min-width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary, #222);
}

.all-filters-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-light, #ebebeb);
    position: sticky;
    bottom: 0;
    background: var(--bg-primary, #fff);
    z-index: 10;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
}

.filter-clear-all-btn,
.filter-show-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.filter-clear-all-btn {
    background: transparent;
    color: var(--text-primary, #222);
    border: 1px solid var(--border-light, #dddddd);
}

.filter-clear-all-btn:active {
    background: var(--bg-hover, #f7f7f7);
}

.filter-show-btn {
    background: linear-gradient(135deg, #ff385c 0%, #e61e4d 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.3);
}

.filter-show-btn:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(255, 56, 92, 0.3);
}

/* Hide all-filters modal on desktop */
@media (min-width: 769px) {
    .all-filters-modal {
        display: none !important;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .all-filters-modal {
        display: none;
    }
    
    .all-filters-modal.active {
        display: block !important;
    }
    
    /* Make individual filter modals bottom sheets on mobile */
    .filter-modal {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        transform: translateY(100%) !important;
        border-radius: 24px 24px 0 0 !important;
        max-height: 85vh !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
    }
    
    .filter-modal.active {
        transform: translateY(0) !important;
    }
}

@media (max-width: 768px) {
    .guests-dropdown,
    .filter-modal {
        max-width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .filter-modal-content {
        padding: 20px 16px;
    }

    .guests-counter-list {
        padding: 0 16px;
    }

    .guests-counter-row,
    .beds-counter-row {
        padding: 20px 0;
    }

    .price-inputs {
        flex-direction: column;
        gap: 12px;
    }

    .price-separator {
        display: none;
    }

    .price-input-group {
        width: 100%;
    }
}

/* ==============================================
   ALL FILTERS MODAL - DARK MODE
   ============================================== */

[data-theme="dark"] .all-filters-modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .all-filters-modal {
    background: var(--bg-primary, #1a1a1a) !important;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5) !important;
    border-top: 1px solid var(--border-color, #333);
}

[data-theme="dark"] .all-filters-header {
    background: var(--bg-primary, #1a1a1a);
    border-bottom-color: var(--border-color, #333);
}

[data-theme="dark"] .all-filters-header h2 {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-close {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-close:active {
    background: var(--bg-hover, #2a2a2a);
}

[data-theme="dark"] .all-filters-section {
    border-bottom-color: var(--border-color, #333);
}

[data-theme="dark"] .all-filters-section h3 {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .filter-section-subtitle {
    color: var(--text-secondary, #aaa);
}

[data-theme="dark"] .all-filters-footer {
    background: var(--bg-primary, #1a1a1a);
    border-top-color: var(--border-color, #333);
}

[data-theme="dark"] .filter-clear-all-btn {
    background: transparent;
    color: var(--text-primary, #fff);
    border-color: var(--border-color, #444);
}

[data-theme="dark"] .filter-clear-all-btn:active {
    background: var(--bg-hover, #2a2a2a);
}

/* Dark mode for price inputs in all-filters */
[data-theme="dark"] .all-filters-section .price-input-wrapper {
    background: var(--bg-secondary, #222);
    border-color: var(--border-color, #444);
}

[data-theme="dark"] .all-filters-section .price-input-wrapper:focus-within {
    border-color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-section .price-input-wrapper input {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-section .price-input-wrapper .currency {
    color: var(--text-secondary, #aaa);
}

/* Dark mode for type options in all-filters */
[data-theme="dark"] .all-filters-section .type-option {
    border-bottom-color: var(--border-color, #333);
}

[data-theme="dark"] .all-filters-section .type-option-label {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-section .type-option-description {
    color: var(--text-secondary, #aaa);
}

/* Dark mode for beds counters in all-filters */
[data-theme="dark"] .all-filters-section .beds-counter-row {
    border-bottom-color: var(--border-color, #333);
}

[data-theme="dark"] .all-filters-section .beds-counter-label {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-section .counter-value {
    color: var(--text-primary, #fff);
}

[data-theme="dark"] .all-filters-section .counter-btn {
    background: transparent;
    border-color: var(--border-color, #444);
    color: var(--text-secondary, #aaa);
}

[data-theme="dark"] .all-filters-section .counter-btn:hover:not(:disabled) {
    border-color: var(--text-primary, #fff);
    color: var(--text-primary, #fff);
    background: var(--bg-hover, #2a2a2a);
}
