:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --bg-2: #eef1f7;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.1);
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --gold: #10b981;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  --table-row: rgba(255, 255, 255, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1100px 640px at 10% -12%, rgba(37, 99, 235, 0.1), transparent 54%),
    radial-gradient(900px 600px at 95% 4%, rgba(16, 185, 129, 0.08), transparent 52%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

body[data-page="home"] {
  background:
    radial-gradient(1100px 640px at 10% -12%, rgba(37, 99, 235, 0.12), transparent 54%),
    radial-gradient(900px 600px at 92% 6%, rgba(16, 185, 129, 0.08), transparent 54%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

h1,
h2,
h3,
.brand-mark {
  font-family: inherit;
  letter-spacing: -0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

a {
  color: inherit;
}

.topbar,
.site-header,
.page-shell {
  margin: 0 auto;
}

.page-shell {
  width: min(1140px, calc(100% - 32px));
}

.topbar,
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.topbar .nav,
.site-header .nav {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand .logo {
  width: 56px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px 8px;
}

.brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .name strong {
  font-size: 14px;
  letter-spacing: 0.2px;
}

.brand .name span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.menu,
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.menu a,
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.menu a:hover,
.menu a.active,
.menu a[aria-current="page"],
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.page-shell {
  display: grid;
  gap: 24px;
  padding-bottom: 42px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 32px;
}

.hero-card,
.contact-panel,
.list-panel,
.detail-panel,
.contact-form-panel,
.section-grid,
.section-shell {
  padding: 28px;
}

.section-shell {
  display: grid;
  gap: 18px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-sentence {
  letter-spacing: 0.04em;
  text-transform: none;
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.button-secondary {
  color: var(--accent-strong);
  background: rgba(241, 245, 249, 0.92);
  border-color: rgba(37, 99, 235, 0.14);
}

.hero-card {
  display: grid;
  gap: 16px;
  border-left: 1px solid rgba(148, 163, 184, 0.18);
}

.card-kicker,
.section-head .eyebrow {
  margin-bottom: 6px;
}

.featured-grid,
.inventory-grid,
.info-grid {
  display: grid;
  gap: 16px;
}

.featured-grid,
.inventory-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mini-card,
.inventory-card,
.detail-card,
.detail-contact-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.mini-card,
.detail-card,
.detail-contact-card {
  padding: 18px;
}

.compact-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  padding: 32px;
}

.compact-hero-copy {
  display: grid;
  gap: 16px;
}

.compact-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.compact-point {
  display: grid;
  gap: 8px;
}

.compact-point h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.compact-hero-note {
  max-width: 60ch;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(37, 99, 235, 0.06);
  color: var(--muted);
}

.inventory-card {
  padding: 18px;
  min-height: 100%;
}

.inventory-card a {
  text-decoration: none;
  display: grid;
  gap: 12px;
  height: 100%;
}

.inventory-card-top,
.detail-topline,
.meta-row,
.hero-chips,
.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-strong);
  font-size: 0.9rem;
}

.inventory-card h3,
.detail-card h2 {
  margin-bottom: 0;
}

.inventory-meta,
.detail-meta {
  display: grid;
  gap: 8px;
}

.inventory-spec,
.detail-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inventory-spec > div,
.detail-spec > div {
  background: rgba(37, 99, 235, 0.04);
  border-radius: 14px;
  padding: 10px 12px;
}

.inventory-spec dt,
.detail-spec dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.inventory-spec dd,
.detail-spec dd {
  margin: 0;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
}

.inventory-guidance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="inventory-list"] .inventory-hero-tight {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 24px;
}

body[data-page="inventory-list"] .inventory-hero-tight .compact-hero-points {
  display: none;
}

body[data-page="inventory-list"] .inventory-hero-tight .compact-hero-copy {
  gap: 12px;
}

body[data-page="inventory-list"] .inventory-hero-tight .compact-hero-note {
  max-width: 48rem;
}

body[data-page="home"] .hero {
  padding-bottom: 24px;
}

body[data-page="home"] .hero .compact-hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}

.search-bar,
.toolbar-form,
.contact-form {
  display: grid;
  gap: 12px;
}

.search-bar {
  min-width: min(100%, 480px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-self: end;
}

.toolbar-form {
  width: 100%;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: stretch;
}

.search-bar input,
.toolbar-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
}

.toolbar-form input {
  min-height: 58px;
  border-radius: 15px;
  padding-inline: 18px;
}

.toolbar-form .button-primary {
  min-height: 58px;
  min-width: 116px;
  align-self: stretch;
}

.search-bar input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.28);
}

