/* Native WC Variation Elements Cleanup & Seamless Integration */
.has-angie-variation-buttons .variations_form table.variations,
.has-angie-variation-buttons .variations_form table.variations tbody,
.has-angie-variation-buttons .variations_form table.variations tr,
.has-angie-variation-buttons .variations_form table.variations td {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: block !important;
    width: 100% !important;
}

.has-angie-variation-buttons .variations_form table.variations td.label,
.has-angie-variation-buttons .variations_form table.variations .reset_variations {
    display: none !important;
}

/* Base Wrapper styles */
.vbtn-container {
    width: 100%;
}

.vbtn-attribute-group {
    margin-bottom: 24px;
}

.vbtn-attribute-group:last-child {
    margin-bottom: 0;
}

.vbtn-attribute-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    font-size: 12px;
    color: #ffffff;
}

.vbtn-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Premium gaming button styling */
.vbtn-option-button {
    background: #0d1a30;
    border: 1px solid #1a2f4c;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(3, 14, 33, 0.4);
    outline: none;
    user-select: none;
}

/* Hover: Lift, glow, light up borders */
.vbtn-option-button:hover:not(:disabled):not(.vbtn-active) {
    border-color: #22afeb;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(34, 175, 235, 0.3), 0 6px 16px rgba(3, 14, 33, 0.5);
    background: #122442;
}

/* Focus styles for keyboard accessibility */
.vbtn-option-button:focus-visible {
    border-color: #22afeb;
    box-shadow: 0 0 0 3px rgba(34, 175, 235, 0.4), 0 4px 12px rgba(3, 14, 33, 0.4);
}

/* Selected active state: solid accent color and springy pop scale */
.vbtn-option-button.vbtn-active {
    background: #ff6a38;
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 106, 56, 0.5);
    animation: vbtnSelectedScale 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes vbtnSelectedScale {
    0% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Disabled: clean dark gray look, no strikethrough */
.vbtn-option-button:disabled {
    cursor: not-allowed;
    background: #071224;
    border-color: #121f33;
    color: #556c80;
    opacity: 0.6;
    box-shadow: none;
    transform: none !important;
}

/* Hidden WC native selectors */
.vbtn-hidden-native {
    display: none !important;
}

.vbtn-placeholder-info {
    border: 2px dashed #1a2f4c;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    background: #0d1a30;
    box-shadow: 0 4px 12px rgba(3, 14, 33, 0.4);
}

.vbtn-placeholder-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #22afeb;
}

.vbtn-placeholder-info p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
}
