/* HEADER NAVIGATION */
.h__bg-vine {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, #fdfbf8 0%, #f8f4f0 50%, #fef9f5 100%);
  border: 2px solid var(--accent-wine);
  border-radius: 50px;
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.12);
  min-height: 56px;
}

.h__bg-vine::before {
  content: '🍷';
  position: absolute;
  left: 20px;
  opacity: 0.08;
  font-size: 90px;
  pointer-events: none;
  z-index: 1;
}

.h__bg-vine::after {
  content: '🍷';
  position: absolute;
  right: 20px;
  opacity: 0.08;
  font-size: 90px;
  pointer-events: none;
  z-index: 1;
}

.h__nav {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.h__nav--compact {
  justify-content: center;
  padding: 0;
  gap: 25px;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: var(--font-sans);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-wine);
  transition: width 0.4s ease;
}

.nav__link:hover {
  color: var(--accent-wine);
  transform: translateY(-1px);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--accent-wine);
}

/* Feedback Button in Navigation */
.nav-feedback-btn {
  display: none; /* Hidden on desktop by default */
}

@media (max-width: 768px) {
  .nav-feedback-btn {
    display: block;
  }
}
