/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/
/* Price per unit with strikethrough */
.per-unit-price .price-per-unit {
    text-decoration: line-through;
}

/* Sale per unit and Saved per unit in red with bigger font */
.per-unit-price .sale-per-unit,
.per-unit-price .saved-per-unit {
    color: red;
    font-size: 1.2em;
}

.per-unit-pricing-horizontal {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

     /* Ensure items are displayed in a row */
        .horizontal-price-display {
            display: flex;
            align-items: center; /* Vertically center the text */
            gap: 15px; /* Space between each element */
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            justify-content: flex-start; /* Align content to the left */
        }

        /* Optional: Style for Sale per unit and Saved per unit text */
        .horizontal-price-display strong {
            color: black; /* Default color for labels */
        }

        .horizontal-price-display span {
            text-decoration: line-through; /* For sale price showing as crossed-out */
        }