/* =============================================
   WC Variation Buttons — Stylesheet
   Tác giả: Nguyễn Trung Bá
   ============================================= */

/* Ẩn dropdown gốc của WooCommerce */
.variations select {
    display: none !important;
}

/* Xoá đường gạch ngang mặc định của WooCommerce dưới mỗi hàng biến thể */
.variations tr,
.variations td,
.variations th,
table.variations,
table.variations tbody,
table.variations tr td {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Reset padding/margin thừa khiến dòng kẻ lộ ra */
table.variations {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    background: transparent !important;
}

table.variations td {
    padding-bottom: 12px !important;
    vertical-align: middle !important;
}

/* Wrapper chứa các nút biến thể */
.wcvb-radios {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 4px;
}

/* Ẩn input radio thật */
.wcvb-radios input[type="radio"] {
    display: none;
}

/* Nút bấm */
.wcvb-radios label {
    display: inline-block;
    border: 2px solid #ccc;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s, font-weight 0.2s;
    user-select: none;
    background: #fff;
}

/* Hover */
.wcvb-radios label:hover {
    border-color: #e8734a;
    color: #e8734a;
}

/* Đang được chọn */
.wcvb-radios input[type="radio"]:checked + label {
    border-color: #e8734a;
    color: #e8734a;
    font-weight: bold;
    background-color: #fff5f2;
}

/* Biến thể hết hàng (out of stock) */
.wcvb-radios label.wcvb-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}
