.pvwe-variation-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}
.pvwe-price {
    color: #009688;
    font-weight: bold;
}
.pvwe-variation-option {
    display: inline-block;
    margin: 5px;
}

.pvwe-variation-option input[type="radio"] {
    display: none;
}

.pvwe-button {
    display: inline-block;
    padding: 8px 14px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.2s ease;
}

.pvwe-variation-option input[type="radio"]:checked+.pvwe-button {
    background-color: unset !important;
    color: unset !important;
    border-color: unset !important;
}

.pvwe-variation-option input[type="radio"]:checked+.pvwe-button span.pvwe-label {
    background: #D8742B !important;
    color: white !important;
}

.pvwe-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.pvwe-quantity input[type="number"] {
    width: 60px;
    text-align: center;
}

.qty-up,
.qty-down {
    background: #eee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
}