/* Credo Wine — bara sticky de categorii pe pagina de meniu. */
.credo-menu-nav {
  position: relative;
  z-index: 90;
  background: rgba(10, 19, 22, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214, 130, 64, 0.18);
  border-bottom: 1px solid rgba(214, 130, 64, 0.28);
}

.credo-menu-nav.is-fixed {
  position: fixed;
  top: 80px; /* sub header-ul fix al temei (.tst-menu-frame) */
  left: 0;
  right: 0;
}

.credo-menu-nav__inner {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  scroll-behavior: smooth;
}

.credo-menu-nav__inner::-webkit-scrollbar {
  display: none;
}

.credo-menu-nav a {
  flex: 0 0 auto;
  padding: 17px 15px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d3cfc6;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.credo-menu-nav a:hover {
  color: #fff;
}

.credo-menu-nav a.is-active {
  color: #d68240;
  border-bottom-color: #d68240;
}

.credo-cat-anchor {
  scroll-margin-top: 72px;
}

/* Desktop: fără scroll orizontal (inaccesibil cu mouse-ul) — toate categoriile
   vizibile pe două rânduri, centrate. */
@media (min-width: 1025px) {
  .credo-menu-nav__inner {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }

  .credo-menu-nav a {
    padding: 13px 14px 10px;
  }
}
