@import url("https://api.fontshare.com/v2/css?f[]=satoshi@700&f[]=inter@400,500,600,700&display=swap");

:root {
  color-scheme: light;
  font-family: Aptos, "Segoe UI", Inter, system-ui, sans-serif;
  color: #0d0f14;
  background: #f6f7f9;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --charcoal: #0d0f14;
  --ink: #171a21;
  --muted: #69717d;
  --muted-strong: #505965;
  --paper: #f6f7f9;
  --surface: #ffffff;
  --soft: #f8f9fb;
  --soft-orange: #fff3ea;
  --soft-blue: #f0efff;
  --border: #e1e5eb;
  --border-strong: #cfd5de;
  --ember: #ff6a1a;
  --ember-dark: #d94f00;
  --coral: #ff5338;
  --gold: #ffb547;
  --violet: #2d0bff;
  --violet-dark: #2100ca;
  --success: #16794b;
  --success-soft: #e8f6ee;
  --warning: #8a5a00;
  --warning-soft: #fff5dc;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --shadow: 0 18px 60px rgba(13, 15, 20, 0.07);
  --shadow-small: 0 8px 24px rgba(13, 15, 20, 0.055);
}

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--paper); color: var(--charcoal); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid rgba(255, 106, 26, 0.3); outline-offset: 3px; }
.hidden { display: none !important; }

.app-shell { min-height: 100vh; }
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 1.4rem;
  padding: 0.8rem clamp(1rem, 3vw, 2.75rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(225, 229, 235, 0.96);
  backdrop-filter: blur(18px);
}
.brand-lockup {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.7vw, 1.2rem);
  color: var(--charcoal);
  text-decoration: none;
}
.brand-company {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  font-weight: 850;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand-company img { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-divider { width: 1px; align-self: stretch; min-height: 48px; background: var(--border); }
.product-lockup { display: grid; min-width: 0; }
.product-lockup strong {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  letter-spacing: 0.075em;
  line-height: 1;
}
.product-lockup small {
  margin-top: 0.35rem;
  max-width: 330px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 0.2rem; }
.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: #565e69;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.desktop-nav a:hover { color: var(--charcoal); background: var(--soft); transform: translateY(-1px); }
.desktop-nav a.active { color: var(--charcoal); background: var(--soft-orange); }
.nav-glyph { color: var(--ember); font-size: 0.95rem; line-height: 1; }
.identity-menu { justify-self: end; min-width: 0; display: grid; justify-items: end; gap: 0.22rem; }
.identity-menu .status-line { display: flex; align-items: center; justify-content: flex-end; gap: 0.45rem; color: var(--muted-strong); font-size: 0.78rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #a6adb6; box-shadow: 0 0 0 4px rgba(166, 173, 182, 0.12); }
.status-dot.ok { background: var(--success); box-shadow: 0 0 0 4px rgba(22, 121, 75, 0.12); }
.identity-text { max-width: 230px; overflow: hidden; color: var(--muted-strong); font-size: 0.76rem; text-overflow: ellipsis; white-space: nowrap; }
.identity-links { display: flex; justify-content: flex-end; gap: 0.65rem; }
.identity-links a { color: var(--muted); font-size: 0.72rem; text-decoration: none; }
.identity-links a:hover { color: var(--ember-dark); }
.mobile-nav { display: none; }

.view, main {
  width: min(1420px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0 5rem;
}
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  margin-bottom: 1.8rem;
}
.page-hero-copy { max-width: 870px; }
.eyebrow, .section-kicker {
  display: block;
  margin: 0 0 0.72rem;
  color: var(--ember);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-kicker { margin-bottom: 0.42rem; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--charcoal); }
h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5.3vw, 5.05rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}
h2 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -0.035em; }
h3 { margin: 0; font-size: 1.02rem; }
p { line-height: 1.6; }
.page-hero p { max-width: 760px; margin: 1rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.55vw, 1.16rem); }
.hero-aside {
  padding: 1.15rem;
  background: linear-gradient(145deg, #fff, #fff8f1);
  border: 1px solid #f1dfd1;
  border-radius: 22px;
  box-shadow: var(--shadow-small);
}
.hero-aside strong { display: block; margin-bottom: 0.42rem; font-size: 0.95rem; }
.hero-aside p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }

