/**
 * Neoflux Shop Pro - Stile Nike
 * Developed by Neoflux - https://neoflux.it
 * Version: 1.0.0
 */

/* ====================================
   Reset e Variabili
==================================== */
:root {
    --neoflux-primary: #111111;
    --neoflux-secondary: #757575;
    --neoflux-border: #e5e5e5;
    --neoflux-bg-gray: #f5f5f5;
    --neoflux-white: #ffffff;
    --neoflux-accent: #ff6b35;
    --neoflux-text: #111111;
    --neoflux-text-light: #757575;
    --neoflux-spacing: 16px;
    --neoflux-radius: 4px;
    --neoflux-transition: all 0.3s ease;
}

/* ====================================
   Layout Principale
==================================== */

/* Header generale SOPRA tutto */
.neoflux-shop-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.neoflux-shop-header-top .wall-header__title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: #111;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.neoflux-shop-header-top .wall-header__item_count {
    font-weight: 400;
    color: #757575;
}

.neoflux-shop-header-top .wall-header__nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Wrapper sidebar + prodotti */
.neoflux-shop-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1920px;
    margin: 0 auto;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--neoflux-text);
}

/* ====================================
   Sidebar Filtri
==================================== */
.neoflux-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
}

.neoflux-sidebar-inner {
    background: var(--neoflux-white);
}

.neoflux-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--neoflux-border);
    margin-bottom: 20px;
}

.neoflux-sidebar-header h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: var(--neoflux-primary);
}

.neoflux-clear-filters {
    background: none;
    border: none;
    color: var(--neoflux-text-light);
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    transition: var(--neoflux-transition);
}

.neoflux-clear-filters:hover {
    color: var(--neoflux-primary);
}

/* Sezioni Filtri */
.neoflux-filter-section {
    border-bottom: 1px solid var(--neoflux-border);
    padding: 20px 0;
}

.neoflux-filter-section:first-child {
    padding-top: 0;
}

.neoflux-filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px 0;
    cursor: pointer;
    user-select: none;
}

.neoflux-filter-toggle {
    transition: transform 0.3s ease;
}

.neoflux-filter-section.collapsed .neoflux-filter-toggle {
    transform: rotate(-90deg);
}

.neoflux-filter-section.collapsed .neoflux-filter-content {
    display: none;
}

.neoflux-filter-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Checkbox Personalizzate */
.neoflux-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--neoflux-text-light);
    transition: var(--neoflux-transition);
}

.neoflux-checkbox-label:hover {
    color: var(--neoflux-primary);
}

.neoflux-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--neoflux-primary);
}

/* Filtro Prezzo */
.neoflux-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.neoflux-price-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.neoflux-price-input-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--neoflux-text-light);
    text-transform: uppercase;
}

.neoflux-price-input-group input {
    padding: 10px;
    border: 1px solid var(--neoflux-border);
    border-radius: var(--neoflux-radius);
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.neoflux-apply-price {
    width: 100%;
    padding: 12px;
    background: var(--neoflux-primary);
    color: var(--neoflux-white);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--neoflux-transition);
}

.neoflux-apply-price:hover {
    background: var(--neoflux-secondary);
}

/* Filtro Colori */
.neoflux-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 12px;
}

.neoflux-color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.neoflux-color-option input[type="checkbox"] {
    display: none;
}

.neoflux-color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neoflux-border);
    transition: var(--neoflux-transition);
}

.neoflux-color-option input:checked + .neoflux-color-swatch {
    border: 3px solid var(--neoflux-primary);
    box-shadow: 0 0 0 2px var(--neoflux-white), 0 0 0 4px var(--neoflux-primary);
}

.neoflux-color-name {
    font-size: 11px;
    color: var(--neoflux-text-light);
    text-align: center;
}

/* Filtro Taglie */
.neoflux-size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.neoflux-size-option {
    cursor: pointer;
}

.neoflux-size-option input[type="checkbox"] {
    display: none;
}

.neoflux-size-label {
    display: block;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--neoflux-border);
    border-radius: var(--neoflux-radius);
    font-size: 14px;
    transition: var(--neoflux-transition);
}

