/* Fan Auth Pages Component */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  padding: var(--space-6);
}

.auth-card {
  background: var(--color-base);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.auth-card__logo {
  text-align: center;
  margin-bottom: var(--space-8);
}

.auth-card__logo img {
  margin-inline: auto;
}

.auth-card__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2);
}

.auth-card__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-8);
}

.auth-card__footer {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.auth-card__footer a {
  color: var(--color-highlight);
  font-weight: 600;
}

/* Fan orders page */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.order-card {
  background: var(--color-base);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.order-card__ref {
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.order-card__date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.order-status {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
}
.order-status--pending    { background: #fff3cd; color: #856404; }
.order-status--processing { background: #d1ecf1; color: #0c5460; }
.order-status--shipped    { background: #d4edda; color: #155724; }
.order-status--delivered  { background: #d4edda; color: #155724; }
.order-status--cancelled  { background: #f8d7da; color: #721c24; }
