/* Hide default WooCommerce variations table */
.variations {
    display: none;
}

.custom-variations-wrapper {
    margin: 10px 0;
    width: 100%;
    clear: both;
    display: block;
}

.custom-variation-group {
    margin-top: 40px;
    margin-bottom: 0px;
    width: 100%;
    display: block;
}

.custom-variation-label {
    display: block;
    margin-bottom: 10px;
    font-family: "Work sans";
    font-weight: 400;
    font-size: 16px;
}

.custom-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.custom-variation-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-variation-option.selected {
    border-color: #10544d;
    font-weight: 600;
	cursor: default;
}

.custom-variation-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.variation-button {
    padding: 8px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.variation-button:hover:not(.selected) {
    border-color: #999;
}

.variation-color {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 50%;
}