.neoflux-size-option input:checked + .neoflux-size-label {
    border-color: var(--neoflux-primary);
    background: var(--neoflux-primary);
    color: var(--neoflux-white);
}

.neoflux-size-option:hover .neoflux-size-label {
    border-color: var(--neoflux-primary);
}

/* ====================================
   Area Principale Prodotti
==================================== */
.neoflux-main-content {
    flex: 1;
    min-width: 0;
}

/* Header Shop */
.neoflux-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.neoflux-results-info h1 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: var(--neoflux-primary);
}

.neoflux-shop-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.neoflux-toggle-filters {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--neoflux-white);
    border: 1px solid var(--neoflux-border);
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--neoflux-transition);
}

.neoflux-toggle-filters:hover {
    background: var(--neoflux-bg-gray);
}

.neoflux-sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.neoflux-sort-dropdown label {
    font-size: 14px;
    color: var(--neoflux-text-light);
}

.neoflux-sort-select {
    padding: 8px 16px;
    border: 1px solid var(--neoflux-border);
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    background: var(--neoflux-white);
}

/* Filtri Attivi */
.neoflux-active-filters {
    margin-bottom: 20px;
}

.neoflux-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.neoflux-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--neoflux-bg-gray);
    border-radius: 30px;
    font-size: 13px;
}

.neoflux-filter-tag button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: var(--neoflux-text-light);
}

/* Loader */
.neoflux-loader {
    text-align: center;
    padding: 40px;
}

.neoflux-spinner {
    border: 3px solid var(--neoflux-border);
    border-top: 3px solid var(--neoflux-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: neoflux-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes neoflux-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================================
   Griglia Prodotti
==================================== */
.neoflux-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Card Prodotto */
.neoflux-product-card {
    background: var(--neoflux-white);
    transition: var(--neoflux-transition);
    cursor: pointer;
}

.neoflux-product-card:hover {
    transform: translateY(-4px);
}

.neoflux-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.neoflux-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--neoflux-bg-gray);
    margin-bottom: 16px;
}

.neoflux-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--neoflux-transition);
}

.neoflux-product-card:hover .neoflux-product-image img {
    transform: scale(1.05);
}

/* Badge */
.neoflux-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.neoflux-badge-sale {
    background: var(--neoflux-accent);
    color: var(--neoflux-white);
}

.neoflux-badge-new {
    background: var(--neoflux-primary);
    color: var(--neoflux-white);
}

/* Info Prodotto */
.neoflux-product-info {
    padding: 0 4px;
}

.neoflux-product-label {
    margin-bottom: 8px;
}

.neoflux-label-promo {
    color: var(--neoflux-accent);
    font-size: 14px;
    font-weight: 500;
}

.neoflux-product-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: var(--neoflux-primary);
    line-height: 1.4;
}

.neoflux-product-category {
    font-size: 14px;
    color: var(--neoflux-text-light);
    margin: 0 0 8px 0;
}

.neoflux-product-colors {
    margin-bottom: 12px;
}

.neoflux-colors-count {
    font-size: 14px;
    color: var(--neoflux-text-light);
}

.neoflux-product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--neoflux-primary);
}

.neoflux-product-price del {
    color: var(--neoflux-text-light);
    margin-right: 8px;
}

.neoflux-product-price ins {
    text-decoration: none;
    color: var(--neoflux-accent);
}

/* ====================================
   Paginazione
==================================== */
.neoflux-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.neoflux-pagination a,
.neoflux-pagination span {
    padding: 10px 16px;
    border: 1px solid var(--neoflux-border);
    border-radius: var(--neoflux-radius);
    text-decoration: none;
    color: var(--neoflux-primary);
    transition: var(--neoflux-transition);
}

.neoflux-pagination a:hover,
.neoflux-pagination .current {
    background: var(--neoflux-primary);
    color: var(--neoflux-white);
    border-color: var(--neoflux-primary);
}

/* Info Prodotti Visualizzati */
.neoflux-showing-info {
    text-align: center;
    color: var(--neoflux-text-light);
    font-size: 14px;
    margin: 30px 0;
}

/* Nessun Prodotto */
.neoflux-no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--neoflux-text-light);
}

