/* EYEBROW */
.eyebrow {
  display: none;
}

main p a:not([class]) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* SECTION HEADLINE */
.section-headline {
  max-width: 18ch;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
}

/* STATS — shared "confident aside" pattern: short statement + supporting line */
.stats__lead {
  max-width: 46ch;
  margin: 0.875rem 0 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.75rem;
}

.stats__item {
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stats__item:first-child {
  padding-left: 0;
  border-left: none;
}

.stats__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-heading);
  letter-spacing: var(--tracking-heading);
  line-height: 1.15;
  color: var(--color-text-primary);
}

.stats__label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 22ch;
  margin: 0;
}

.stats__visual {
  margin: 2.5rem 0 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-cards);
  overflow: hidden;
  background: var(--color-bg-surface);
  box-shadow:
    var(--shadow-card),
    0 32px 64px -28px rgba(0, 0, 0, 0.6);
}

.stats__visual--manager {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.stats__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.stats__visual figcaption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 0.875rem 1.125rem;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stats__item {
    padding: 1.25rem 0;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }

  .stats__item:first-child {
    border-top: none;
    padding-top: 0;
  }
}

/* FAQ — accordion pattern shared across pages */
.faq {
  position: relative;
  z-index: 1;
}

.faq__list {
  max-width: 680px;
  margin-top: 1.5rem;
}

.faq__item {
  border-top: 1px solid var(--color-border);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-standard), color 0.2s;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms var(--ease-standard);
}

.faq__item[open] .faq__answer {
  max-height: 240px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  padding-bottom: 1.25rem;
}

.faq__answer .btn-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-accent);
  text-decoration: none;
}

.faq__answer .btn-link:hover {
  text-decoration: underline;
}

/* SECTION SUB */
.section-sub {
  max-width: 52ch;
  margin-top: var(--spacing-16);
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

/* VIDEO PROOF */
section.video-proof {
  padding-block: var(--spacing-24) !important;
}

.video-proof__glow {
  position: relative;
  isolation: isolate;
}

.video-proof__frame {
  max-width: 960px;
  margin: var(--spacing-16) auto 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-cards);
  overflow: hidden;
  background: var(--color-bg-surface);
  box-shadow:
    var(--shadow-card),
    0 32px 64px -28px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s var(--ease-standard), box-shadow 0.25s var(--ease-standard), border-color 0.25s var(--ease-standard);
}

.video-proof__frame:hover,
.video-proof__frame:focus-within {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
  box-shadow:
    var(--shadow-card),
    0 40px 72px -24px rgba(0, 0, 0, 0.7);
}

.video-proof__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-base);
}

.video-proof__description {
  margin-top: 0.875rem;
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
}

.video-proof__description summary {
  color: var(--color-accent);
  cursor: pointer;
  width: fit-content;
}

.video-proof__description p {
  margin-top: 0.625rem;
  max-width: 68ch;
}

@media (max-width: 640px) {
  .video-proof__frame {
    margin-top: var(--spacing-24);
    border-radius: var(--radius-lg);
  }
}

/* MONO LABEL */
.label-mono {
  display: inline-block;
  margin-top: var(--spacing-8);
  padding: var(--spacing-4) var(--spacing-8);
  border: 1px solid var(--surface-elevated-border);
  border-radius: var(--radius-lg);
  background: var(--surface-canvas);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-caption);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  min-height: 38px;
  padding: var(--spacing-8) var(--spacing-20);
  border: 1px solid transparent;
  border-radius: var(--radius-buttons);
  background: transparent;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-body-sm);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 160ms var(--ease-standard),
    border-color 160ms var(--ease-standard),
    color 160ms var(--ease-standard),
    transform 160ms var(--ease-standard),
    box-shadow 160ms var(--ease-standard);
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.btn:disabled,
.btn[aria-disabled='true'] {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.btn--primary {
  background: var(--color-action);
  border-color: var(--color-action);
  box-shadow: none;
  color: var(--color-pure-white);
}

.btn--primary:hover {
  background: var(--color-action-hover);
  border-color: var(--color-action-hover);
}

.btn--primary:active {
  background: var(--color-action-pressed);
  border-color: var(--color-action-pressed);
  transform: translateY(0);
}

.btn--secondary {
  border-color: var(--color-control-border);
  background: var(--color-control);
  color: var(--color-text-secondary);
}

.btn--secondary:hover {
  border-color: var(--color-control-border-hover);
  background: var(--color-control-hover);
  color: var(--color-pure-white);
}

.btn--secondary:active {
  background: var(--color-control-pressed);
  color: var(--color-pure-white);
}

.btn--ghost {
  border: 0;
  background: transparent;
  color: var(--color-text-secondary);
  padding-inline: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.btn--ghost:hover {
  color: var(--color-pure-white);
  text-decoration-color: currentColor;
}

.btn--ghost:active {
  color: var(--color-accent-primary);
}

.btn--lg {
  min-height: 44px;
  padding: var(--spacing-12) var(--spacing-24);
  font-size: var(--text-body);
}

/* STAT */
.stat {
  padding-top: var(--spacing-24);
  border-top: 1px solid var(--surface-elevated-border);
}

.stat__number,
.stat__value {
  display: block;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-display);
}

.stat__label {
  display: block;
  margin-top: var(--spacing-8);
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

/* FEATURE LIST */
.feature-list {
  display: flex;
  flex-direction: column;
}

.feature-item {
  padding-block: var(--spacing-24);
  border-top: 1px solid var(--surface-elevated-border);
  transition: background 160ms var(--ease-standard),
              padding-inline 160ms var(--ease-standard);
}

.feature-item:last-child {
  border-bottom: 1px solid var(--surface-elevated-border);
}

.feature-item__name,
.feature-item__title {
  margin-bottom: var(--spacing-8);
  color: var(--color-text-primary);
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-subheading);
  letter-spacing: var(--tracking-subheading);
}

.feature-item__body,
.feature-item__copy {
  max-width: 54ch;
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

@media (pointer: fine) {
  .feature-item:hover {
    background: var(--color-control);
    padding-inline: var(--spacing-16);
  }
}



/* HERO ASSET */
.hero-asset {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--surface-elevated-border);
  border-radius: var(--radius-cards);
  background: var(--surface-card-surface);
  box-shadow: var(--shadow-subtle);
}

.hero-asset::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hero-asset video,
.hero-asset img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
}

