.desc-html p {
    margin-bottom: 0.75rem;
}

.desc-html ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.desc-html ol {
    list-style: decimal;
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.desc-html li {
    margin-bottom: 0.25rem;
}

.desc-html strong {
    font-weight: 700;
}

.desc-html br {
    display: block;
    content: "";
    margin-top: 0.25rem;
}

.cart-bounce {
    animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.scroll-hide::-webkit-scrollbar {
    display: none;
}

.scroll-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.snap-inline {
    scroll-snap-type: x mandatory;
}

.snap-item {
    scroll-snap-align: center;
}