/* SLHW Trading — phone-first */
:root {
  --slhw-navy: #14213d;
  --slhw-gold: #fca311;
}

body {
  background: #f4f5f7;
  padding-bottom: 72px; /* room for the fixed bottom nav */
}

/* Phone-first, but keep content readable (not full-bleed) on tablet/desktop. */
@media (min-width: 768px) {
  .main-content { max-width: 760px; margin-inline: auto; }
}

.topbar { background: var(--slhw-navy); }
.topbar .app-brand { font-weight: 600; letter-spacing: .5px; }
.topbar-user { color: #e5e5e5; }

.bottom-nav {
  background: var(--slhw-navy);
  padding: .25rem 0 calc(.25rem + env(safe-area-inset-bottom));
}
.bottom-link {
  color: #aab2c5;
  text-align: center;
  text-decoration: none;
  font-size: .7rem;
  line-height: 1.1;
}
.bottom-link i { display: block; font-size: 1.25rem; }
.bottom-link.active, .bottom-link:hover { color: var(--slhw-gold); }

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slhw-navy);
  padding: 1rem;
}
.auth-card { width: 100%; max-width: 420px; }

.btn-flow {
  padding: 1.1rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.btn-flow i { font-size: 1.6rem; }

.badge-card { border-width: 2px; }

.item-card { border-left: 4px solid #ccc; }
.item-card.status-green { border-left-color: #198754; }
.item-card.status-amber { border-left-color: #ffc107; }
.item-card.status-red { border-left-color: #dc3545; }

.item-thumb {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.item-photo {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.category-chips .badge {
  font-size: .8rem;
  margin-right: .25rem;
  text-decoration: none;
}

.dest-buttons .btn { font-size: .8rem; padding: .5rem .25rem; }
.dest-buttons .btn i { font-size: 1.2rem; }

.variant-pills .badge { margin-top: .15rem; }
