.variations select {
    display: none;
}

.cvb-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.cvb-button {
    padding: 10px 16px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    transition: .2s;
    color: #000;
    text-transform: uppercase;
}

.cvb-button:hover {
    border-color: #000;
    background: #fff;
}

.cvb-button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.cvb-button.disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}