/* HEADER NAVIGATION */
.h__bg-vine {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 243, 235, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-soft), var(--shadow-inset);
  min-height: 64px;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.h__bg-vine::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.38), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.h__bg-vine::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 84px;
  height: 84px;
  background: radial-gradient(circle, rgba(208, 178, 122, 0.18) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.h__nav {
  display: flex;
  gap: 12px 18px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}

.h__nav--compact {
  justify-content: center;
  padding: 0;
  gap: 18px 26px;
}

.nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  position: relative;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: var(--font-sans);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 0;
  opacity: 0.82;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-wine));
  transition: width 0.35s ease;
}

.nav__link:hover {
  color: var(--secondary-color);
  opacity: 1;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--secondary-color);
  opacity: 1;
}

/* Feedback Button in Navigation */
.nav-feedback-btn {
  display: none; /* Hidden on desktop by default */
}

@media (max-width: 768px) {
  .h__bg-vine {
    padding: 0;
    min-height: auto;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .h__nav {
    gap: 0;
    padding: 0;
  }

  .nav-feedback-btn {
    display: block;
  }

  .nav__link,
  .nav__dropdown-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