.neoflux-no-products p {
    font-size: 18px;
    margin: 0;
}

/* ====================================
   Responsive Design
==================================== */

/* Tablet */
@media (max-width: 1024px) {
    .neoflux-shop-wrapper {
        gap: 30px;
    }
    
    .neoflux-sidebar {
        width: 220px;
    }
    
    .neoflux-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .neoflux-shop-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .neoflux-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--neoflux-white);
        z-index: 1000;
        transition: left 0.3s ease;
        padding: 20px;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .neoflux-sidebar.active {
        left: 0;
    }
    
    .neoflux-toggle-filters {
        display: flex;
    }
    
    .neoflux-shop-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .neoflux-shop-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .neoflux-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .neoflux-product-title {
        font-size: 14px;
    }
    
    .neoflux-product-category,
    .neoflux-product-price {
        font-size: 13px;
    }
}

/* Overlay per sidebar mobile */
.neoflux-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media (max-width: 768px) {
    .neoflux-sidebar-overlay.active {
        display: block;
    }
}

/* ====================================
   Scrollbar Personalizzata
==================================== */
.neoflux-sidebar::-webkit-scrollbar {
    width: 6px;
}

.neoflux-sidebar::-webkit-scrollbar-track {
    background: var(--neoflux-bg-gray);
}

.neoflux-sidebar::-webkit-scrollbar-thumb {
    background: var(--neoflux-secondary);
    border-radius: 3px;
}

.neoflux-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--neoflux-primary);
}

/* ====================================
   Animazioni
==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neoflux-product-card {
    animation: fadeIn 0.5s ease;
}

/* ====================================
   Stili Nike - Header e Filtri
==================================== */

/* Wall Header */
.wall-header {
    margin-bottom: 30px;
}

.wall-header__content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wall-header__nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Filters Button */
.filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--neoflux-border);
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: var(--neoflux-transition);
    color: var(--neoflux-primary);
}

.filters-btn:hover {
    border-color: var(--neoflux-primary);
}

.filters-btn__filter_text {
    font-weight: 500;
}

.icon-filter-ds {
    width: 24px;
    height: 24px;
}

/* Dropdown Sort */
.sort {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--neoflux-border);
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    min-width: 180px;
    justify-content: space-between;
}

.dropdown__btn:hover {
    border-color: var(--neoflux-primary);
}

.dropdown__btn-text-wrapper {
    display: flex;
    gap: 4px;
}

.dropdown__btn-text {
    font-weight: 500;
}

.icon-chevron {
    width: 14px;
    height: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.dropdown__btn[aria-expanded="true"] .icon-chevron {
    transform: rotate(-135deg);
}

.dropdown__options-wrapper {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--neoflux-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 100;
}

.dropdown__options-wrapper[hidden] {
    display: none;
}

.dropdown__options-list {
    padding: 8px 0;
}

.dropdown__option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
}

.dropdown__option:hover {
    background: var(--neoflux-bg-gray);
}

/* Left Nav Sidebar */
.ln-scroller {
    height: 100%;
    overflow-y: auto;
}

.left-nav-wrapper {
    padding-right: 12px;
}

.left-nav {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Categories */
.left-nav__categories {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--neoflux-border);
}

.categories__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categories__item {
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 0;
    transition: all 0.15s ease;
    display: block;
    line-height: 1.5;
}

.categories__item:hover {
    color: #111;
    opacity: 0.7;
}

.categories__item.is--active {
    color: #111;
    font-weight: 500;
    border-left: 2px solid #111;
    padding-left: 8px;
    margin-left: -8px;
}

/* Filter Groups */
.left-nav__filters {
    /* styles handled by filter-group */
}

.filters {
    display: flex;
    flex-direction: column;
}

.filter-group {
    border-bottom: 1px solid var(--neoflux-border);
    padding: 20px 0;
}

.filter-group:first-child {
    padding-top: 0;
}

.filter-group__btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
}

