.subtabs {
  position: sticky;
  top: 137px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: .65rem clamp(1.2rem, 8vw, 9rem);
  background: rgba(244, 239, 229, .97);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.subtabs[hidden] { display: none; }
.tabs button { white-space: nowrap; }
.tabs button.active { background: rgba(255, 255, 255, .28); }

.subtabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(111, 24, 36, .24);
  border-radius: 999px;
  background: transparent;
  color: var(--dark);
  padding: .55rem 1rem;
  font: 600 .74rem Inter;
  cursor: pointer;
}

.subtabs button:hover,
.subtabs button:focus-visible,
.subtabs button.active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

@media (max-width: 820px) {
  .subtabs {
    top: 125px;
    justify-content: flex-start;
    padding: .55rem 1rem;
  }
  .subtabs button { padding: .5rem .85rem; }
}
