.wc-helper-variation-chips-container {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wc-helper-variation-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1.2;
}

.wc-helper-variation-chip:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
    color: #000;
    text-decoration: none;
}

.wc-helper-variation-chip.active {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.wc-helper-chips-label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}