.hero-asset--placeholder {
  min-height: 420px;
  aspect-ratio: 16 / 10;
}

/* STATUS CARDS */
.status-card {
  position: absolute;
  z-index: var(--z-raised);
  min-width: 188px;
  max-width: 240px;
  padding: var(--spacing-16);
  border: 1px solid var(--surface-elevated-border);
  border-radius: var(--radius-cards);
  background: var(--surface-card-surface);
  box-shadow: var(--shadow-subtle);
  pointer-events: none;
}

.status-card__label {
  margin-bottom: var(--spacing-8);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
}

.status-card__value {
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-body-sm);
}

.status-card__sub {
  margin-top: var(--spacing-4);
  color: var(--color-text-muted);
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
}

.status-card__dot {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 6px;
  height: 6px;
  margin-right: var(--spacing-8);
  border-radius: 50%;
  vertical-align: middle;
}

.status-card__dot--green,
.status-card__dot--amber {
  background: var(--color-accent-primary);
}

/* PAGE HERO */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-section));
  padding-bottom: var(--space-section);
}

.page-hero__headline,
.page-hero__title {
  max-width: 22ch;
  margin-top: var(--spacing-16);
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
}

.page-hero__sub {
  max-width: 52ch;
  margin-top: var(--spacing-16);
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

/* PAGE CTA */
.page-cta {
  padding-block: var(--space-section);
  border-top: 1px solid var(--surface-elevated-border);
  text-align: center;
}

.page-cta__headline,
.page-cta__title {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-heading-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
}

.page-cta__sub,
.page-cta__text {
  margin-top: var(--spacing-16);
  margin-bottom: var(--spacing-40);
  color: var(--color-text-secondary);
  font-size: var(--text-body);
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-16);
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: var(--surface-elevated-border);
}

/* FOOTER */
.footer {
  padding-block: var(--spacing-56);
  border-top: 1px solid var(--surface-elevated-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--spacing-40);
}

.footer__logo {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--text-body);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-body);
}

.footer__tagline {
  margin-top: var(--spacing-4);
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
}

.footer__tagline a {
  color: var(--color-text-secondary);
  transition: color 160ms var(--ease-standard);
}

.footer__tagline a:hover {
  color: var(--color-text-primary);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-24);
}

.footer__legal a {
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
  transition: color 160ms var(--ease-standard);
}

.footer__legal a:hover {
  color: var(--color-text-secondary);
}

.footer__legal-sep {
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
  opacity: 0.4;
}

.footer__copy {
  grid-column: 1 / -1;
  margin-top: var(--spacing-24);
  padding-top: var(--spacing-24);
  border-top: 1px solid var(--surface-elevated-border);
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
}

.animations-ready .animate-target {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-enter), transform 500ms var(--ease-enter);
}

.animations-ready .animate-target.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-40 {
  transition-delay: 40ms;
}

.animate-delay-80 {
  transition-delay: 80ms;
}


.tilt-target.tilt-reset {
  transition: transform 200ms ease-out;
}

