:root {
  --cs-yellow: #f6c343;
  --cs-dark: #1f2937;
  --cs-soft-bg: #f8fafc;
}

body {
  background: var(--cs-soft-bg);
}

.hero-card {
  background:
    radial-gradient(circle at top right, rgba(246, 195, 67, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.metric-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.metric-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.table .btn-sm {
  white-space: nowrap;
}

.form-text {
  color: #64748b;
}

.product-detail-list dt {
  color: #64748b;
  font-weight: 600;
}

.product-detail-list dd {
  margin-bottom: 0.75rem;
}

.alias-item {
  background: #ffffff;
}

.alias-item:hover {
  background: #f8fafc;
}

.search-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.search-input {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.search-form {
  align-items: flex-start;
}

.search-button-col {
  padding-top: 2rem;
}

.search-button-col .btn {
  min-height: 48px;
}

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(246, 195, 67, 0.20), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.dashboard-hero {
  overflow: hidden;
  position: relative;
}

.hero-description {
  max-width: 760px;
}

.hero-summary-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.hero-icon {
  font-size: 4.25rem;
  line-height: 1;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero-mini-stat {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 0.9rem 0.65rem;
  text-align: center;
}

.hero-mini-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.hero-mini-label {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.metric-icon-soft {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
  .hero-summary-card {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-icon {
    font-size: 3.25rem;
  }
}