/**
 * Kadence Integration Styles
 * Simple Peptide Plugin
 */

/* Retail Price Label Styling */
.retail-price {
    font-weight: bold;
    color: #0073aa;
    margin-right: 8px;
    display: inline-block;
    font-size: 14px;
}

/* Normal Retail Price Display with Strikethrough */
.retail-price-display {
    margin-bottom: 10px;
}

.retail-price-label {
    font-weight: normal;
    color: #333;
    margin-right: 5px;
}

.retail-price-amount {
    color: #6c757d;
}

.retail-price-amount del {
    text-decoration: line-through;
    color: #6c757d;
}

/* Price Comparison Styles */
.retail-price-comparison {
    text-decoration: line-through;
    color: #6c757d;
}

.sp-price-comparison {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
}

.sp-price-comparison p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp-price-comparison .label {
    font-weight: 600;
}

.wholesale-savings .savings {
    color: #28a745;
    font-weight: 600;
}

/* B2BKing Tier Table Styling */
.selected-tier {
    background-color: #e7f3ff;
    border-color: #007cba;
}

.b2bking_tiered_price_table {
    margin: 20px 0;
}

.b2bking_tiered_price_table tbody tr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.b2bking_tiered_price_table tbody tr.selected-tier {
    background-color: #e7f3ff;
    border-left: 3px solid #007cba;
}