.main-content .side-position {
    margin-bottom: calc(var(--gutter) * 2);
    margin-top: 0;
}

.main-content .side-position .module-head-title {
    text-align: left;
    margin-bottom: 10px;
}

.sortbar {
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f3f3f3;
}

.section__spacer {
    --section-spacer: calc(var(--gutter) * 1.5);
    margin-top: var(--section-spacer);
}

.product-list .product-snapshot-vertical,
.product-list .product-snapshot-horizontal {
    display: grid;
    column-gap: var(--gutter);
    row-gap: var(--gutter);
    grid-template-columns: 1fr 1fr;
}

.product-snapshot-horizontal .featured-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-position .modules-all-link {
    text-align: left;
}

@media (min-width: 1400px) {
    .list-page-column-left {
        flex: 0 0 240px;
        width: 240px;
    }

    .list-page-column-right {
        padding-left: 35px;
        flex: 1;
    }
}

@media (min-width: 1200px) {
    .main-content .side-position .module-head-title {
        font-size: 1.25rem;
    }
}
@media (min-width: 992px) {
    .list-page-column-left {
        order: -1;
    }
}
@media (max-width: 991.98px) {
    .module-paf_filter-wrapper {
        height: 0;
        opacity: 0;
        transform: translateX(-100%);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        visibility: hidden;
        transition: transform 0.4s ease;
        pointer-events: none;
        z-index: 1050;
    }

    .module-paf_filter-wrapper.show {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        height: auto;
    }
}

@media (min-width: 576px) {
    .product-list .product-snapshot-vertical {
        grid-template-columns: repeat(auto-fill,minmax(192px,1fr));
    }

    .product-list .product-snapshot-vertical,
    .product-list .product-snapshot-horizontal {
        row-gap: calc(var(--gutter) * 2);
    }

    .product-list .product-snapshot-horizontal {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 991.98px) {
    .list-page-column-left {
        margin-top: calc(var(--gutter) * 2);
    }
}

@media (max-width: 767.98px) {
    .product-card__footer {
        gap: 0;
    }

    .product-snapshot-horizontal .product-card__row {
        flex-direction: column;
        height: 100%;
    }
    .product-snapshot-horizontal .product-card__right {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
}
