.collection-quick-filters__container {
  padding-inline: min(1.75rem, var(--container-gutter));
}

collection-quick-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;

  .swiper {
    margin: 0;
  }

  .swiper-slide {
    width: fit-content;

    a,
    button {
      text-transform: none;
    }
  }

  [data-prev],
  [data-next] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;

    &:disabled {
      display: none;
    }
  }

  [data-prev] svg {
    transform: scaleX(-1);
  }

  .collection-quick-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 115px;
    text-align: center;
    gap: 10px;

    p {
      line-height: 1.2;
      font-weight: 500;
      font-weight: var(--heading-font-weight);
    }
  }

  .collection-quick-filter__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;

    img {
      width: 55px;
      height: 55px;
      object-fit: cover;
      object-position: center;
    }
  }
}

@media screen and (min-width: 700px) {
  .collection-quick-filters__container {
    padding-inline: 1.8rem;
  }

  collection-quick-filters .icon-wrapper {
    width: 100px;
    height: 100px;

    img {
      width: 75px;
      height: 75px;
    }
  }
}
