.svg-wrapper-grid{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}
.pagination-wrapper {
  margin-top: 4rem;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

.pagination__item-arrow {
background-color: #FFD400;
    background-color: transparent;
    height: 45px;
    width: 45px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    border: .5px solid #fff;
    transition: .3s ease;
    
}
.product_count{
  display: none;
}
.pagination__item-arrow:hover,
.pagination__item-arrow:active {
  background-color: #FFD400;
  border-color:#FFD400;
}
.pagination__item-arrow:hover svg path,
.pagination__item-arrow:active svg path {
    fill:#4D008C;
}

.pagination__item[aria-current="page"] {
    background-color: #FFD400;
    color: #4D008C;
    opacity: 1;
    border-radius: 20px;
}

.pagination__item[aria-current="page"]::after {
  display: none;
}

@media screen and (min-width: 990px) {
  .pagination-wrapper {
    margin-top: 5rem;
  }
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination__list>li {
  flex: 1 0 4.4rem;
  max-width: 4.4rem;
}

.pagination__list>li:not(:last-child) {
  margin-right: 1rem;
}

.pagination__item {
  color: rgb(var(--color-foreground));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 4.4rem;
  width: 100%;
  padding: 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
}

a.pagination__item:hover::after {
  height: 0.1rem;
}

.pagination__item .icon-caret {
  height: 0.6rem;
}

.pagination__item--current::after {
  height: 0.1rem;
}



.pagination__item--next .icon {
  margin-left: -0.2rem;
  transform: rotate(90deg);
}

.pagination__item--next:hover .icon {
  transform: rotate(90deg) scale(1.07);
}

.pagination__item--prev .icon {
  margin-right: -0.2rem;
  transform: rotate(-90deg);
}

.pagination__item--prev:hover .icon {
  transform: rotate(-90deg) scale(1.07);
}

.pagination__item-arrow:hover::after {
  display: none;
}

.load_btn {
  display: none;
}

@media screen and (max-width:750px) {
  .pagination {
    display: none;
  }
.product_count{
  display: block;
  color: #4D008C;
}
  .load_btn {
        display: block;
        font-family: "Outfit", sans-serif;
        font-weight: 400;
        font-style: normal;
        border: 0.5px solid #4d008c;
        background-color: #4D008C;
        color: #FFFBE4;
        border-radius: 13px;
        width: 80%;
        font-size: 20px;
        text-transform: uppercase;
        padding: 7px;
        cursor: pointer;
        margin: 15px auto 0;
        transition: all .3s;
  }

  .load_btn:hover,
  .load_btn:active {
background-color: transparent;
        color: #4D008C;
        border: 1px solid #4d008c;
  }

 .pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px !important;
  }
}
@media screen and (max-width:860px) {
  .pagination__item {
    color: #4D008C;
    
}
  .pagination__item-arrow{
    border: .5px solid #4D008C;
  }
  .svg-wrapper-grid path{
    fill: #4D008C;
  }
}