/* === Sidebar Container === */
.shop-sidebar {
    width: 25%;
    padding-right: 20px;
    border-right: 1px solid #e5e5e5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* === Filter Block === */
.category-filter,
.size-filter,
.price-filter,
.custom-filter {
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* === Filter Header === */
.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    user-select: none;
}

/* === Toggle Icon === */
.filter-title .toggle-icon {
    margin-left: 5px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.filter-title.active .toggle-icon {
    transform: rotate(45deg);
}

/* === Toggle Content === */
.filter-options {
    transition: max-height 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    will-change: max-height, opacity;
}

.filter-title.active + .filter-options {
    opacity: 1;
    max-height: 1000px;
}

/* === Category & Subcategory Lists === */
.category-list,
.subcategory-list {
    list-style: none !important; /* ✅ removes bullets */
    padding: 0;
    margin: 0;
}

.category-list li,
.subcategory-list li {
    margin-bottom: 10px;
}

/* === Links === */
.category-list li a,
.subcategory-list li a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #000;
    text-decoration: none;
    padding-bottom: 2px;
    display: block;
    transition: all 0.3s ease;
}

.category-list li a:hover,
.subcategory-list li a:hover {
    border-bottom: 1px solid #000;
}

.category-list li.active > a {
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #000;
}

/* === Subcategory Accordion === */
.subcategory-list {
    padding-left: 15px;
    margin-top: 5px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
}

.category-list li.active > .subcategory-list,
.category-list li.open > .subcategory-list {
    max-height: 500px;
    opacity: 1;
}

/* === Size Filter Layout === */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* === Price Filter === */
.price-slider-container {
    margin-top: 15px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .shop-sidebar {
        width: 100%;
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
        position: relative;
        max-height: none;
        overflow: visible;
    }
}
/* Minimal, safe, precise bullet remover */
.shop-sidebar .widget_product_categories ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.shop-sidebar .widget_product_categories ul li {
    list-style: none !important;
    padding-left: 0 !important;
}

.shop-sidebar .widget_product_categories ul li::marker {
    content: "" !important;
}
