/* ===================================================================================

* Theme Name: Suxnix Child
* Theme URI: https://www.themegenix.net/wp/suxnix/
* Author: ThemeGenix
* Author URI: https://themeforest.net/user/themegenix/
* Description: Suxnix - Health Supplement WordPress Theme
* Version: 1.6
* Template: suxnix
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

/* .sku-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.sku-card {
    position: relative;
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.2s ease;
    will-change: transform, box-shadow;
}

.sku-card:hover {
    border-color: #0073aa;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.sku-card.active {
    border-color: #28a745;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.sku-card.clicked {
    transform: scale(0.95);
}

.ribbon {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #e63946;
    color: #fff;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

.ribbon.best-value { background: #28a745; }
.ribbon.most-popular { background: #ff9800; }

.sku-title { font-weight: bold; font-size: 16px; margin-bottom: 5px; }
.sku-prices { margin-bottom: 5px; }
.price-current { font-size: 18px; font-weight: bold; color: #28a745; margin-right: 8px; }
.price-old { font-size: 14px; color: #888; text-decoration: line-through; }
.sku-desc { font-size: 14px; color: #555; } */
.sku-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.sku-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 高度统一 */
    position: relative;
    border: 2px solid #ddd;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    transition: all .3s ease;
}

.sku-card:hover {
    border-color: #0073aa;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.sku-card.active {
    border-color: #28a745;
    background: #e6f8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.sku-card .ribbon {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #e63946;
    color: #fff;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
}
.ribbon.best-value { background: #28a745; }
.ribbon.most-popular { background: #ff9800; }

.sku-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.sku-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
	color: #000000;
}

.sku-desc {
    font-size: 14px;
    color: #555;
}

.sku-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 右对齐 */
    justify-content: center;
    gap: 5px;
    min-width: 120px;
}

.price-current {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}
.price-old {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.sku-card input[type="radio"] {
    margin-top: 8px;
    transform: scale(1.2);
}

.variations_form table.variations,
.variations_form .label,
.variations_form .value select { display: none !important; }