/**
 * Product swatches on category/listing pages
 * Brezo Store Enhancements
 */

.brezo-product-swatches {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.brezo-swatches-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0 !important;
    padding: 0;
}

.brezo-swatch {
    flex-shrink: 0;
}

.brezo-swatch-inner {
    display: block;
    width: 26px;
    height: 40px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.brezo-swatch--image:hover .brezo-swatch-inner {
    outline: 2px solid rgba(0, 0, 0, 0.3);
    outline-offset: 1px;
}

.brezo-swatch-inner--label {
    font-size: 10px;
    line-height: 26px;
    text-align: center;
    background: #f0f0f0;
    color: #333;
}

.brezo-swatches-more {
    font-size: 11px;
    font-weight: 600;
    color: #666;
}
