/* --- Productbar (Steri24 CI) --- */
.productbar {
  display: flex;
  overflow-x: auto;
  background: #eee;
  padding: 10px 8px;
  gap: 10px;
  font-family: "Fira Sans", Arial, sans-serif;
  border-bottom: 2px solid #eee;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  color: #000;
}

.productbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  min-width: 160px;
  max-width: 160px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  padding: 4px;
  border-radius: 6px;
}

.productbar a img {
  width: 100%;
  height: 166px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 6px;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.productbar a span {
  font-size: 13px;
  line-height: 1.3;
}

.productbar a:hover img {
  transform: scale(1.05);
  border-color: #ffd6df;
}

.productbar a.active {
  background: #8d0022;
  border: 1px solid #fff;
}

/* --- Optional table styles (shared) --- */
.productbar-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 14px;
  margin: 20px 0;
  border: 1px solid #ccc;
}

.productbar-table th,
.productbar-table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.productbar-table th {
  background: #f3f3f3;
  font-weight: 600;
}

.productbar-table tr:nth-child(even) {
  background: #fafafa;
}

@media (max-width: 768px) {
  .productbar-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