.panel {
  margin-bottom: 1.25rem;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-small);
}
.panel.flat { box-shadow: none; }
.panel.soft { background: var(--soft); box-shadow: none; }
.panel-header, .section-heading, .dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}
.panel-header p, .section-heading p { margin: 0.45rem 0 0; color: var(--muted); font-size: 0.86rem; }
.section-meta { display: grid; justify-items: end; gap: 0.25rem; }
.muted { color: var(--muted); font-size: 0.82rem; }

.primary-button, .secondary-button, .button-link, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--ember));
  box-shadow: 0 7px 18px rgba(255, 106, 26, 0.2);
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
button:hover, .primary-button:hover, .button-link:hover { transform: translateY(-1px); filter: saturate(1.05); box-shadow: 0 10px 24px rgba(255, 106, 26, 0.24); }
button:disabled, .primary-button:disabled, .secondary-button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
button.secondary, .secondary-button, .button-link.secondary {
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
button.secondary:hover, .secondary-button:hover, .button-link.secondary:hover { background: var(--soft); box-shadow: none; }
button.tertiary { color: var(--violet-dark); background: var(--soft-blue); border: 1px solid #d9d4ff; box-shadow: none; }
button.tiny { min-height: 32px; padding: 0.42rem 0.68rem; border-radius: 9px; font-size: 0.72rem; }
button.icon-button { min-height: auto; padding: 0.15rem 0.45rem; color: var(--muted-strong); background: transparent; box-shadow: none; font-size: 1.5rem; }
.text-link { color: var(--violet-dark); font-weight: 750; text-decoration: none; }
.text-link:hover { color: var(--ember-dark); }

.access-panel { display: grid; grid-template-columns: 1fr minmax(300px, 470px); gap: 1.4rem; align-items: center; }
.access-panel p { max-width: 780px; margin: 0.5rem 0 0; color: var(--muted); }
.emergency-access { padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 16px; background: var(--soft); }
.emergency-access summary { color: var(--muted-strong); cursor: pointer; font-weight: 750; }
.emergency-access[open] summary { margin-bottom: 0.8rem; }
.access-row { display: flex; align-items: end; gap: 0.6rem; }
.access-row label { flex: 1; }
label { display: grid; gap: 0.42rem; color: #3b424d; font-size: 0.78rem; font-weight: 750; }
input, select, textarea {
  width: 100%;
  padding: 0.78rem 0.88rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.12); }

.toolbar { display: flex; flex-wrap: wrap; align-items: end; gap: 0.7rem; }
.toolbar label { min-width: 145px; }
.toolbar .toolbar-status { margin-left: auto; align-self: center; }
.action-strip { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }

.cards, .metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.card, .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 145px;
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}
.card::after, .metric-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.16), rgba(255, 106, 26, 0.03) 60%, transparent 70%);
}
.metric-heading { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; }
.metric-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ember-dark);
  background: var(--soft-orange);
  font-size: 1rem;
  font-weight: 900;
}
.card span, .metric-card span { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 750; }
.card strong, .metric-card strong { position: relative; z-index: 1; display: block; margin: 0.65rem 0 0.25rem; font-size: clamp(1.65rem, 3vw, 2.15rem); letter-spacing: -0.04em; }
.card small, .metric-card small { position: relative; z-index: 1; color: var(--muted); font-size: 0.74rem; }

