:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  --black: #030303;
  --black-soft: #080808;
  --panel: #101010;
  --panel-strong: #161616;
  --line: #2b2b2b;
  --line-strong: #3b3b3b;
  --text: #f8f8f8;
  --muted: #a3a3a3;
  --muted-strong: #d4d4d4;
  --white: #ffffff;
  --danger: #d7d7d7;
  background: var(--black);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 34% 28%, #1a1a1a 0, transparent 26rem),
    linear-gradient(145deg, #000 0%, #090909 54%, #030303 100%);
  color: var(--text);
}

body,
input,
button,
select,
textarea {
  font: inherit;
}

main {
  min-height: 100vh;
}

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

h1 {
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  font-size: 18px;
}

p {
  color: var(--muted-strong);
  line-height: 1.6;
}

a {
  color: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
  color: var(--text);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--white);
  border-radius: 6px;
  background: var(--white);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #dcdcdc;
}

.button-secondary {
  border-color: var(--line-strong);
  background: #151515;
  color: var(--white);
}

.button-secondary:hover {
  background: #242424;
}

.button-danger {
  min-height: 34px;
  padding: 0 10px;
  border-color: #6b6b6b;
  background: #1f1f1f;
  color: #f5f5f5;
}

.button-danger:hover {
  background: #2f2f2f;
}

.landing-shell {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand-inline,
.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-inline {
  text-decoration: none;
}

.brand-inline img,
.brand-block img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.topbar strong,
.brand-block strong {
  display: block;
  font-size: 18px;
}

.topbar span,
.brand-block span {
  color: var(--muted);
  font-size: 13px;
}

.status-pill,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #171717;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.public-nav {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid #181818;
  background: #030303e6;
  backdrop-filter: blur(16px);
}

