/**
 * 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;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

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

.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);
}

/* Narrow columns (mobile 2-col grids, small tablets) */
@media (max-width: 782px) {
    .brezo-product-swatches {
        gap: 4px;
    }

    .brezo-swatches-list {
        gap: 3px;
    }

    .brezo-swatch-inner {
        width: 20px;
        height: 30px;
        border-radius: 3px;
    }

    .brezo-swatch-inner--label {
        font-size: 8px;
        line-height: 28px;
    }

    .brezo-swatches-more {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .brezo-swatches-list {
        gap: 2px;
    }

    .brezo-swatch-inner {
        width: 17px;
        height: 26px;
    }

    .brezo-swatch-inner--label {
        font-size: 7px;
        line-height: 24px;
    }

    .brezo-swatches-more {
        font-size: 9px;
    }
}

.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;
}
