/**
 * BFD Single Product Functions - Price Display Styles
 * 
 * @package BFDSingleProductFunctions
 */

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-price-wrapper .price {
    font-size: 32px;
    font-weight: 600;
    color: #000C5E;
    line-height: 1.2;
    margin: 0;
}

.product-price-wrapper .price del {
    opacity: 0.6;
    font-size: 24px;
    margin-right: 8px;
}

.product-price-wrapper .price ins {
    text-decoration: none;
    color: #000C5E;
}

@media (max-width: 767px) {
    .product-price-wrapper .price {
        font-size: 24px;
    }
    
    .product-price-wrapper .price del {
        font-size: 18px;
    }
}