.public-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.public-nav-links a {
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.public-nav-links a.active,
.public-nav-links a:hover {
  background: #191919;
  color: var(--white);
}

.landing-main {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.brand-hero {
  min-height: calc(100vh - 132px);
}

.hero-copy {
  max-width: 680px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  font-size: 17px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-product-panel {
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, #171717 0%, #090909 100%);
  box-shadow: 0 24px 70px #00000066;
}

.hero-product-panel span,
.product-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.1;
}

.hero-product-panel a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.public-section {
  padding: 18px 0 48px;
}

.section-heading,
.public-page-header {
  margin-bottom: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.public-page-header {
  max-width: 760px;
  padding: 64px 0 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-grid-large {
  padding-bottom: 48px;
}

.product-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid #292929;
  border-radius: 8px;
  background: #080808;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.product-card:hover {
  border-color: #5f5f5f;
  background: #101010;
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.product-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.product-card div {
  padding: 16px;
}

.product-card h3 {
  margin: 7px 0 8px;
  font-size: 18px;
}

.product-card small {
  display: inline-flex;
  margin-left: 8px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
}

.product-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.product-empty {
  grid-column: 1 / -1;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
  padding: 58px 0;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid #292929;
  border-radius: 8px;
  background: #111;
  object-fit: cover;
}

video.product-main-image {
  display: block;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid #292929;
  border-radius: 8px;
  object-fit: cover;
}

.product-thumbs video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid #292929;
  border-radius: 8px;
  object-fit: cover;
}

.product-info {
  padding-top: 8px;
}

.product-price {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 10px;
  border: 1px solid #555;
  border-radius: 6px;
  background: #f5f5f5;
  color: #050505;
}

.stock-pill {
  display: inline-flex;
  margin: 0 0 16px 8px;
  padding: 8px 10px;
  border: 1px solid #343434;
  border-radius: 6px;
  background: #101010;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.product-description {
  margin: 18px 0 24px;
}

.legal-page {
  max-width: 880px;
  padding-bottom: 58px;
}

.legal-page h1 {
  margin-top: 56px;
}

.legal-page h2 {
  margin-top: 26px;
  font-size: 22px;
}

.public-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 20px 0 28px;
  border-top: 1px solid #1f1f1f;
  color: var(--muted);
  font-size: 13px;
}

.public-footer div {
  display: flex;
  gap: 14px;
}

.public-footer a {
  color: var(--muted-strong);
  font-weight: 800;
  text-decoration: none;
}

.public-footer a:hover {
  color: var(--white);
}

.verify-result-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.verify-result {
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #181818 0%, #0b0b0b 100%);
  box-shadow: 0 24px 80px #00000080;
}

.verify-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #6f6f6f;
  border-radius: 50%;
  background: #f5f5f5;
  color: #050505;
  font-size: 13px;
  font-weight: 900;
}

.verify-result h1 {
  margin-bottom: 10px;
}

.verify-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.verify-account-grid div {
  min-width: 0;
  padding: 14px;
  border: 1px solid #2f2f2f;
  border-radius: 8px;
  background: #080808;
}

.verify-account-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.verify-account-grid strong {
  display: block;
  overflow: hidden;
  color: var(--white);
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

dd {
  margin: 0;
  font-weight: 800;
}

.management-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: #050505;
}

.brand-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.side-nav {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.side-nav a,
.side-nav span {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted-strong);
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.side-nav a.active,
.side-nav a:hover {
  background: #191919;
  color: var(--white);
}

.side-nav a:hover {
  transform: translateX(2px);
}

.side-nav a strong,
.side-nav a span {
  display: block;
}

.side-nav a strong {
  font-size: 14px;
}

.side-nav a span {
  margin-top: 2px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
}

.side-nav span {
  color: #6f6f6f;
}

.sidebar-user {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sidebar-user span,
.muted {
  color: var(--muted);
  font-size: 13px;
}

.sidebar-user strong {
  display: block;
  margin: 4px 0 12px;
}

.sidebar-user a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.management-main {
  padding: 28px;
}

.management-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.management-header h1 {
  margin-bottom: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.metric {
  padding: 16px;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.metric:hover {
  border-color: #555;
  transform: translateY(-1px);
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: 18px;
}

.panel {
  margin-top: 18px;
  padding: 18px;
}

.management-view {
  animation: view-enter 180ms ease both;
}

.admin-form {
  display: grid;
  gap: 13px;
}

.admin-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-strong);
  font-weight: 800;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: auto;
}

.check-row span {
  margin: 0;
}

.panel-heading,
.builder-actions,
.component-header,
.components-command,
.canvas-header,
.history-header,
.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-heading p {
  margin-bottom: 0;
  font-size: 14px;
}

.builder-workspace,
.component-children,
.repeat-list {
  display: grid;
  gap: 10px;
}

.builder-workspace {
  max-height: calc(100vh - 284px);
  min-height: 430px;
  overflow: auto;
  padding: 14px;
  border: 1px solid #232323;
  border-radius: 8px;
  background:
    linear-gradient(#101010, #101010) padding-box,
    repeating-linear-gradient(0deg, transparent 0 23px, #181818 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, #181818 24px);
}

.builder-empty {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: #090909;
  color: var(--muted);
  text-align: center;
}

.component-card {
  padding: 14px;
  border: 1px solid #303030;
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: 0 14px 28px #00000040;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.component-card.editing {
  border-color: #707070;
  background: #0f0f0f;
}

.component-card:hover {
  border-color: #555;
  background: #0f0f0f;
}

.component-card:active {
  cursor: grabbing;
  transform: scale(0.997);
}

.component-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.component-header > div {
  min-width: 0;
}

.component-header > div > span {
  display: block;
  max-width: 46rem;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.component-header strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5f5f5;
}

.component-controls {
  display: flex;
  gap: 5px;
}

.icon-button {
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  border-color: #353535;
  background: #121212;
  color: var(--white);
  font-size: 13px;
}

.component-controls .icon-button:first-child {
  width: auto;
  padding: 0 9px;
  font-size: 12px;
}

.component-editor {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.component-editor label span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.component-children {
  padding: 10px 0 0 12px;
  border-left: 1px solid #404040;
}

.repeat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 10px;
  border: 1px solid #262626;
  border-radius: 8px;
  background: #070707;
}

.repeat-row .check-row {
  min-height: 42px;
}

.media-list {
  display: grid;
  gap: 10px;
}

.media-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #292929;
  border-radius: 8px;
  background: #070707;
}

.media-details {
  display: grid;
  gap: 10px;
}

.draft-action-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #292929;
  border-radius: 8px;
  background: #070707;
}

.draft-action-panel > span {
  flex: 1 1 220px;
  color: var(--muted-strong);
  font-size: 13px;
}

.draft-action-panel button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.upload-field {
  display: grid;
  align-content: start;
  min-height: 108px;
  padding: 12px;
  border: 1px dashed #444;
  border-radius: 8px;
  background: #0d0d0d;
  cursor: pointer;
}

.upload-field:hover {
  border-color: #777;
  background: #121212;
}

.upload-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-field strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid #555;
  border-radius: 6px;
  background: #f5f5f5;
  color: #050505;
  font-size: 13px;
}

.upload-field small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.native-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 42px;
  justify-content: space-between;
  padding: 0 12px;
  border-color: var(--line);
  background: #050505;
  color: var(--text);
  font-weight: 700;
  text-align: left;
}

.custom-select-trigger::after {
  content: "v";
  color: var(--muted);
  font-size: 12px;
}

.custom-select.open .custom-select-trigger {
  border-color: #666;
  background: #111;
}

.custom-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 240px;
  overflow: auto;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #080808;
  box-shadow: 0 18px 50px #000000b3;
}

