.angie-wc-variation-buttons-wrapper table.variations {
    width: 100%;
}
.angie-wc-variation-buttons-wrapper .value select {
    display: none !important;
}
.angie-variation-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.angie-variation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}
.angie-variation-button:hover {
    border-color: #999;
}
.angie-variation-button.selected {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
.angie-variation-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
}