/* LEE popularny cat */

#popular-cats .popcat {
  -webkit-user-drag: none; /* stop img download */
  user-select: none; /* stop img download */
  display: block;
  position: relative;
  text-decoration: none;
}
#popular-cats .popcat-figure {
  -webkit-user-drag: none; /* stop img download */
  user-select: none; /* stop img download */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0;
}
#popular-cats img {
  -webkit-user-drag: none; /* stop img download */
  user-select: none; /* stop img download */
  pointer-events: none; /* stop img download */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
#popular-cats .popcat:hover img {
  transform: scale(1.03);
}

@media (min-width: 992px) {
  #popular-cats > .container {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #popular-cats .row.popcats {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 0;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }

  #popular-cats .row.popcats > .popcat {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  #popular-cats .section-title {
    padding: 10px 40px;
  }
}

@media (max-width: 767.98px) {
  #popular-cats .popcats {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: 10px;
  }

  #popular-cats .popcats::-webkit-scrollbar {
    display: none;
  }

  #popular-cats .popcat {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 7px;
    margin-bottom: 10px;
  }

  .row.g-3.popcats {
    margin-left: 10px !important;
  }

  #popular-cats .popcat-figure {
    height: 100%;
  }
  #popular-cats img {
    height: 100%;
  }
  #popular-cats .section-title {
    padding-bottom: 10px !important;
  }
}

@media (min-width: 768px) {
  #popular-cats .popcats-dots {
    display: none;
  }
}

/* dots */
/* #popular-cats .popcats-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 0;
}
#popular-cats .popcats-dots .dot {
  width: 22px;
  height: 4px;
  background: #ddd;
  border-radius: 3px;
  border: 0;
}
#popular-cats .popcats-dots .dot.is-active {
  background: orange;
} */