@media (max-width: 767px) {
  .section-headline {
    font-size: var(--text-heading);
    line-height: var(--leading-heading);
    letter-spacing: var(--tracking-heading);
  }

  .page-hero {
    padding-top: calc(var(--nav-height) + var(--section-gap));
    padding-bottom: var(--section-gap);
  }

  .page-cta {
    padding-block: var(--section-gap);
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__legal {
    justify-content: flex-start;
  }
}

/* PRODUCT-LED PAGE SYSTEM */
.section-kicker {
  display: block;
  margin-bottom: var(--spacing-12);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(16rem, 0.55fr);
  gap: var(--spacing-40);
  align-items: end;
  margin-bottom: var(--spacing-36);
}

.section-header__copy {
  max-width: 52ch;
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.screenshot-frame,
.product-console,
.listing-queue,
.workflow-diagram,
.drift-compare,
.audit-trail,
.dealer-proof-strip,
.status-panel,
.cta-panel {
  border: 1px solid var(--border-structural);
  border-radius: var(--radius-lg);
  background: var(--surface-card-surface);
  box-shadow: var(--shadow-card);
}

.screenshot-frame {
  overflow: hidden;
  margin: 0;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.screenshot-frame figcaption {
  padding: var(--spacing-12) var(--spacing-16);
  border-top: 1px solid var(--border-subtle);
  color: var(--color-text-muted);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.product-console {
  overflow: hidden;
}

.product-console__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-16);
  padding: var(--spacing-12) var(--spacing-16);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(31, 36, 51, 0.42);
}

.product-console__title,
.product-console__meta,
.table-preview caption,
.status-label {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-console__body {
  display: grid;
  gap: var(--spacing-16);
  padding: var(--spacing-16);
}

.table-preview {
  width: 100%;
  border-collapse: collapse;
}

.table-preview caption {
  margin-bottom: var(--spacing-12);
  text-align: left;
}

.table-preview th,
.table-preview td {
  padding: var(--spacing-12);
  border-top: 1px solid var(--border-subtle);
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
  text-align: left;
  vertical-align: top;
}

.table-preview th {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
}

.table-preview thead th {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-8);
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-badge);
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill--ready { color: var(--color-accent); }
.status-pill--posted { color: var(--color-success); }
.status-pill--review { color: var(--color-warning); }
.status-pill--failed { color: var(--color-error); }
.status-pill--skipped { color: var(--color-text-muted); }

.sync-status-rows,
.audit-trail__list,
.listing-queue__rows {
  display: grid;
}

.status-row,
.audit-row,
.listing-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(8rem, 0.85fr) auto;
  gap: var(--spacing-16);
  align-items: center;
  padding: var(--spacing-14, 14px) var(--spacing-16);
  border-top: 1px solid var(--border-subtle);
}

.status-row:first-child,
.audit-row:first-child,
.listing-row:first-child {
  border-top: 0;
}

.row-title {
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-medium);
}

.row-meta {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: var(--leading-caption);
}

.row-note {
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.workflow-diagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.workflow-node {
  display: grid;
  gap: var(--spacing-8);
  min-height: 132px;
  padding: var(--spacing-16);
  border-left: 1px solid var(--border-subtle);
}

.workflow-node:first-child {
  border-left: 0;
}

.workflow-node__step {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.workflow-node__title {
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-medium);
}

.workflow-node__body {
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.drift-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.drift-panel {
  padding: var(--spacing-20);
}

.drift-panel + .drift-panel {
  border-left: 1px solid var(--border-subtle);
  background: rgba(31, 36, 51, 0.35);
}

.drift-panel__title {
  margin-bottom: var(--spacing-16);
  color: var(--color-text-primary);
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-medium);
}

.drift-field {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: var(--spacing-12);
  padding-block: var(--spacing-10, 10px);
  border-top: 1px solid var(--border-subtle);
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
}

.drift-field span:first-child {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.dealer-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.dealer-proof-strip__item {
  padding: var(--spacing-18, 18px) var(--spacing-16);
  border-left: 1px solid var(--border-subtle);
}

.dealer-proof-strip__item:first-child {
  border-left: 0;
}

.dealer-proof-strip__label {
  display: block;
  margin-bottom: var(--spacing-8);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.dealer-proof-strip__value {
  color: var(--color-text-primary);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-24);
  align-items: center;
  padding: var(--spacing-24);
}

.cta-panel__title {
  color: var(--color-text-primary);
  font-size: var(--text-heading-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-heading-sm);
}

.cta-panel__copy {
  margin-top: var(--spacing-8);
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

@media (max-width: 900px) {
  .section-header,
  .drift-compare,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .workflow-diagram,
  .dealer-proof-strip {
    grid-template-columns: 1fr;
  }

  .workflow-node,
  .dealer-proof-strip__item,
  .drift-panel + .drift-panel {
    border-left: 0;
    border-top: 1px solid var(--border-subtle);
  }

  .workflow-node:first-child,
  .dealer-proof-strip__item:first-child {
    border-top: 0;
  }

  .status-row,
  .audit-row,
  .listing-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }

  .table-preview {
    min-width: 620px;
  }

  .product-console__body {
    overflow-x: auto;
  }
}
