/* components.css — Burger Joint */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  min-height: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 20px;
  background: white;
  color: #d21033;
  border: 2px solid #d21033;
}
.btn:hover { background: #d21033; color: white; opacity: 1; }
.btn--primary { background: white; color: #d21033; }
.btn--primary:hover { background: #d21033; color: white; opacity: 1; }
.btn--yellow { background: white; color: #d21033; }
.btn--yellow:hover { background: #d21033; color: white; opacity: 1; }
.btn--outline { background: white; color: #d21033; }
.btn--outline:hover { background: #d21033; color: white; opacity: 1; }
.btn--outline-light { background: white; color: #d21033; }
.btn--outline-light:hover { background: #d21033; color: white; opacity: 1; }
.btn--full { width: 100%; }
.btn--sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; min-height: 36px; }
.link-accent { color: #d21033; font-weight: 700; font-size: var(--text-sm); font-family: 'Inter', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; }
