/* Shared listing controls: anchors and AJAX buttons use the same appearance. */
.products .results .pagination-wrap .pagination {
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}
.products .results .pagination-wrap .pagination li {
    width: 36px;
    height: 36px;
    margin: 0;
    border: 0;
    background: transparent;
    border-radius: 4px;
}
.products .results .pagination-wrap .pagination li > a,
.products .results .pagination-wrap .pagination li > button,
.products .results .pagination-wrap .pagination li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    color: #222;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}
.products .results .pagination-wrap .pagination li > a:hover,
.products .results .pagination-wrap .pagination li > button:hover,
.products .results .pagination-wrap .pagination li.active > span {
    background: #ea468f;
    border-color: #ea468f;
    color: #fff;
}
.products .results .pagination-wrap .pagination li.active > span { cursor: default; }
.products .results .prsl__page { display: flex; align-items: center; gap: 10px; }
.products .results .prsl__page p { margin: 0; white-space: nowrap; }
.products .results .prsl__page > a,
.products .results .prsl__page > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}
.products .results .prsl__page > a:hover,
.products .results .prsl__page > button:hover { border-color: #ea468f; background: #fff3f8; }
.products .results .prsl__page img { display: block; width: 18px; height: 18px; }
.products .results .pagination_button:focus-visible,
.products .results .pagination_link:focus-visible,
.products .results .prsl__page a:focus-visible { outline: 2px solid #ea468f; outline-offset: 3px; }
