/* === ALTERNATIVNÍ PRODUKTY - ON RUNNING STYL === */

/* Reset původních stylů */
#productsAlternative .product {
  border: 0 !important;
  border-radius: 0 !important;
  height: auto !important;
  margin: 0 !important;
}

#productsAlternative .products-block.products .product {
  padding: 0 !important;
  height: auto !important;
  border: 0 !important;
  box-sizing: border-box !important;
}

#productsAlternative .products-block.products .product:hover {
  border: 0 !important;
  box-shadow: none !important;
}

/* Aktivní produkt - bez rámečku */
#productsAlternative .product.aktivni-produkt {
  border: 0 !important;
  border-color: transparent !important;
}

#productsAlternative .product.aktivni-produkt::before {
  display: none !important;
}

/* Underline pod aktivním produktem */
#productsAlternative .product {
  position: relative;
}

#productsAlternative .product.aktivni-produkt::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #192826;
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* Vnitřní padding a pozadí */
#productsAlternative .products-block .p {
  background-color: transparent !important;
  padding: 8px !important;
  border-radius: 0 !important;
}

#productsAlternative .products-block .aktivni-produkt .p {
  background-color: transparent !important;
}

/* Obrázky */
#productsAlternative .products-block .p img {
  height: 44px !important;
  width: auto !important;
  mix-blend-mode: darken;
}

/* Nadpis "Barva" - stejný styl jako "VELIKOST" */
#productsAlternative::before {
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: #192826 !important;
  margin-bottom: 16px !important;
  letter-spacing: 0 !important;
}

#productsAlternative {
  margin: 0 0 24px 0;
  padding-bottom: 8px;
}

/* Skrytí šipek a teček */
#productsAlternative .slick-arrow,
#productsAlternative .slick-dots {
  display: none !important;
}

/* === DESKTOP - 7 bot na řádek === */
@media screen and (min-width: 768px) {

  #productsAlternative .products-block {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }

  #productsAlternative .products-block.products .product {
    width: calc(100% / 7) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  #productsAlternative .slick-track {
    display: flex !important;
    width: auto !important;
    padding: 0 !important;
  }

  #productsAlternative .slick-list {
    margin: 0 !important;
  }
}

/* === MOBIL - 6 viditelných + 7. čouhá === */
@media screen and (max-width: 767px) {

  #productsAlternative .products-block {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    margin: 0 -10px 0 0 !important; /* pravý přesah */
    padding-right: 10px !important;
  }

  /* Skrytí scrollbaru */
  #productsAlternative .products-block::-webkit-scrollbar {
    display: none;
  }

  #productsAlternative .products-block {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Každá bota = 1/6.5 šířky → 6 celých + kousek 7. */
  #productsAlternative .products-block.products .product {
    flex: 0 0 calc(100% / 6.5) !important;
    width: calc(100% / 6.5) !important;
    margin: 0 !important;
    scroll-snap-align: start;
    border: 0 !important;
  }

  #productsAlternative .products-block.products .product.aktivni-produkt {
    border: 0 !important;
    border-color: transparent !important;
  }

  #productsAlternative .products-block .p img {
    height: 38px !important;
  }

  #productsAlternative .products-block .p {
    padding: 6px 4px !important;
  }
}