.oz-filters {
    border: 1px solid #e5e7eb;
    padding: 12px;
    background: #fff;
    margin-bottom: 16px;
}

.oz-filters--bar .oz-filters__inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.oz-filter {
    margin-bottom: 12px;
}

.oz-filters--bar .oz-filter {
    position: relative;
    margin-bottom: 0;
}

.oz-filter__title {
    font-weight: 600;
    margin-bottom: 6px;
}

.oz-filters--bar .oz-filter__content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px;
    min-width: 220px;
    z-index: 10;
    display: none;
}

.oz-filters--bar .oz-filter.is-open .oz-filter__content {
    display: block;
}

.oz-filter__items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.oz-filter--chips .oz-filter__items,
.oz-filter--swatch .oz-filter__items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.oz-filter__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
}

.oz-filter__item.is-active {
    background: #f3f4f6;
}

.oz-filter__label {
    font-size: 14px;
}

.oz-filter__count {
    font-size: 12px;
    color: #6b7280;
}

.oz-swatch {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.oz-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oz-filters__actions {
    margin-top: 8px;
}

.oz-filters__clear {
    display: inline-block;
    font-size: 13px;
    color: #ef4444;
    text-decoration: none;
}

.oz-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
    width: 100%;
}

.variations_form .oz-swatches {
    margin-bottom: 16px;
}

.oz-swatch-btn {
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-size: cover;
    background-position: center;
}

.oz-swatch-btn.is-selected {
    border-color: #111827;
}

.oz-swatch-btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.oz-swatches[data-shape="square"] .oz-swatch-btn {
    border-radius: 6px;
}

.oz-swatch-btn span {
    font-size: 13px;
    padding: 0 6px;
}

.oz-variation-select {
    position: absolute !important;
    left: -9999px !important;
}

@media (max-width: 768px) {
    .oz-filters--bar .oz-filters__inner {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .oz-filters--bar .oz-filter__content {
        position: static;
        display: block;
        border: none;
        padding: 6px 0;
    }
}
