.filter-row {
  display: flex;
  justify-content: flex-end;
  margin-block: 25px;
  color: #fff;
  gap: 25px;
  font-family: 'Lato', sans-serif;

  &.filter-row-centered {
    justify-content: center;
  }

  .filter-item {
    flex: 0 0 22%;
  }

  .filter-item label {
    text-align: center;
    display: block;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
  }

  select {
    background-color: transparent;
    border: 1px solid #fff;
    width: 100%;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 10px;
  }

  select option {
    background-color: #0068B5;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
  }

  select:focus-visible {
    outline-color: #0068B5;
  }
}

@media (width <= 767px) {
  .filter-row{
    .filter-item{
      flex: 0 0 75%;
    }
    &.filter-row-category{
      display: none;
    }
  }
}

.filter-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 15px;

  .filter-circle__content {
    width: 169px;
    height: 169px;
    border-radius: 50%;
    background-color: #D9D9D9;
    overflow: hidden;
  }

  .filter-circle__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: opacity(0.7) grayscale(0.7);
  }

  .filter-circle__text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    opacity: 0;
  }

  &:hover .filter-circle__content,
  &.filter-circle--active .filter-circle__content {
    background-color: #fff;
    transition: background-color 0.3s ease;
  }

  &:hover .filter-circle__text,
  &.filter-circle--active .filter-circle__text {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  &:hover .filter-circle__image,
  &.filter-circle--active .filter-circle__image {
    filter: opacity(0.9) grayscale(0);
    transition: filter 0.3s ease;
  }
}

.product-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* grid-template-columns: repeat(5, 1fr); */
  gap: 20px 15px;
  padding: 20px 5px;
}

.product-detail h3 {
  font-size: 1.4rem !important;
}

.product-list .product-item .box-grow__content {
  background-image: var(--background-image), linear-gradient(180deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.8) 100%);
  background-blend-mode: overlay;
  padding-bottom: 20px;
  border: 1px solid #0068B5;

  &:hover {
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.25);

  }
}

.product-list.is-detail-product .product-item .box-grow__content .box-grow__information{
  flex-wrap: wrap;
}
.product-item .product-item__specification_doc a{
    font-size: 1.1rem;
    color: #0068B5;
    font-family: 'Lato';
    font-weight: 500;

    &:hover{
      color: #F49B00;
    }

    svg{
      width: 18px;
      vertical-align: text-top;
    }

}

/* .product-item .box-grow__content:hover{
  background-blend-mode: overlay;
}*/

.product-item.box-grow{
  width: 100%;
  max-width: 270px;
}

.product-item .product-item__title {
  font-size: 1.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #0068B5;
  -webkit-text-stroke: 0.4px #ffffff;
}

.product-item .product-item__title a {
  text-decoration: none;
  color: inherit;
}

.product-item .product-item__description {
  font-size: 1.6rem;
  color: #0068B5;
  font-family: 'Lato';
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.2;

  span+span {
    text-transform: capitalize;
  }
}

.product-list .no-products-message p {
  font-size: 2.1rem;
  color: #fff;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.sl-pl-brand-light-move {
  overflow: hidden;
  position: relative;
  /* display: inline-block;
  line-height: 0;
  width: fit-content; */
}

.sl-pl-brand-light-move::after {
  /* animation: sl-pl-light-move-anim 3.5s linear .7s infinite;
  -webkit-animation: sl-pl-light-move-anim 3.5s linear .7s infinite; */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.45) 12%, rgba(255, 255, 255, 0) 24%);
  content: "";
  display: inline-block;
  height: 100%;
  left: -150%;
  position: absolute;
  top: 0;
  transform: translateX(0px) skewX(-45deg);
  -webkit-transform: translateX(0px) skewX(-45deg);
  width: 100%;
}

.sl-pl-brand-light-move:hover::after {
  animation: sl-pl-light-move-anim 2s linear;
  -webkit-animation: sl-pl-light-move-anim 2s linear;
}

@-webkit-keyframes sl-pl-light-move-anim {
  0% {
    -webkit-transform: translateX(0) skewX(-45deg)
  }

  40%,
  100% {
    -webkit-transform: translateX(400%) skewX(-45deg)
  }
}

@keyframes sl-pl-light-move-anim {
  0% {
    transform: translateX(0) skewX(-45deg)
  }

  40%,
  100% {
    transform: translateX(400%) skewX(-45deg)
  }
}

.list-items:has(.box-grow__content:hover) .box-grow__content:not(:hover) {
  z-index: 0;
  opacity: 0.7;
}

.product-list .loading-products {
  display: flex;
  flex-direction: column;
  height: 110px;
  justify-content: flex-start;
  align-items: center;

  .loading-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    display: block;
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff #0000;
  animation: l1 1s infinite;
}

@keyframes l1 {
  to {
    transform: rotate(.5turn)
  }
}