.pure-categories-item:hover .pure-categories-img img {
    transform: scale(1.1);
}
.pure-categories-img img {
    --time: 0.3s;
    -webkit-transition: all var(--time) ease-out;
    -moz-transition: all var(--time) ease-out;
    -ms-transition: all var(--time) ease-out;
    -o-transition: all var(--time) ease-out;
    transition: all var(--time) ease-out;
}

.pure-categories-img {
    --width: 100px;
    --height: 100px;
    width: var(--width);
    height: var(--height);
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 8px;
}
.pure-categories-title {
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.pure-categories-btn {
    --width: 40px;
    --height: 40px;
    --top: 50%;
    position: absolute;
    top: var(--top);
    transform: translateY(-50%);
    z-index: 11;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    width: var(--width);
    height: var(--height);
    border-radius: 50%;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}

.pure-categories-btn:hover {
    cursor: pointer;
    color: #fff;
    background-color: #000;
}

.pure-categories-prev {
    inset-inline-start: 0;
    transform: translateX(-50%);
}

.pure-categories-next {
    inset-inline-end: 0;
    transform: translateX(50%);
}

.pure-categories-slider-widget {
    position: relative;
}

.pure-categories-slider-widget:hover .pure-categories-btn {
    visibility: visible;
    opacity: 1;
}

.aqf-collection-item {
  background-color: #f9f9f9;
}
.aqf-collection-item:hover .aqf-collection-thumb img {
  transform: scale(1.15);
}
.aqf-collection-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 5px;
  color: #000;
  transition: all .3s ease-in-out;
}
.aqf-collection-title:hover {
  color: red;
}
.aqf-collection-content {
  padding-inline-end: 30px;
}
.aqf-collection-content span {
  font-size: 15px;
  line-height: 1;
  color: #55585B;
}
.aqf-collection-content-wrap {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aqf-collection-link {
  height: 44px;
  width: 44px;
  display: grid;
  place-content: center;
  text-align: center;
  display: inline-block;
  border-radius: 30px;
  color: #000;
  background-color: #fff;
  transition: all .3s ease-in-out;
}
.aqf-collection-link span {
  display: inline-block;
}
.aqf-collection-link:hover {
  color: #fff;
  background-color: #000;
}
.aqf-collection-active {
  margin-inline-end: -600px;
}

.aqf-collection-thumb {
  overflow: hidden;
}
.aqf-collection-thumb img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}