.stock-warning {
    > span {
        flex-direction: column;
        gap: 0;
    }

    &.desktop {
        display: none;

        @media screen and (min-width: 768px) {
            display: block;
        }
    }

    &.mobile {
        display: block;

        @media screen and (min-width: 768px) {
            display: none;
        }
    }
}

.cart-total-wrapper {
    &:has(.discount) {
        .subtotal, .discount {
            font-size: 15px;
        }

        .discount {
            span {
                color: #4ab866;
            }
        }
    }
}

#fake-coupon-error-notice {
    color: red;
}

#apply_coupon_fake {
    text-transform: capitalize;
}


#checkout_sidebar {
    .cart-discount {
        th {
            color: black;
        }

        * {
            color: #4ab866;
        }
    }
}

.woocommerce-terms-and-conditions-wrapper {

    .woocommerce-terms-and-conditions-checkbox-text {
        display: block;
    }

    abbr:not(.mt-required) {
        display: none;
    }

    .small {
        font-size: 14px;
        padding-left: 2rem;

        a {
            font-weight: 500;
            text-decoration: underline;
        }
    }

    .checkout-inline-error-message {
        padding-left: 2rem;
        font-size: 14px;
    }
}

.list-price {
    .price_suffix {
        margin-right: 8px;
    }
}

.add-to-cart-icon {
    display: none;

    @media screen and (min-width: 768px) {
        display: block;
    }
}

.mt-reading-time {
    font-size: 14px;
    font-weight: 300;
}