:root {
  --ink: #111722;
  --ink-2: #1f2733;
  --muted: #657180;
  --line: #d7dee7;
  --line-strong: #b7c3cf;
  --paper: #eef2f5;
  --panel: #fbfcfd;
  --panel-soft: #f5f8fa;
  --smoke: #e7edf2;
  --cyan: #00a9d6;
  --cyan-dark: #087da2;
  --steel: #748292;
  --silver: #f8fafc;
  --danger: #b84545;
  --shadow: 0 18px 48px rgba(17, 23, 34, 0.12);
  --shadow-tight: 0 10px 24px rgba(17, 23, 34, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(231, 237, 242, 0.94) 36%, rgba(245, 248, 250, 0.86)),
    repeating-linear-gradient(90deg, rgba(17, 23, 34, 0.035) 0 1px, transparent 1px 72px);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

button:active {
  transform: translateY(1px);
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(150px, auto);
  gap: 16px;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(183, 195, 207, 0.72);
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(20px) saturate(1.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 12px 36px rgba(17, 23, 34, 0.08);
}

.brand-block,
.account-block,
.mode-switch,
.toolbar,
.card-actions,
.status-row,
.form-row,
.quantity-control,
.inline-actions,
.page-actions,
.table-actions {
  display: flex;
  align-items: center;
}

.brand-block {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(123, 138, 153, 0.75);
  color: #eaf8ff;
  background: linear-gradient(145deg, #2a3441, #0f141c 58%, #26313d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 24px rgba(17, 23, 34, 0.16);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 2px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.2;
}

h2 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.22;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
}

.mode-switch,
.auth-tabs,
.admin-tabs {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(183, 195, 207, 0.78);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 238, 244, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mode-button,
.auth-tab,
.admin-tab {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  padding: 7px 12px;
  color: var(--muted);
  background: transparent;
  white-space: nowrap;
}

.mode-button.active,
.auth-tab.active,
.admin-tab.active {
  color: #f7fbff;
  background: linear-gradient(180deg, #252f3a, #111722);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 0 1px rgba(0, 169, 214, 0.25);
}

.account-block {
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.account-name {
  max-width: 120px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button,
.small-icon-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #edf2f6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 1px 2px rgba(17, 23, 34, 0.08);
}

.icon-button {
  width: 38px;
  height: 38px;
}

.small-icon-button {
  width: 32px;
  height: 32px;
}

.icon-button:hover,
.small-icon-button:hover,
.secondary-button:hover,
.light-button:hover {
  border-color: rgba(0, 169, 214, 0.64);
  color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(0, 169, 214, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.app-view {
  padding: 28px;
}

.client-layout,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.hero-workbench {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(183, 195, 207, 0.72);
  border-radius: 8px;
  color: #fff;
  background: #111722;
  box-shadow: var(--shadow-tight);
}

.hero-workbench::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0.46;
}

.hero-workbench::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.92), rgba(17, 23, 34, 0.72) 50%, rgba(17, 23, 34, 0.28)),
    linear-gradient(135deg, rgba(0, 169, 214, 0.18), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 32px;
  align-items: end;
  padding: 34px;
}

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

.hero-copy h2 {
  color: #fff;
  font-size: 36px;
}

.hero-copy p {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(238, 246, 252, 0.8);
}

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

.stat-tile {
  min-height: 72px;
  border: 1px solid rgba(181, 202, 216, 0.26);
  border-radius: 6px;
  padding: 12px;
  background: rgba(248, 250, 252, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.stat-label {
  display: block;
  color: rgba(238, 246, 252, 0.68);
  font-size: 12px;
}

.workbench-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(181, 202, 216, 0.26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(248, 250, 252, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.search-box {
  position: relative;
}

.search-box svg {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-box input,
.filter-grid select,
.field input,
.field select,
.field textarea,
.auth-form input,
.auth-form select,
.delivery-form input,
.delivery-form textarea,
.product-form input,
.product-form select,
.product-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f6f8fa);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(17, 23, 34, 0.04);
}

.search-box input:focus,
.filter-grid select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.auth-form input:focus,
.auth-form select:focus,
.delivery-form input:focus,
.delivery-form textarea:focus,
.product-form input:focus,
.product-form select:focus,
.product-form textarea:focus {
  border-color: rgba(0, 169, 214, 0.72);
  box-shadow: 0 0 0 3px rgba(0, 169, 214, 0.12), inset 0 1px 2px rgba(17, 23, 34, 0.04);
}

.search-box input {
  padding-left: 38px;
}

.workbench-panel .search-box input,
.workbench-panel select {
  border-color: rgba(205, 218, 228, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.workbench-panel select option {
  color: var(--ink);
  background: #fff;
}

.workbench-panel .search-box input::placeholder {
  color: rgba(238, 246, 252, 0.65);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.check-row {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(238, 246, 252, 0.78);
  font-size: 13px;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
}

.content-band {
  padding: 26px 0 0;
}

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

.section-head p {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.scene-card,
.product-card,
.side-panel,
.admin-panel,
.order-card,
.modal-panel,
.page-card {
  border: 1px solid rgba(202, 212, 222, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow-tight);
}

.scene-card {
  overflow: hidden;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.scene-card.active,
.scene-card:hover,
.product-card:hover,
.page-card:hover {
  border-color: rgba(0, 169, 214, 0.56);
  box-shadow: 0 16px 36px rgba(17, 23, 34, 0.12), 0 0 0 1px rgba(0, 169, 214, 0.08);
}

.scene-card button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.scene-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--smoke);
}

.scene-media img,
.page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scene-body {
  padding: 13px;
}

.scene-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.result-count {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

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

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}

.product-media {
  position: relative;
  width: 100%;
  height: 154px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: radial-gradient(circle at 50% 20%, #ffffff, #e3eaf0 72%);
  text-align: left;
}

.image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(135deg, #f8fafc, #dfe7ee);
}

.badge-stack {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge,
.status-pill {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(183, 195, 207, 0.62);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 800;
}

.badge.teal,
.status-pill.teal {
  border-color: rgba(0, 169, 214, 0.5);
  color: #fff;
  background: linear-gradient(180deg, #16b8df, #087da2);
}

.badge.gold,
.status-pill.gold {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #d5dee7);
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.product-title-row h3 {
  overflow-wrap: anywhere;
}

.price-value {
  color: var(--cyan-dark);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.meta-list {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.meta-list span {
  display: flex;
  gap: 6px;
  min-width: 0;
}

.meta-list strong {
  min-width: 58px;
  color: var(--ink);
  font-weight: 800;
}

.variant-list {
  display: grid;
  gap: 6px;
  max-height: 220px;
  overflow: auto;
  padding-top: 2px;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) minmax(82px, 1fr) minmax(74px, 0.75fr) auto 32px;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 6px 4px 9px;
  background: linear-gradient(180deg, #ffffff, #f6f8fa);
  font-size: 13px;
}

.variant-model {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 900;
}

.variant-size,
.variant-cabinet {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.variant-price {
  color: var(--cyan-dark);
  font-weight: 900;
  white-space: nowrap;
}

.card-actions,
.inline-actions,
.page-actions,
.table-actions {
  gap: 8px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.light-button,
.danger-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 12px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 1px 2px rgba(17, 23, 34, 0.08);
}

.primary-button {
  border-color: rgba(0, 169, 214, 0.55);
  color: #f7fbff;
  background: linear-gradient(180deg, #19b6df, #087da2 58%, #075d7a);
}

.secondary-button {
  color: var(--ink);
  border-color: var(--line);
  background: linear-gradient(180deg, #ffffff, #edf2f6);
}

.light-button {
  color: var(--ink);
  border-color: var(--line);
  background: linear-gradient(180deg, #f9fbfd, #e4ebf1);
}

.danger-button {
  color: #fff;
  background: linear-gradient(180deg, #d35b5b, var(--danger));
}

.side-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  padding: 16px;
}

.side-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.side-head h2 {
  margin: 0;
  font-size: 20px;
}

.cart-list,
.order-list,
.compact-list {
  display: grid;
  gap: 10px;
  max-height: 390px;
  overflow: auto;
  padding-right: 4px;
}

.checkout-hint,
.audit-strip {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--muted);
  background: rgba(245, 248, 250, 0.76);
  font-size: 12px;
}

.checkout-hint strong,
.audit-warning {
  color: var(--gold);
  font-weight: 800;
}

.audit-strip {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.audit-strip span {
  border: 1px solid rgba(248, 193, 92, 0.36);
  border-radius: 999px;
  padding: 4px 8px;
}

.empty-state {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: rgba(245, 248, 250, 0.76);
}

.cart-item,
.order-card,
.compact-item {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.cart-item h4,
.order-card h4,
.compact-item h4 {
  margin: 0;
  font-size: 14px;
}

.cart-item p,
.order-card p,
.compact-item p {
  margin: 0;
}

.quantity-control {
  gap: 6px;
}

.quantity-control input {
  width: 56px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
}

.total-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 17px;
  font-weight: 900;
}

.delivery-form,
.product-form,
.auth-form {
  display: none;
  gap: 10px;
}

.delivery-form.active,
.product-form.active,
.auth-form.active {
  display: grid;
}

.delivery-form label,
.product-form label,
.auth-form label,
.field label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
}

.delivery-form textarea,
.product-form textarea {
  min-height: 76px;
  resize: vertical;
}

.delivery-form .primary-button {
  width: 100%;
}

.admin-layout {
  grid-template-columns: 230px minmax(0, 1fr);
}

.admin-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  align-self: start;
}

.admin-tabs {
  display: grid;
  gap: 5px;
}

.admin-tab {
  justify-content: flex-start;
}

.admin-summary {
  display: grid;
  gap: 8px;
}

.summary-mini {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f5f8fa);
  box-shadow: var(--shadow-tight);
}

.admin-main {
  min-width: 0;
}

.admin-panel {
  display: none;
  padding: 18px;
}

.admin-panel.active {
  display: grid;
  gap: 16px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.data-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  background: #fff;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--muted);
  background: linear-gradient(180deg, #f9fbfd, #e9eff4);
  font-size: 12px;
}

.table-image {
  width: 54px;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--smoke);
}

.table-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-status-select,
.inline-input {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  background: #fff;
}

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

.page-card {
  overflow: hidden;
}

.page-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--smoke);
}

.page-card-body {
  display: grid;
  gap: 6px;
  padding: 10px;
}

.page-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 22, 0.58);
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(460px, calc(100vw - 28px));
  gap: 14px;
  padding: 18px;
  transform: translate(-50%, -50%);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 13, 0.74);
  backdrop-filter: blur(12px);
}

.image-viewer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1120px, calc(100vw - 28px));
  height: min(860px, calc(100vh - 28px));
  overflow: hidden;
  border: 1px solid rgba(126, 220, 244, 0.34);
  border-radius: 8px;
  background: #071018;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.image-viewer-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-bottom: 1px solid rgba(126, 220, 244, 0.22);
  padding: 10px 12px;
}

.image-viewer-tools {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.image-viewer-zoom {
  min-width: 46px;
  color: #dff7ff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.image-viewer-canvas {
  display: grid;
  overflow: auto;
  place-items: start center;
  padding: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.1), transparent 35%), #02060a;
}

.image-viewer-canvas img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.36);
  cursor: zoom-in;
}

.toast {
  position: fixed;
  right: 24px;
  top: 86px;
  z-index: 120;
  max-width: min(420px, calc(100vw - 32px));
  border: 1px solid rgba(0, 169, 214, 0.36);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(180deg, #1f2733, #111722);
  box-shadow: var(--shadow);
  font-weight: 700;
  line-height: 1.45;
}

.toast.success {
  border-color: rgba(87, 223, 154, 0.64);
  background: linear-gradient(180deg, #123328, #081a15);
}

.toast.error {
  border-color: rgba(231, 93, 112, 0.72);
  background: linear-gradient(180deg, #3a1820, #17090d);
}

.form-notice {
  border: 1px solid rgba(0, 169, 214, 0.36);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(0, 169, 214, 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.form-notice.success {
  border-color: rgba(87, 223, 154, 0.5);
  color: #0b6d43;
  background: rgba(87, 223, 154, 0.12);
}

.form-notice.error {
  border-color: rgba(184, 69, 69, 0.5);
  color: #9c2432;
  background: rgba(184, 69, 69, 0.1);
}

.feedback-dialog {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
}

.feedback-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 13, 0.72);
  backdrop-filter: blur(10px);
}

.feedback-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(420px, calc(100vw - 32px));
  gap: 12px;
  justify-items: center;
  border: 1px solid rgba(0, 169, 214, 0.42);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  color: #f7fbff;
  background: linear-gradient(180deg, #14202b, #070b10);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 34px rgba(34, 211, 238, 0.18);
}

.feedback-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  color: #071016;
  background: linear-gradient(180deg, #7ee7ff, #57df9a);
  font-size: 30px;
  font-weight: 900;
}

.feedback-dialog.error .feedback-panel {
  border-color: rgba(231, 93, 112, 0.74);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 34px rgba(231, 93, 112, 0.18);
}

.feedback-dialog.error .feedback-icon {
  color: #fff;
  background: linear-gradient(180deg, #e75d70, #a92338);
}

.feedback-panel h2,
.feedback-panel p {
  margin: 0;
}

.notification-settings-dialog {
  position: fixed;
  inset: 0;
  z-index: 145;
  display: grid;
  place-items: center;
  padding: 18px;
}

.notification-settings-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, calc(100vw - 32px));
  gap: 14px;
  border: 1px solid rgba(0, 169, 214, 0.42);
  border-radius: 8px;
  padding: 22px;
  color: #f7fbff;
  background: linear-gradient(180deg, #14202b, #070b10);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 34px rgba(34, 211, 238, 0.18);
}

.notification-settings-head,
.notification-settings-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notification-settings-head h2,
.notification-settings-head p {
  margin: 0;
}

.notification-settings-panel label {
  display: grid;
  gap: 7px;
  color: #c7d8e8;
  font-size: 13px;
  font-weight: 700;
}

.notification-settings-panel textarea {
  width: 100%;
  resize: vertical;
}

.notification-channel-status {
  margin: 0;
  border: 1px solid rgba(34, 211, 238, 0.38);
  border-radius: 6px;
  padding: 10px 12px;
  color: #d2e6f2;
  background: rgba(34, 211, 238, 0.08);
  font-size: 13px;
  line-height: 1.5;
}

.notification-channel-status.ready {
  border-color: rgba(87, 223, 154, 0.48);
  color: #a9ebc8;
  background: rgba(87, 223, 154, 0.08);
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .client-layout,
  .admin-layout,
  .hero-content,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .admin-nav {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .product-grid,
  .scene-grid,
  .catalog-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .mode-switch,
  .account-block {
    justify-content: flex-start;
  }

  .app-view {
    padding: 12px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-copy h2 {
    font-size: 28px;
  }

  .stat-grid,
  .filter-grid,
  .catalog-toolbar,
  .product-grid,
  .scene-grid,
  .catalog-page-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: stretch;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .variant-row {
    grid-template-columns: minmax(0, 1fr) auto 32px;
    grid-auto-rows: minmax(20px, auto);
    align-items: start;
    min-height: auto;
    padding: 8px;
  }

  .variant-model {
    grid-column: 1 / 2;
  }

  .variant-price {
    grid-column: 2 / 3;
    grid-row: 1;
    align-self: start;
  }

  .variant-row .small-icon-button {
    grid-column: 3 / 4;
    grid-row: 1;
    align-self: start;
  }

  .variant-size,
  .variant-cabinet {
    grid-column: 1 / -1;
  }
}

/* Futuristic operations theme */
:root {
  --ink: #e8f2ff;
  --ink-2: #c9d8e8;
  --muted: #8da0b4;
  --line: rgba(126, 158, 184, 0.28);
  --line-strong: rgba(126, 220, 244, 0.48);
  --paper: #070b10;
  --panel: rgba(12, 18, 25, 0.86);
  --panel-soft: rgba(16, 25, 34, 0.78);
  --smoke: #111a24;
  --cyan: #22d3ee;
  --cyan-dark: #38bdf8;
  --steel: #72859a;
  --silver: #f2f7fb;
  --gold: #f8c15c;
  --green: #57df9a;
  --danger: #e75d70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-tight: 0 14px 34px rgba(0, 0, 0, 0.3);
}

html {
  background: #070b10;
}

body {
  color: var(--ink);
  background:
    linear-gradient(125deg, rgba(7, 11, 16, 0.98), rgba(9, 16, 23, 0.96) 48%, rgba(15, 18, 20, 0.98)),
    repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.04) 0 1px, transparent 1px 86px);
}

.tech-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(34, 211, 238, 0.1), transparent 30%, rgba(248, 193, 92, 0.08) 72%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 22%, rgba(87, 223, 154, 0.05));
}

.tech-grid,
.tech-scan,
.tech-rails {
  position: absolute;
  inset: 0;
}

.tech-grid {
  opacity: 0.7;
  background:
    linear-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0 118px, rgba(248, 193, 92, 0.08) 118px 119px, transparent 119px 238px);
  background-size: 54px 54px, 54px 54px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.36) 66%, transparent);
}

.tech-scan {
  opacity: 0.45;
  background:
    linear-gradient(180deg, transparent 0 34%, rgba(34, 211, 238, 0.16) 35%, transparent 37%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
  animation: scan-flow 9s linear infinite;
}

.tech-rails {
  opacity: 0.56;
  background:
    linear-gradient(115deg, transparent 0 8%, rgba(34, 211, 238, 0.22) 8.2%, transparent 8.6% 68%, rgba(248, 193, 92, 0.18) 68.2%, transparent 68.8%),
    linear-gradient(245deg, transparent 0 28%, rgba(87, 223, 154, 0.12) 28.2%, transparent 28.7%);
}

.shell {
  position: relative;
  z-index: 1;
}

.topbar {
  border-bottom: 1px solid rgba(126, 220, 244, 0.22);
  background: rgba(6, 10, 15, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand-mark {
  border-color: rgba(34, 211, 238, 0.5);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.24), transparent 42%),
    linear-gradient(180deg, #17202b, #070b10);
  box-shadow: 0 0 0 1px rgba(248, 193, 92, 0.16), 0 16px 32px rgba(34, 211, 238, 0.18);
}

.eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3 {
  color: var(--ink);
}

.mode-switch,
.auth-tabs,
.admin-tabs {
  border-color: rgba(126, 220, 244, 0.28);
  background: rgba(7, 13, 19, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mode-button,
.auth-tab,
.admin-tab {
  color: #9fb2c7;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mode-button.active,
.auth-tab.active,
.admin-tab.active {
  color: #061016;
  background: linear-gradient(180deg, #7ee7ff, #22d3ee 58%, #57df9a);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 0 22px rgba(34, 211, 238, 0.34);
}

.account-name,
.result-count,
.section-head p,
.scene-body p,
.meta-list,
.variant-size,
.variant-cabinet,
.page-card-body p,
.delivery-form label,
.product-form label,
.auth-form label,
.field label {
  color: var(--muted);
}

.icon-button,
.small-icon-button,
.secondary-button,
.light-button {
  border-color: rgba(126, 220, 244, 0.3);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(26, 38, 50, 0.92), rgba(11, 18, 26, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-button:hover,
.small-icon-button:hover,
.secondary-button:hover,
.light-button:hover {
  border-color: rgba(34, 211, 238, 0.7);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12), 0 0 22px rgba(34, 211, 238, 0.2);
}

.primary-button {
  border-color: rgba(34, 211, 238, 0.68);
  color: #061016;
  background: linear-gradient(180deg, #9ff4ff, #22d3ee 58%, #57df9a);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 14px 28px rgba(34, 211, 238, 0.22);
}

.danger-button {
  border-color: rgba(231, 93, 112, 0.62);
  background: linear-gradient(180deg, #ff8292, #e75d70);
}

.app-view {
  padding: 26px;
}

.client-layout,
.admin-layout {
  gap: 24px;
}

.hero-workbench {
  min-height: 430px;
  border-color: rgba(126, 220, 244, 0.34);
  background: #070b10;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08), 0 30px 80px rgba(0, 0, 0, 0.44);
}

.hero-workbench::before {
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.08);
}

.hero-workbench::after {
  background:
    linear-gradient(90deg, rgba(3, 8, 13, 0.96), rgba(7, 13, 19, 0.82) 48%, rgba(7, 13, 19, 0.34)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.26), transparent 34%, rgba(248, 193, 92, 0.12) 74%, transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px);
}

.hero-content {
  min-height: 430px;
  align-items: end;
  padding: 38px;
}

.hero-copy h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 40px;
  text-wrap: balance;
}

.hero-copy p {
  color: rgba(226, 238, 250, 0.82);
}

.hero-signal-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 18px;
}

.hero-signal-strip span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(126, 220, 244, 0.32);
  border-radius: 6px;
  padding: 6px 10px;
  color: #d9f7ff;
  background: rgba(5, 12, 18, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-tile {
  border-color: rgba(126, 220, 244, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 12, 18, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.stat-value {
  color: #ffffff;
}

.stat-label {
  color: rgba(226, 238, 250, 0.66);
}

.workbench-panel {
  border-color: rgba(126, 220, 244, 0.34);
  background:
    linear-gradient(135deg, rgba(15, 24, 34, 0.86), rgba(7, 12, 18, 0.78)),
    repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.06) 0 1px, transparent 1px 34px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.workbench-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.workbench-title strong {
  color: var(--gold);
  font-size: 13px;
}

.search-box input,
.filter-grid select,
.field input,
.field select,
.field textarea,
.auth-form input,
.auth-form select,
.delivery-form input,
.delivery-form textarea,
.product-form input,
.product-form select,
.product-form textarea,
.order-status-select,
.inline-input {
  border-color: rgba(126, 220, 244, 0.28);
  color: var(--ink);
  background: rgba(7, 13, 19, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-box input::placeholder {
  color: rgba(141, 160, 180, 0.8);
}

.workbench-panel .search-box input,
.workbench-panel select {
  border-color: rgba(126, 220, 244, 0.36);
  background: rgba(3, 9, 14, 0.74);
}

.workbench-panel select option,
select option {
  color: #111722;
  background: #ffffff;
}

.search-box input:focus,
.filter-grid select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.auth-form input:focus,
.auth-form select:focus,
.delivery-form input:focus,
.delivery-form textarea:focus,
.product-form input:focus,
.product-form select:focus,
.product-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.76);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.check-row {
  color: rgba(226, 238, 250, 0.78);
}

.check-row input {
  accent-color: var(--green);
}

.section-head {
  border-bottom: 1px solid rgba(126, 220, 244, 0.18);
  padding-bottom: 12px;
}

.scene-card,
.product-card,
.side-panel,
.admin-panel,
.order-card,
.modal-panel,
.page-card,
.summary-mini,
.cart-item,
.compact-item {
  border-color: rgba(126, 220, 244, 0.24);
  background:
    linear-gradient(180deg, rgba(18, 27, 37, 0.92), rgba(9, 15, 22, 0.94)),
    repeating-linear-gradient(135deg, transparent 0 44px, rgba(34, 211, 238, 0.035) 44px 45px);
  box-shadow: var(--shadow-tight);
}

.scene-card,
.product-card,
.page-card,
.cart-item,
.compact-item {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.scene-card.active,
.scene-card:hover,
.product-card:hover,
.page-card:hover,
.cart-item:hover,
.compact-item:hover {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(34, 211, 238, 0.18);
  transform: translateY(-2px);
}

.scene-card.active {
  box-shadow: 0 0 0 1px rgba(87, 223, 154, 0.32), 0 18px 42px rgba(0, 0, 0, 0.34);
}

.scene-media,
.page-card-media {
  border-bottom-color: rgba(126, 220, 244, 0.2);
  background: #0a1119;
}

.scene-media img,
.page-card img {
  filter: saturate(1.04) contrast(1.05);
}

.product-media {
  height: 176px;
  background:
    linear-gradient(145deg, #141f2a, #091018 64%, #192227),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
}

.product-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.1));
}

.product-media img {
  position: relative;
  z-index: 1;
  padding: 10px;
}

.image-fallback {
  color: var(--muted);
  background: linear-gradient(135deg, #111a24, #081018);
}

.badge,
.status-pill {
  border-color: rgba(126, 220, 244, 0.3);
  color: #dff7ff;
  background: rgba(7, 13, 19, 0.82);
}

.badge.teal,
.status-pill.teal {
  border-color: rgba(34, 211, 238, 0.6);
  color: #061016;
  background: linear-gradient(180deg, #9ff4ff, #22d3ee);
}

.badge.gold,
.status-pill.gold {
  border-color: rgba(248, 193, 92, 0.62);
  color: #1f1605;
  background: linear-gradient(180deg, #ffe5a6, #f8c15c);
}

.product-title-row h3,
.cart-item h4,
.order-card h4,
.compact-item h4 {
  color: #ffffff;
}

.price-value,
.variant-price {
  color: var(--gold);
}

.meta-list strong {
  color: #dff7ff;
}

.variant-row {
  border-color: rgba(126, 220, 244, 0.22);
  background: rgba(6, 12, 18, 0.64);
}

.variant-model {
  color: #ffffff;
}

.side-panel {
  top: 96px;
}

.cart-meter {
  display: grid;
  gap: 8px;
}

.cart-meter span {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(126, 220, 244, 0.26);
  border-radius: 999px;
  background: rgba(3, 9, 14, 0.82);
}

.cart-meter span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--cart-fill);
  content: "";
  background: linear-gradient(90deg, #22d3ee, #57df9a, #f8c15c);
  transition: width 220ms ease;
}

.cart-meter strong {
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  border-color: rgba(126, 220, 244, 0.28);
  color: var(--muted);
  background: rgba(7, 13, 19, 0.5);
}

.checkout-hint,
.audit-strip {
  border-color: rgba(126, 220, 244, 0.24);
  background: rgba(7, 13, 19, 0.54);
}

.audit-warning {
  color: var(--gold);
}

.quantity-control input {
  border-color: rgba(126, 220, 244, 0.24);
  color: var(--ink);
  background: rgba(7, 13, 19, 0.72);
}

.total-row {
  border-top-color: rgba(126, 220, 244, 0.22);
  color: #ffffff;
}

.total-row strong {
  color: var(--gold);
}

.admin-tab {
  border: 1px solid transparent;
}

.admin-tab.active {
  border-color: rgba(34, 211, 238, 0.4);
}

.admin-panel {
  background:
    linear-gradient(180deg, rgba(13, 20, 29, 0.94), rgba(7, 13, 19, 0.95)),
    repeating-linear-gradient(90deg, rgba(34, 211, 238, 0.035) 0 1px, transparent 1px 42px);
}

.toolbar {
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.toolbar .search-box {
  min-width: min(420px, 100%);
  flex: 1 1 260px;
}

.data-table-wrap {
  border-color: rgba(126, 220, 244, 0.24);
  background: rgba(7, 13, 19, 0.78);
}

.data-table {
  background: rgba(7, 13, 19, 0.92);
}

.data-table th,
.data-table td {
  border-bottom-color: rgba(126, 220, 244, 0.18);
}

.data-table th {
  color: #b8c7d8;
  background: linear-gradient(180deg, #14202b, #0a1119);
}

.table-image {
  border-color: rgba(126, 220, 244, 0.24);
  background: #0a1119;
}

.modal-backdrop {
  background: rgba(0, 4, 8, 0.72);
  backdrop-filter: blur(8px);
}

.toast {
  border-color: rgba(34, 211, 238, 0.52);
  background: linear-gradient(180deg, #14202b, #070b10);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42), 0 0 30px rgba(34, 211, 238, 0.14);
}

.toast.success {
  border-color: rgba(87, 223, 154, 0.72);
  background: linear-gradient(180deg, #123328, #071612);
}

.toast.error {
  border-color: rgba(231, 93, 112, 0.78);
  background: linear-gradient(180deg, #3a1820, #14080c);
}

.form-notice {
  border-color: rgba(34, 211, 238, 0.42);
  color: #c8d8e8;
  background: rgba(34, 211, 238, 0.08);
}

.form-notice.success {
  border-color: rgba(87, 223, 154, 0.62);
  color: #baf7d7;
  background: rgba(87, 223, 154, 0.12);
}

.form-notice.error {
  border-color: rgba(231, 93, 112, 0.62);
  color: #ffd3d9;
  background: rgba(231, 93, 112, 0.12);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes scan-flow {
  from {
    transform: translateY(-24px);
  }

  to {
    transform: translateY(24px);
  }
}

@media (max-width: 1180px) {
  .hero-content {
    align-items: start;
  }

  .workbench-panel {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .app-view {
    padding: 12px;
  }

  .topbar {
    gap: 12px;
  }

  .mode-switch {
    width: 100%;
    overflow: auto;
  }

  .hero-workbench,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-copy h2 {
    font-size: 28px;
  }

  .hero-signal-strip span,
  .workbench-title {
    width: 100%;
  }

  .workbench-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

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

  .product-media {
    height: 190px;
  }

  .cart-list,
  .order-list,
  .compact-list {
    max-height: none;
  }

  .toolbar,
  .inline-actions,
  .table-actions,
  .checkout-hint {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar select,
  .toolbar .search-box,
  .inline-actions > *,
  .table-actions > * {
    width: 100%;
  }

  .data-table {
    min-width: 720px;
  }
}

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

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .print-surface,
  .print-surface * {
    visibility: visible;
  }

  .print-surface {
    position: absolute;
    inset: 0;
    padding: 24px;
    background: #fff;
  }
}
