body {
    background-color: var(--color-body-background);
}

.main {
    padding: 0 20px;
}

body.page .main {
    padding-bottom: 60px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d5d3c0;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bfbdaa;
}

.template {
    width: 100%;
}

.template--products-of-the-month,
.template--recent-products,
.template--season-products,
.template--favorite-products,
.template--sale-products {
    padding-bottom: 40px;
}

.template--recent-products h2,
.template--season-products h2,
.template--favorite-products h2,
.template--sale-products h2 {
    margin-bottom: 20px;
}

@media (max-width:1119px) {
    .hide-breakpoint-mobile {
        display: none;
    }
}

@media (min-width:1120px) {
    .hide-breakpoint-desktop {
        display: none;
    }
}

@media (max-width:767px) {

    .template--recent-products,
    .template--season-products,
    .template--favorite-products,
    .template--sale-products {
        width: calc(100vw - 20px);
        overflow: hidden;
    }
}

/* Page Content */

.container--page p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.container--page p:last-of-type {
    margin-bottom: 0;
}

.container--page h2,
.container--page h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.container--page ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--color-text);
}

.container--page ul li:not(:last-child) {
    margin-bottom: 5px;
}