body { font-family: 'Inter', sans-serif; }
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

.trace { width: 100%; height: 40px; }

.dot-grid {
  background-image: radial-gradient(#232C3D 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  opacity: 0.06;
}

.card-lift { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(236,30,42,0.25);
  border-color: #EC1E2A;
}

.chip { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }

.underline-grow { position: relative; }
.underline-grow::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0%;
  background: #EC1E2A;
  transition: width .2s ease;
}
.underline-grow:hover::after { width: 100%; }

.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

.stock-dot { width:7px; height:7px; border-radius:999px; display:inline-block; }

.chip-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  color: #232C3D;
  border-radius: 999px;
  padding: 5px 10px;
}
.chip-tag a { color: #6B7280; text-decoration: none; }
.chip-tag a:hover { color: #EC1E2A; }

/* Admin panel: order status badges */
.order-status-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-pending     { background: #FEF3C7; color: #92400E; }
.status-confirmed   { background: #DBEAFE; color: #1E40AF; }
.status-dispatched  { background: #E0E7FF; color: #3730A3; }
.status-delivered   { background: #D1FAE5; color: #065F46; }
.status-cancelled   { background: #FEE2E2; color: #991B1B; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track { animation: marquee 28s linear infinite; width: max-content; }
