/* --- Shop Sidebar --- */
.shop-sidebar {
    background: #fff;
    border-right: 1px solid #eee;
    height: 100%;
}

.shop-sidebar .filter-group {
    margin-bottom: 25px;
}

.shop-sidebar .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

/* Color Swatches */
.color-swatch {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border: 2px solid #000;
    transform: scale(1.1);
}

/* Size Boxes */
.size-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.size-box:hover {
    border-color: #000;
    color: #000;
    background: #f8f9fa;
}

.size-box.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Mobile Offcanvas */
@media (max-width: 991px) {
    .shop-sidebar {
        border-right: none;
    }
}
