/* 隐藏原生下拉 */
.variation-select-hidden {
    display: none !important;
}

/* 每一组属性（Color整一块 / Size整一块） */
.variation-row {
    margin-bottom: 24px;
}
/* 属性标题 Color / Size */
.variation-label label {
    font-size: 16px;
    color:#000;
    display:block;
    margin-bottom:14px;
    font-weight: 600;
}
/* 按钮容器：弹性布局，自动换行 */
.variation-buttons {
    display: flex;
    gap: 16px;        /* 按钮之间间距 */
    flex-wrap: wrap;  /* 一行放不下自动换行 */
}

/* 按钮基础样式：椭圆圆角 */
.variation-btn {
    border: 1px solid #222;
    background: #ffffff;
    border-radius: 999px; /* 超大圆角 = 胶囊椭圆 */
    cursor: pointer;
    color: black;
    width: auto;
    height: auto;
    transition: 0.2s ease;
    font-size: 14px !important;
    padding: 5px 11px;
    line-height: 1;
}
/* 选中状态：黑底白字 */
.variation-btn.active {
    border-color:#000 !important;
    background: #000 !important;
    color: white !important;
}
/* 不可售变体置灰禁用 */
.variation-btn:disabled {
    opacity:0.25;
    cursor: not-allowed;
}

.woocommerce-variation-price {
    display: none
}
#my-custom-variation-price-display .woocommerce-Price-amount {
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
}