.inventory-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.toolbar {
  display: grid;
  gap: 12px;
}

.toolbar-form {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 12px;
  align-items: center;
}

.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-items: end;
}

.toolbar-field {
  display: grid;
  gap: 8px;
  min-width: 160px;
}

.toolbar-field span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toolbar-field select {
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.list-panel,
.detail-panel {
  display: grid;
  gap: 18px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pager-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pager-number {
  min-width: 44px;
}

.pager-number.is-current {
  pointer-events: none;
}

.pager-ellipsis {
  color: var(--muted);
  padding: 0 2px;
}

.empty-state,
.status-line {
  text-align: center;
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.detail-hero {
  display: grid;
  gap: 16px;
}

.detail-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 0;
}

.detail-card-grid {
  display: grid;
  gap: 16px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.detail-fact {
  background: rgba(37, 99, 235, 0.05);
  border-radius: 16px;
  padding: 14px 16px;
}

.detail-fact span {
  display: block;
}

.detail-fact .label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.detail-fact .value {
  font-weight: 700;
}

.inventory-table {
  display: grid;
  gap: 14px;
}

.inventory-table-shell {
  display: grid;
  gap: 10px;
}

.inventory-table-head,
.inventory-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(150px, 1.04fr) minmax(72px, 0.56fr) minmax(96px, 0.86fr) minmax(96px, 0.82fr) minmax(180px, 1.08fr) minmax(180px, 1.12fr) minmax(120px, 0.92fr);
  gap: 12px;
  align-items: center;
}

.inventory-table-head {
  padding: 0 8px 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.inventory-table-body {
  display: grid;
  gap: 10px;
}

.inventory-row {
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background: var(--table-row);
  padding: 14px 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.inventory-row:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.10);
}

.inventory-row .cell {
  min-width: 0;
}

.inventory-row .cell-model strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.inventory-row .cell-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.inventory-row .cell-model,
.inventory-row .cell-brand,
.inventory-row .cell-contact,
.inventory-row .cell-lot {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-row .cell-model .detail-link,
.inventory-row .cell-contact .mailto-link {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-row .cell-note {
  min-width: 0;
  color: var(--muted);
}

.inventory-row .table-note-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-row .cell-contact {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.93rem;
}

.inventory-row .detail-link,
.inventory-row .mailto-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(37, 99, 235, 0.06);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.tabler-action-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.tabler-action-label {
  line-height: 1;
}

.contact-chip-icon-only {
  width: 34px;
  min-width: 34px;
  padding: 0;
}

.contact-chip-whatsapp {
  color: #047857;
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
}

.contact-chip-mail {
  color: var(--accent-strong);
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
}

.inventory-row .mailto-link {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-toolbar .toolbar-form input[type="search"] {
  min-height: 48px;
  padding: 0 16px;
}

.inventory-toolbar .button {
  min-height: 48px;
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.redirect-panel {
  width: min(560px, calc(100vw - 32px));
  display: grid;
  gap: 14px;
  text-align: center;
}

.inventory-row .detail-link:hover,
.inventory-row .mailto-link:hover {
  text-decoration: underline;
}

.detail-note-grid {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}

.detail-note-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.05);
}

.detail-note-row .label {
  color: var(--muted);
}

.detail-note-row .value {
  font-weight: 700;
  text-align: right;
}

.search-bar input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.inventory-followup {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.detail-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.detail-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inventory-card-note,
.empty-state,
.status-line {
  text-align: left;
  color: var(--muted);
}

.empty-state {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.65);
}

.contact-form {
  margin-top: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid span {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-span-2 {
  grid-column: span 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 920px) {
  .hero,
  .section-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .compact-hero-shell,
  .compact-hero-points,
  .inventory-kpi-grid,
  .inventory-guidance-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .site-header {
    flex-direction: column;
    align-items: start;
  }

  .topbar .nav,
  .site-header .nav {
    flex-direction: column;
    align-items: start;
  }

  .search-bar {
    width: 100%;
  }

  .toolbar-form {
    grid-template-columns: 1fr;
  }

  .toolbar-actions {
    justify-content: flex-start;
  }

  .inventory-table-head {
    display: none;
  }

  .inventory-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "model model"
      "brand brand"
      "qty lot"
      "package package"
      "note note"
      "contact contact"
      "updated updated";
  }

  .cell-model { grid-area: model; }
  .cell-brand { grid-area: brand; }
  .cell-qty { grid-area: qty; }
  .cell-lot { grid-area: lot; }
  .cell-package { grid-area: package; }
  .cell-note { grid-area: note; white-space: normal; }
  .cell-contact { grid-area: contact; }
  .cell-updated { grid-area: updated; }
}

@media (max-width: 680px) {
  .hero,
  .hero-card,
  .section-grid,
  .section-shell,
  .list-panel,
  .detail-panel,
  .contact-form-panel {
    padding: 20px;
  }

  .compact-hero-shell {
    padding: 20px;
  }

  .form-grid,
  .inventory-spec,
  .detail-spec {
    grid-template-columns: 1fr;
  }

  .search-bar,
  .toolbar-form {
    grid-template-columns: 1fr;
  }

  .button-row,
  .site-nav,
  .menu {
    width: 100%;
  }

  .site-nav a,
  .menu a {
    padding-inline: 10px;
  }
}

/* MacBook Air viewport closure */
.page-shell {
  width: min(1040px, calc(100% - 28px));
  gap: 18px;
  padding-bottom: 28px;
}

.topbar .nav,
.site-header .nav {
  width: min(1040px, calc(100% - 28px));
  gap: 16px;
  padding: 12px 0;
}

.panel {
  border-radius: 18px;
}

.compact-hero-shell,
.detail-panel,
.contact-form-panel,
.section-shell {
  padding: 22px;
}

.compact-hero-copy,
.detail-hero,
.detail-card-grid,
.inventory-table,
.toolbar {
  gap: 12px;
}

.lead {
  max-width: 58ch;
}

.compact-hero-note {
  padding: 12px 14px;
}

.section-head {
  margin-bottom: 12px;
}

.inventory-kpi-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.toolbar-form {
  grid-template-columns: minmax(0, 1.25fr) auto;
}

.toolbar-form input {
  min-height: 50px;
  padding-inline: 16px;
}

.toolbar-form .button-primary {
  min-height: 50px;
  min-width: 104px;
}

.toolbar-actions {
  gap: 8px;
  justify-content: flex-start;
}

.toolbar-field {
  min-width: 132px;
}

.inventory-table-head,
.inventory-row {
  grid-template-columns:
    minmax(170px, 1.42fr)
    minmax(120px, 0.94fr)
    minmax(66px, 0.52fr)
    minmax(84px, 0.74fr)
    minmax(84px, 0.74fr)
    minmax(150px, 0.96fr)
    minmax(150px, 1.02fr)
    minmax(110px, 0.82fr);
  gap: 10px;
}

.inventory-row {
  padding: 12px 14px;
}

.detail-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  gap: 14px;
}

.detail-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.detail-facts {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.detail-fact {
  padding: 12px 14px;
}

.contact-form {
  gap: 10px;
}

.form-grid {
  gap: 12px;
}

.inventory-followup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.inventory-followup .muted {
  margin: 0;
}

@media (max-width: 1500px) {
  body[data-page="inventory-list"] .page-hero,
  body[data-page="inventory-list"] .compact-hero-shell {
    padding: 18px 20px;
  }

  body[data-page="inventory-list"] .inventory-kpi-grid {
    display: none;
  }
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(960px, calc(100% - 28px));
  }

  .topbar .nav,
  .site-header .nav {
    width: min(960px, calc(100% - 28px));
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .inventory-table-head,
  .inventory-row {
    grid-template-columns:
      minmax(170px, 1.35fr)
      minmax(110px, 0.9fr)
      minmax(66px, 0.52fr)
      minmax(84px, 0.72fr)
      minmax(84px, 0.72fr)
      minmax(136px, 0.92fr)
      minmax(136px, 0.92fr)
      minmax(100px, 0.8fr);
  }
}
