/* Swatches container */
.vcs-swatches-wrapper {
    margin: 10px 0 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* هر swatch */
.vcs-swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #222;
    background: transparent;
}

/* وقتی label است (بدون رنگ) */
.vcs-swatch.vcs-swatch-label {
    width: auto;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 13px;
    background: #f5f5f5;
}

/* حالت انتخاب شده */
.vcs-swatch.vcs-selected {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06) inset;
    border: 2px solid #666;
}

/* قابل دسترسی */
.vcs-swatch:focus { outline: none; }

/* Responsive: کم کردن فاصله در موبایل */
@media (max-width: 480px) {
    .vcs-swatches-wrapper { gap: 6px; }
    .vcs-swatch { width: 30px; height: 30px; }
}
