/* Taste Matrix — Shared Nav & Footer */
@import url('/shipit/assets/shared.css');

/* ─── FIXED BLUR NAV ─────────────────────────────────────────────── */
.taste-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 60px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border, #f0f0f0);
  z-index: 50;
  font-family: 'IBM Plex Mono', monospace;
}

.taste-nav__brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text, #1a1a1a);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.taste-nav__brand:hover {
  color: var(--text-secondary, #666);
}

.taste-nav__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary, #666);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 4px;
  transition: all 0.2s;
}
.taste-nav__link:hover {
  border-color: var(--text, #1a1a1a);
  color: var(--text, #1a1a1a);
}

/* Body padding for fixed nav */
body {
  padding-top: var(--nav-height, 56px);
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.taste-footer {
  padding: 24px clamp(16px, 4vw, 60px) 28px;
  border-top: 1px solid var(--border, #f0f0f0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
}

.taste-footer__brand {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary, #999);
}

.taste-footer__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.taste-footer__links a {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--text-tertiary, #999);
  text-decoration: none;
  transition: color 0.2s;
}
.taste-footer__links a:hover {
  color: var(--text, #1a1a1a);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .taste-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .taste-nav {
    padding: 0 12px;
  }
  .taste-footer {
    padding: 16px 12px 20px;
  }
}
