/**
 * shop-variant-swatches.css
 * Isi folder mein upload karein jahan JS file daali hai
 */

.shop-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
}

.shop-swatches .swatch-item {
    display: inline-block;
    width: 44px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    padding: 2px;
    transition: border-color 0.2s ease;
    background: #fff;
}

.shop-swatches .swatch-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shop-swatches .swatch-item:hover {
    border-color: #999;
}

.shop-swatches .swatch-item.active-swatch {
    border-color: #000;
    border-width: 2px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .shop-swatches .swatch-item {
        width: 36px;
        height: 28px;
    }
}