.sticky-content {
    display: none;
}

.sticky-content .next-prev {
    margin: var(--lttrshop-space-l) 0;
}

.sticky-content .lttrshop-price {
    font-size: var(--lttrshop-txt-s);
    line-height: var(--lttrshop-line-s);
    font-family: var(--lttrshop-font-family-bold);
    font-weight: var(--lttrshop-font-weight-bold);
    margin: 0;
}

.sticky-content .lttrshop-note {
    font-size: var(--lttrshop-txt-xs);
    line-height: var(--lttrshop-line-xs);
    color: var(--lttrshop-half-text-color);
    margin: 0;
}

.sticky-content h3 {
    font-size: var(--lttrshop-txt-xl);
    font-family: var(--lttrshop-font-family-bold);
    font-weight: var(--lttrshop-font-weight-bold);
    margin: var(--lttrshop-space-l) 0 0 0;
}

@media screen and (max-width: 599px) {
    .sticky-content {
        display: block;
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        background: var(--lttrshop-side-color);
        grid-area: sticky;
        padding: var(--page-padding);
        z-index: 11;
    }
}