.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.shop-pagination button {
  width: 42px;
  height: 42px;
  border: 1px solid #dce1e6;
  background: #fff;
  color: #172236;
  font-weight: 700;
  cursor: pointer;
}
.shop-pagination button.active,
.shop-pagination button:hover {
  background: #e4072f;
  border-color: #e4072f;
  color: #fff;
}
.shop-pagination button:disabled {
  opacity: .4;
  cursor: not-allowed;
}
