.pcv-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pcv-color-swatches {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.pcv-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s ease;
}

.pcv-swatch:hover {
    transform: scale(1.08);
}

.pcv-swatch.active {
    border: 2px solid #2b2b2b;
}

.pcv-color-name {
    text-align: center;
    margin-top: 12px;
    min-height: 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}