html {
    scroll-padding: 180px;
    scroll-behavior: smooth;
}

.homepage {
    overflow-x: clip;
}

.products__page__desc {
    .cont {
        max-height: none !important;
    }

    .show__more-js {
        display: inline-flex !important;
    }

    .box {
        --max-lines: 15;

        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: var(--max-lines);
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
}

.wysiwyg a {
    color: inherit;
}

.products__list .woocommerce-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    .pagination {
        --border-radius: 4px;

        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        gap: 6px;
        padding: 16px;
        margin-top: 16px;
        margin-bottom: 0;

        @media (width >= 1024px) {
            margin-top: 64px;
        }

        @media (width >= 640px) {
            padding: 16px 48px;
        }

        li {
            display: contents !important;
        }

        .page-numbers {
            border-radius: var(--border-radius);
            display: inline-grid;
            font-size: 14px;
            font-weight: 600;
            line-height: 160%;
            place-items: center;
            flex-shrink: 0;

            @include transition;

            &.prev {
                margin-right: auto;
            }

            &.next {
                margin-left: auto;
            }

            &:not(:has(i)) {
                width: 40px;
                height: 40px;

                &:not(.current) {
                    border: 1px solid transparent;

                    @include hover {
                        border-color: var(--clr-gray-400);
                    }
                }
            }

            &:has(i) {
                display: inline-flex;
                align-items: center;
                gap: 8px;

                &:is(a) {
                    @include hover {
                        color: var(--clr-accent);
                    }
                }
            }

            i {
                font-size: 20px;
            }

            span {
                @media (width < 640px) {
                    display: none !important;
                }
            }
        }

        .current {
            border: 1px solid var(--clr-gray-300);
        }
    }
}

.filters__products .br__filters .h3 {
    height: 100%;
    margin: 0;
    border: 1px solid #101828;
    padding: 13px 45px 13px 16px;
    color: #101828;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    background-image: url(../images/plus.svg);
    background-repeat: no-repeat;
    background-position: right 8px center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s;

    &:hover {
        box-shadow: 0 0 0 1px #101828 inset;
    }

    &.active {
        box-shadow: none;
        background-color: #444ce7;
        background-image: url(../../images/minus.svg);
        border-color: #444ce7;
        color: #fff;
    }
}

.address {
    margin-bottom: 16px;
    color: #667085;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.footer__center__top .address {
    margin-top: 40px;
}

.subcats {
    padding-block: 48px;

    & + .category__desc {
        padding-top: 0;
    }
}

.subcats__title {
    color: #101828;
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.subcats__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 16px;
}

.subcats__item {
    text-decoration: none;
    color: #667085;
}

.header__top {
    background-color: #f2f4f7;
}

.header__menu {
    background-color: #f2f4f7;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.bg__hover {
    height: 100vh;
    height: 100dvh;
}
