.pagination-wrapper {
    display: flex;

    gap: 8px;
    margin-top: 20px;
}

.pagination-wrapper button {
    padding: 6px 12px;
    border: 1px solid #f5f5f5;
    background: #f5f5f5;
    cursor: pointer;
    aspect-ratio: 1/1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #686868;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pagination-wrapper button svg {
    font-size: 20px;
    color: #808080;
    font-weight: 600;
}

.pagination-wrapper button.active {
    background: #a3c526;
    color: #fff;
    border-color: #a3c526;
}

@media (min-width: 0px) and (max-width: 991.98px) {
    .pagination-wrapper button {
        width: 35px;
        height: 35px;
    }

    .pagination-wrapper {
        margin-top: 5px;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 0px) and (max-width: 575.98px) {
    .colm-section {
        padding: 4px;
    }

    .pagination-wrapper button {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .pagination-wrapper button svg {
        font-size: 16px;
    }
}