/* Garder tous les onglets produit sur la même ligne, avec scroll horizontal si besoin */
.product-tabs.tabs .nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  text-align: initial;
}

.product-tabs.tabs .nav-tabs .nav-item {
  float: none !important;
  display: block !important;
  margin: 0 !important;
  white-space: nowrap;
}

.product-tabs.tabs .nav-tabs .nav-item + .nav-item {
  margin-left: 0 !important;
}

.product-tabs.tabs .nav-tabs::-webkit-scrollbar {
  height: 0;
}