.table-wrap { overflow-x: auto; margin-top: 1rem; border: 1px solid var(--border); border-radius: 16px; }
table { width: 100%; min-width: 1120px; border-collapse: collapse; background: #fff; }
th, td { padding: 0.82rem 0.72rem; border-bottom: 1px solid #edf0f3; text-align: right; font-size: 0.78rem; white-space: nowrap; }
th { color: var(--muted); background: var(--soft); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.055em; }
th:first-child, th:nth-child(2), th:nth-child(3), th:nth-child(4), td:first-child, td:nth-child(2), td:nth-child(3), td:nth-child(4) { text-align: left; }
tbody tr:hover { background: #fffbf8; }
tbody tr:last-child td { border-bottom: 0; }
.empty { padding: 2.2rem !important; color: var(--muted); text-align: center !important; }
code { font-family: Consolas, "SFMono-Regular", monospace; font-size: 0.74rem; }

.badge, .status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge.matched, .status-approved, .status-connected { color: var(--success); background: var(--success-soft); }
.badge.review, .status-pending { color: var(--warning); background: var(--warning-soft); }
.badge.not-synced, .status-rejected, .status-expired, .status-not-prepared { color: #5d6570; background: #eef0f3; }
.badge.official-only, .status-awaiting { color: var(--violet-dark); background: var(--soft-blue); }

.diagnostics { display: grid; grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr); gap: 1.2rem; }
pre, .code-block {
  margin: 0;
  padding: 1rem;
  overflow: auto;
  color: #303640;
  background: #f7f8fb;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 0.76rem;
  line-height: 1.55;
  white-space: pre-wrap;
}
.details-panel { padding: 0; overflow: hidden; }
.details-panel summary { padding: 1rem 1.2rem; cursor: pointer; font-weight: 800; }
.details-panel[open] summary { border-bottom: 1px solid var(--border); }
.details-content { padding: 1.2rem; }

.callout { padding: 0.9rem 1rem; border: 1px solid #f0d9c7; border-radius: 14px; background: #fff8f2; color: #624837; font-size: 0.82rem; line-height: 1.55; }
.callout.success { border-color: #c9e7d5; background: #f1faf5; color: #285d40; }
.callout.info { border-color: #d9d4ff; background: #f7f5ff; color: #4433a5; }
.warning { padding: 0.75rem 0.85rem; color: var(--warning); background: var(--warning-soft); border: 1px solid #efd49a; border-radius: 12px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.2rem 0; }
dialog { width: min(720px, calc(100% - 30px)); padding: 1.4rem; background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 28px 90px rgba(13, 15, 20, 0.18); }
dialog::backdrop { background: rgba(246, 247, 249, 0.86); backdrop-filter: blur(6px); }
.dialog-actions { display: flex; justify-content: flex-end; gap: 0.65rem; margin-top: 1.2rem; }

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  max-width: min(430px, calc(100% - 2.5rem));
  padding: 0.85rem 1rem;
  color: #63300e;
  background: #fff6ee;
  border: 1px solid #f1c9aa;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(120px);
  transition: 0.25s ease;
}
.toast.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .app-header { grid-template-columns: minmax(300px, 1fr) auto; }
  .desktop-nav { order: 3; grid-column: 1 / -1; justify-content: center; padding-top: 0.15rem; }
  .page-hero { grid-template-columns: 1fr; align-items: start; }
  .hero-aside { max-width: 680px; }
  .cards, .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .access-panel, .diagnostics { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .app-header {
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
  }
  .brand-company span { display: none; }
  .brand-company img { width: 38px; height: 38px; }
  .brand-divider { min-height: 40px; }
  .product-lockup strong { font-size: 1rem; }
  .product-lockup small { max-width: 180px; }
  .desktop-nav { display: none; }
  .identity-menu .identity-text, .identity-links { display: none; }
  .identity-menu .status-line { font-size: 0.68rem; }
  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.42rem max(0.6rem, env(safe-area-inset-right)) max(0.42rem, env(safe-area-inset-bottom)) max(0.6rem, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }
  .mobile-nav a { display: grid; justify-items: center; gap: 0.18rem; padding: 0.38rem; color: var(--muted); font-size: 0.65rem; font-weight: 750; text-decoration: none; }
  .mobile-nav a span:first-child { color: var(--ember); font-size: 1rem; }
  .mobile-nav a.active { color: var(--charcoal); }
  .view, main { width: min(100% - 20px, 1420px); padding-top: 1.8rem; padding-bottom: 6rem; }
  h1 { font-size: clamp(2.2rem, 13vw, 3.5rem); }
  .page-hero { gap: 1rem; }
  .cards, .metric-grid, .form-grid { grid-template-columns: 1fr; }
  .panel-header, .section-heading, .dialog-heading { display: grid; }
  .section-meta { justify-items: start; }
  .access-row, .toolbar, .action-strip, .hero-actions { align-items: stretch; }
  .access-row { flex-direction: column; }
  .toolbar > *, .action-strip > *, .hero-actions > * { width: 100%; }
  .toolbar .toolbar-status { margin-left: 0; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions button { width: 100%; }
}

/* VOICE_CANONICAL_HEADER_START */
.app-header {
  min-height: 88px;
  grid-template-columns: minmax(460px, 1fr) auto minmax(190px, 1fr);
  gap: 1.5rem;
  padding: 0.8rem clamp(1rem, 3vw, 2.75rem);
  font-family: "Inter", Aptos, "Segoe UI", system-ui, sans-serif;
}
.brand-lockup { gap: clamp(0.8rem, 1.8vw, 1.3rem); }
.brand-company {
  width: clamp(210px, 19vw, 286px);
  height: 66px;
  display: block;
  flex: 0 0 auto;
  background: url("/babco-labs-logo.svg") left center / contain no-repeat;
  font-size: 0;
}
.brand-company img,
.brand-company span { display: none; }
.brand-divider { min-height: 48px; }
.product-lockup { align-content: center; }
.product-lockup strong {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--violet);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
.product-lockup strong::before {
  content: "";
  width: clamp(29px, 2.7vw, 36px);
  height: clamp(29px, 2.7vw, 36px);
  flex: 0 0 auto;
  background: url("/control-plane-mark.svg") center / contain no-repeat;
}
.product-lockup small { display: none; }
.desktop-nav { gap: 0.2rem; }
.desktop-nav a {
  gap: 0;
  padding: 0.7rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 650;
}
.nav-glyph { display: none; }
.identity-menu { gap: 0.2rem; }

@media (max-width: 1100px) {
  .app-header { grid-template-columns: minmax(0, 1fr) auto; }
  .brand-company { width: clamp(190px, 28vw, 250px); }
  .product-lockup strong { font-size: clamp(1.35rem, 3vw, 2rem); }
  .desktop-nav { padding-top: 0.2rem; }
}

@media (max-width: 720px) {
  .app-header { min-height: 74px; }
  .brand-lockup { gap: 0.58rem; }
  .brand-company {
    width: 44px;
    height: 44px;
    background-size: 172px auto;
    background-position: left center;
  }
  .brand-divider { min-height: 40px; }
  .product-lockup strong {
    gap: 0.42rem;
    font-size: clamp(0.82rem, 3.9vw, 1rem);
    letter-spacing: 0.055em;
  }
  .product-lockup strong::before { width: 23px; height: 23px; }
}
/* VOICE_CANONICAL_HEADER_END */

/* Exact Voice-governed Control Plane header correction. */
.app-header {
  min-height: 88px;
  grid-template-columns: minmax(460px, 1fr) auto minmax(190px, 1fr);
  gap: 1.5rem;
  padding: 0.8rem clamp(1rem, 3vw, 2.75rem);
  font-family: "Inter", Aptos, "Segoe UI", system-ui, sans-serif;
}

.brand-lockup { gap: clamp(0.8rem, 1.8vw, 1.3rem); }

.brand-company {
  width: clamp(210px, 19vw, 286px);
  height: 66px;
  display: block;
  flex: 0 0 auto;
  background: url("/babco-labs-logo.webp") left center / contain no-repeat !important;
  font-size: 0;
}

.brand-company img,
.brand-company span { display: none; }

.brand-divider { min-height: 48px; }

.product-lockup {
  min-width: 0;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  align-content: center;
  color: var(--violet);
  white-space: nowrap;
}

.product-lockup strong {
  display: inline-flex;
  align-items: center;
  gap: 0.36em;
  color: inherit;
  font-family: "Arial Black", Aptos, "Segoe UI", system-ui, sans-serif !important;
  font-size: clamp(1.95rem, 2.35vw, 2.5rem) !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-stretch: normal !important;
  font-variation-settings: normal !important;
  font-synthesis: none !important;
  letter-spacing: 0.055em !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.product-lockup strong::before {
  content: "";
  width: 0.94em;
  height: 0.94em;
  flex: 0 0 0.94em;
  align-self: center;
  background: url("/control-plane-mark.svg") center / contain no-repeat;
}

.product-lockup small { display: none; }
.desktop-nav { gap: 0.2rem; }
.desktop-nav a {
  gap: 0;
  padding: 0.7rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 650;
}
.nav-glyph { display: none; }
.identity-menu { gap: 0.2rem; }

@media (min-width: 1101px) and (max-width: 1359px) {
  .app-header {
    grid-template-columns: minmax(470px, 1fr) auto minmax(170px, 0.45fr);
    padding-inline: 1.4rem;
  }
  .brand-company { width: 220px; }
  .product-lockup strong { font-size: 1.9rem !important; }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .app-header { grid-template-columns: minmax(0, 1fr) auto; }
  .brand-company { width: 220px; }
  .product-lockup strong { font-size: 1.75rem !important; }
  .desktop-nav { padding-top: 0.2rem; }
}

@media (max-width: 820px) {
  .app-header { grid-template-columns: minmax(0, 1fr) auto; }
  .brand-company { width: clamp(150px, 32vw, 190px); }
  .product-lockup strong { font-size: 1.38rem !important; }
  .desktop-nav { padding-top: 0.2rem; }
}

@media (max-width: 580px) {
  .product-lockup { display: none !important; }
}
