.variation-grid-wrapper {
    margin: 25px 0;
    width: 100%;
    clear: both;
}

/* Desktop Setup: 3 Columns for 3 Cards Max */
.variation-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.variation-card {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 10px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height:210px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.variation-card.selected {
    border: 2px solid #2e7d32 !important;
    background-color: #f4faf4 !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.06);
}

.variation-card .card-img-wrap {
    text-align: center;
    margin-bottom: 5px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
}

.variation-card .card-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.variation-card .card-meta-wrap {
    text-align: center;
    width: 100%;
}

.variation-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 10px 0 !important;
    color: #222222 !important;
}

.card-price {
    font-size: 16px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 4px;
}

.card-old-price del {
    color: #999999;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.card-save-badge {
    display: inline-block;
    border: 1px solid #2e7d32;
    color: #2e7d32;
    background: #ffffff;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.variation-card.selected .card-save-badge {
    background: #2e7d32;
    color: #ffffff;
}

/* Forceful Native Price Hiding Cleanups */
.summary > .price, 
.fusion-summary-product-responsive .price,
.fusion-price-rating .price,
.summary .onsale,
.fusion-percentage-badge,
.standard-hide-bottom-price .woocommerce-variation-price,
.standard-hide-bottom-price .price,
.woocommerce-variation-price,
.woocommerce-variation-description {
    display: none !important;
}


.custom-selected-price-container {
    display: flex;
    gap: 14px;
}
