.tab-nav-wrapper {
  position: relative;
  overflow: hidden;
}

#tabNav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden !important;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#tabNav::-webkit-scrollbar {
  display: none;
}

.tab-nav-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  background: linear-gradient( to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) );
  pointer-events: none;
  z-index: 10;
}

#tabNav .nav-link {
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  height: 100%;
  flex-shrink: 0;
}

#tabNav .active {
  background-color: var(--szron-dark-blue);
  color: #fff;
}

@media (max-width: 768px) {
  #tabNav .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
}

/* LISTA W TABSACH */

.mobile-tabs-products {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
}

@media (min-width: 768px) {
  .mobile-tabs-products {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .mobile-tabs-products li:nth-child(odd) {
    border-right: 1px solid var(--bs-border-color);
  }
}

