.hl-track ul.products {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
}

.hl-track li.product {
  flex: 0 0 calc(100% / 6);
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .hl-track ul.products li.product {
    flex: 0 0 33.33%;
  }
}

@media (max-width: 600px) {
  .hl-track ul.products li.product {
    flex: 0 0 50%;
  }
}

.region-carousel {
  position: relative;
  width: 100%;
}

.rc-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.rc-item {
  flex: 0 0 calc(100% / 8);
  text-align: center;
  text-decoration: none;
  color: #000;
}

.rc-item img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.rc-item span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
}

.rc-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 12px;
  z-index: 10;
}

.rc-prev {
  left: -5px;
}

.rc-next {
  right: -5px;
}
@media (max-width:1200px){
.rc-item{flex:0 0 20%;}
}

@media (max-width:900px){
.rc-item{flex:0 0 33.33%;}
}

@media (max-width:600px){
.rc-item{flex:0 0 50%;}
}

/* Produktkarte als Referenz */
.product {
  position: relative;
}

/* Infos standardmäßig verstecken */
.wk-card-footer-info {
  opacity: 0;
  visibility: hidden;
  font-size: 11px;
  line-height: 1.25;
  margin-top: 4px;

  transition: opacity .2s ease;
}

/* Beim Hover anzeigen */
.product:hover .wk-card-footer-info {
  opacity: 1;
  visibility: visible;
}

/* Abstände der einzelnen Zeilen */
.wk-card-footer-info p {
  margin: 1px 0;
}


/* Grundpreis kleiner */
.wk-card-unit-price {
  font-size: 11px;
  line-height: 1.25;
}


/* Preis hervorheben */
.woocommerce-Price-amount {
  font-size: 14px;
  font-weight: 600;
}