/**
 * Product Show Price Styles - Simple Version
 * Designed to match the provided example image
 */

 :root {
    --price-primary: #D40000; /* Rosso Corsa Red */
    --price-text-light: #888888; /* สีเทาสำหรับราคาเดิม */
}

/* Main container */
.product-price-container {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* ราคาปัจจุบัน */
.product-price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--price-primary);
    display: inline-flex;
    align-items: baseline;
}

.product-price-current-symbol {
    font-size: 16px;
    margin-right: 2px;
}

.product-price-current-value {
    font-size: 24px;
}

.product-price-current-unit {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-left: 2px;
}

/* ราคาก่อนลด */
.product-price-regular {
    font-size: 14px;
    color: var(--price-text-light);
    text-decoration: line-through;
    display: block;
    margin-top: 2px;
}