.trigger-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.trigger-content__label {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-group__count {
    color: var(--neoflux-text-light);
    font-weight: 400;
    font-size: 14px;
}

.filter-group__count.is--hidden {
    display: none;
}

.Collapsible__trigger .icon-chevron {
    transition: transform 0.3s ease;
}

.Collapsible__trigger.is-closed .icon-chevron {
    transform: rotate(45deg);
}

.Collapsible__trigger:not(.is-closed) .icon-chevron {
    transform: rotate(-135deg);
}

.Collapsible__contentOuter {
    overflow: hidden;
    transition: height 0.3s ease;
    height: 0;
}

.filter-group:not(.filter-group__closed) .Collapsible__contentOuter {
    height: auto;
}

.filter-group__items-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Filter Items */
.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    color: var(--neoflux-text);
    text-align: left;
    width: 100%;
    transition: color 0.2s;
}

.filter-item:hover {
    color: var(--neoflux-text-light);
}

.filter-item[aria-checked="true"] {
    font-weight: 500;
}

/* Pseudo Checkbox */
.pseudo-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neoflux-border);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: var(--neoflux-transition);
}

.filter-item[aria-checked="true"] .pseudo-checkbox {
    background: var(--neoflux-primary);
    border-color: var(--neoflux-primary);
}

.filter-item[aria-checked="true"] .pseudo-checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Color Filters */
.filter-item.is--color {
    /* color specific styles */
}

.filter-item__color-patch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--neoflux-border);
    flex-shrink: 0;
    position: relative;
}

.filter-item[aria-checked="true"] .filter-item__color-patch {
    border: 2px solid var(--neoflux-primary);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--neoflux-primary);
}

/* Color Swatches */
.filter-item__color-patch.is--nero,
.filter-item__color-patch.is--black { background: #000; }
.filter-item__color-patch.is--bianco,
.filter-item__color-patch.is--white { background: #fff; }
.filter-item__color-patch.is--rosso,
.filter-item__color-patch.is--red { background: #e74c3c; }
.filter-item__color-patch.is--blu,
.filter-item__color-patch.is--blue { background: #3498db; }
.filter-item__color-patch.is--verde,
.filter-item__color-patch.is--green { background: #27ae60; }
.filter-item__color-patch.is--giallo,
.filter-item__color-patch.is--yellow { background: #f1c40f; }
.filter-item__color-patch.is--grigio,
.filter-item__color-patch.is--grey,
.filter-item__color-patch.is--gray { background: #95a5a6; }
.filter-item__color-patch.is--marrone,
.filter-item__color-patch.is--brown { background: #8b4513; }
.filter-item__color-patch.is--rosa,
.filter-item__color-patch.is--pink { background: #ff69b4; }
.filter-item__color-patch.is--viola,
.filter-item__color-patch.is--purple { background: #9b59b6; }
.filter-item__color-patch.is--arancione,
.filter-item__color-patch.is--orange { background: #ff8c00; }
.filter-item__color-patch.is--multi-color,
.filter-item__color-patch.is--multicolore {
    background: linear-gradient(135deg, 
        red 0%, red 12.5%, 
        orange 12.5%, orange 25%, 
        yellow 25%, yellow 37.5%, 
        green 37.5%, green 50%, 
        blue 50%, blue 62.5%, 
        indigo 62.5%, indigo 75%, 
        violet 75%, violet 87.5%, 
        red 87.5%);
}

/* Show More */
.show-more__wrapper {
    margin-top: 8px;
}

.show-more__btn {
    background: none;
    border: none;
    color: var(--neoflux-primary);
    font-size: 15px;
    cursor: pointer;
    padding: 8px 0;
    font-weight: 500;
}

.show-more__btn:hover {
    text-decoration: underline;
}

.show-more__contentOuter {
    overflow: hidden;
    transition: height 0.3s ease;
    height: 0;
}

.show-more__trigger:not(.is-closed) + .show-more__contentOuter {
    height: auto;
}

.less-btn {
    background: none;
    border: none;
    color: var(--neoflux-primary);
    font-size: 15px;
    cursor: pointer;
    padding: 8px 0;
    font-weight: 500;
    margin-top: 8px;
}

.less-btn:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .filters-btn {
        display: flex;
    }
    
    .neoflux-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s ease;
        padding: 20px;
        overflow-y: auto;
    }
    
    .neoflux-sidebar.is--active {
        left: 0;
    }
}