.custom-select.open .custom-select-menu {
  display: grid;
  gap: 4px;
}

.custom-select-option {
  width: 100%;
  min-height: 34px;
  justify-content: flex-start;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.custom-select-option:hover,
.custom-select-option[aria-selected="true"] {
  background: #1d1d1d;
  color: var(--white);
}

.notice {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.settings-list dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.settings-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.settings-list div:last-child {
  border-bottom: 0;
}

.settings-list dt {
  color: var(--muted);
}

.settings-list dd {
  margin: 0;
  font-weight: 800;
}

.settings-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.7fr);
  gap: 18px;
}

.notice-success {
  border-color: #4a4a4a;
  background: #171717;
  color: var(--white);
}

.notice-error {
  border-color: #8a8a8a;
  background: #202020;
  color: #f5f5f5;
}

.badge {
  margin-right: 6px;
}

.badge-admin {
  border-color: #777;
  background: #ededed;
  color: #050505;
}

.badge-muted {
  border-color: #3f3f3f;
  background: #0b0b0b;
  color: var(--muted-strong);
}

code {
  color: var(--white);
}

table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

th,
td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.components-shell {
  display: grid;
  gap: 16px;
}

.components-command {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 14px;
  border: 1px solid #292929;
  border-radius: 8px;
  background: #0b0b0bf2;
  backdrop-filter: blur(14px);
}

.components-channel {
  min-width: 260px;
  flex: 1;
}

.components-channel label span,
.palette-title {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.components-actions {
  display: flex;
  align-items: end;
  gap: 8px;
}

.components-actions .badge {
  min-height: 42px;
  border-radius: 6px;
}

.components-layout {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}

.component-palette,
.builder-canvas,
.components-history {
  border: 1px solid #292929;
  border-radius: 8px;
  background: #080808;
}

.component-palette,
.components-history {
  position: sticky;
  top: 92px;
}

.component-palette {
  display: grid;
  gap: 16px;
  padding: 12px;
}

.palette-section {
  display: grid;
  gap: 7px;
}

.palette-button {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 0 11px;
  border-color: #2f2f2f;
  background: #121212;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.palette-button:hover {
  border-color: #5a5a5a;
  background: #1b1b1b;
}

.builder-canvas {
  min-width: 0;
  padding: 14px;
}

.canvas-header {
  padding: 2px 2px 14px;
}

.canvas-header h2,
.history-header h2 {
  margin-bottom: 3px;
}

.canvas-header p {
  margin-bottom: 0;
  font-size: 13px;
}

.components-history {
  overflow: hidden;
}

.history-header {
  padding: 14px;
  border-bottom: 1px solid #252525;
}

.history-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.history-list {
  display: grid;
  max-height: calc(100vh - 168px);
  overflow: auto;
}

.history-item {
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 13px 14px;
  border-bottom: 1px solid #202020;
}

.history-item:last-child {
  border-bottom: 0;
}

.history-item strong,
.history-item span {
  display: block;
}

.history-item strong {
  max-width: 160px;
  overflow: hidden;
  color: var(--white);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item div > span,
.history-empty {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.history-item p {
  flex: 0 0 100%;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.history-empty {
  padding: 16px;
}

.builder-toolbar.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.builder-toolbar.compact button {
  min-height: 32px;
  padding: 0 10px;
  border-color: #333;
  background: #151515;
  color: var(--white);
  font-size: 12px;
}

@media (max-width: 900px) {
  .landing-main,
  .management-shell,
  .content-grid,
  .components-layout,
  .product-detail,
  .product-grid,
  .settings-grid,
  .metric-grid {
    display: block;
  }

  .public-nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .public-nav-links {
    flex-wrap: wrap;
  }

  .product-card,
  .hero-product-panel {
    margin-top: 14px;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .management-main {
    padding: 20px;
  }

  .metric {
    margin-top: 12px;
  }

  .builder-workspace {
    max-height: none;
    min-height: 280px;
  }

  .repeat-row {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .components-command {
    position: static;
    display: grid;
  }

  .components-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .component-palette,
  .components-history {
    position: static;
    margin-bottom: 14px;
  }

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

  .verify-account-grid {
    grid-template-columns: 1fr;
  }

  .builder-canvas {
    margin-bottom: 14px;
  }
}

@keyframes view-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
