.price-new, .price-new__container, .price-new__regular, .price-new__sale {
    display: flex;
    flex-direction: column;
}

.price-new p {
    margin: 0;
}

.price-new.price-new--unavailable {
    visibility: hidden;
}

.price-new-item--regular-wrap {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.2rem;
}


.price-new__regular .price-new-item--regular {
    margin-right: 0;
}

.price-new:not(.price-new--show-badge) .price-new-item--last:last-of-type {
    margin: 0;
}

.price-new--sold-out .price-new__availability,
.price-new__regular {
    display: block;
}

.price-new__sale,
.price-new__availability,
.price-new .price-new__badge-sale,
.price-new .price-new__badge-sold-out,
.price-new--on-sale .price-new__regular,
.price-new--on-sale .price-new__availability {
    display: none;
}

.price-new--sold-out .price-new__badge-sold-out,
.price-new--on-sale .price-new__badge-sale {
    display: inline-block;
}

.price-new--on-sale .price-new__sale {
    display: initial;
    flex-direction: row;
    flex-wrap: wrap;
}

.price-new__sale .price-new-item--regular {
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2rem;
    /* identical to box height */
    text-decoration-line: line-through;
    color: #707A80;
}

.price-new-item--sale, .price-new__regular .price-new-item--regular {
    font-style: normal;
    font-weight: 700;
    font-size: 3.4rem;
    line-height: 100%;
    color: #000000;
}

.price-new-item--sale span, .price-new-item--regular span {
    font-size: 1.6rem;
    line-height: 100%;
}


.unit-price {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.04rem;
    line-height: calc(1 + 0.2 / var(--font-body-scale));
    margin-top: 0.2rem;
    text-transform: uppercase;
    color: rgba(var(--color-foreground), 0.7);
}

.price-new--sale {
    position: relative;
    display: flex;
    background: #F05A23;
    padding: 0.45rem 0 0 0.6rem;
    margin-left: 0.8rem;
    border-radius: 0.6rem 0 0 0.6rem;
    margin-right: 1.8rem;
}
.price-new--sale::after,
.price-new--sale::before {
    content:'';
    position: absolute;
    right: -1.8rem;
    width: 0;
    height: 0;
}
.price-new--sale::after {
    top: 0;
    border-top: 2.5rem solid #F05A23;
    border-right: 1.8rem solid transparent;
}
.price-new--sale::before {
    bottom: 0;
    border-bottom: 2.5rem solid #F05A23;
    border-right: 1.8rem solid transparent;
}

.price-new--sale span {
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.7rem;
    white-space: nowrap;
    color: #FFFFFF;
}

@media screen and (min-width: 750px) {
    .price-new-item--sale, .price-new__regular .price-new-item--regular {
        font-size: 44px;
        line-height: 54px;
    }
    .price-new-item--sale span, .price-new-item--regular span {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    .price-new__sale .price-new-item--regular {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    .price-new--sale span {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    .price-new--sale::after {
        top: 0;
        border-top: 2.8rem solid #F05A23;
        border-right: 1.8rem solid transparent;
    }
    .price-new--sale::before {
        bottom: 0;
        border-bottom: 2.8rem solid #F05A23;
        border-right: 1.8rem solid transparent;
    }
}
