* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

.top-header {
    padding: 16px 25px 0 25px;
}

.shop-page__section {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.shop-page__container {
    width: 100%;
    max-width: 1173px;
    margin: 0 auto;
}
.shop-page__shop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px 53px;
}
.shop-page__shop-content h2 {
    text-align: center;
}
.shop-page__shop-content p {
    text-align: center;
    color: var(--color-text-body);
    font-size: var(--heading5-font-size);
}

.shop-page__filter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 53px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

.shop-page__filter-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    padding: 14.5px 10.5px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
}
.explore-product__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    padding-top: 50px;
    padding-bottom: 30px;
}
.explore-product__pagination button {
    padding: 10px 20px;
    border-radius: 6px;
    border: 1.5px solid #e4e4e4;
    outline: none;
    background-color: var(--color-white);
    font-size: 23px;
}
.explore-product__pagination button:first-child {
    background: var(--color-header-secondary-bg);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .shop-page__section {
        padding-top: 40px;
    }
    .shop-page__filter {
        padding-top: 30px;
    }
    .explore-product__pagination {
        padding-bottom: 0;
    }
}
