:root {
  --blue: #073f9f;
  --blue-dark: #00307c;
  --red: #ec000c;
  --ink: #080808;
  --line: #0c3f98;
  --paper: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: #eef2f7;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", "Yu Gothic", "Meiryo", sans-serif;
}

button,
input {
  font: inherit;
}

[contenteditable="true"] {
  outline: 0;
  border-radius: 3px;
  max-width: 100%;
}

[contenteditable="true"]:hover,
[contenteditable="true"]:focus {
  background: rgba(255, 237, 0, 0.22);
  box-shadow: 0 0 0 1px rgba(7, 63, 159, 0.28);
}

.toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: #111827;
  color: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
}

.toolbar span {
  margin-left: 10px;
  color: #cbd5e1;
  font-size: 13px;
}

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

.toolbar button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
  color: #111827;
  border-radius: 6px;
  padding: 7px 13px;
  cursor: pointer;
  font-weight: 700;
}

.toolbar button:last-child {
  background: #e60012;
  color: #fff;
  border-color: #e60012;
}

.toolbar-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f3b8f;
  color: #fff;
  border-radius: 6px;
  padding: 7px 13px;
  font-weight: 700;
  text-decoration: none;
}

.template-home {
  min-height: 100vh;
  background: linear-gradient(135deg, #f6f8fb 0%, #dfe7f4 100%);
}

.home-shell {
  width: min(1080px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 32px;
}

.home-header p,
.home-header h1 {
  margin: 0;
}

.home-header p {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.home-header h1 {
  margin-top: 8px;
  font-size: 48px;
  line-height: 1.1;
}

.home-header span {
  display: block;
  margin-top: 12px;
  color: #334155;
  font-size: 18px;
}

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

.template-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 28px;
  border: 2px solid #c7d2fe;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.template-card.featured {
  border-color: var(--blue);
}

.template-card strong {
  font-size: 30px;
  color: var(--blue);
}

.template-card span {
  color: #475569;
  font-size: 17px;
  line-height: 1.55;
}

.template-card em {
  justify-self: start;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.page-shell {
  min-height: calc(100vh - 58px);
  display: grid;
  place-items: start center;
  padding: 22px;
  overflow: auto;
}

.price-board {
  width: 1480px;
  height: 1039px;
  background: var(--paper);
  border: 7px solid var(--blue);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 82px 103px 382px 339px 94px 25px;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.16);
}

.brand-row {
  display: grid;
  grid-template-columns: 40% 60%;
  border-bottom: 4px solid var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 4px 28px;
  color: #fff;
  background: linear-gradient(180deg, #00419f 0%, #0a4dab 100%);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.18);
}

.promises {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  color: var(--blue);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 900;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.promises span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  line-height: 1.1;
}

.promises b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 15px;
  line-height: 1;
}

.promises span:last-child {
  color: #111;
  font-size: clamp(12px, 1vw, 16px);
}

.vehicle-row {
  display: grid;
  grid-template-columns: 20% 15% 19% 12% 16% 18%;
  align-items: center;
  border-bottom: 4px solid var(--blue);
  font-weight: 900;
  text-align: center;
  font-size: clamp(22px, 2.5vw, 43px);
}

.vehicle-row > div {
  min-width: 0;
  padding: 10px 20px;
  border-right: 2px solid #cfd3dd;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.1;
}

.vehicle-row > div:last-child {
  border-right: 0;
}

.vehicle-row .model-name {
  font-size: clamp(42px, 4.5vw, 72px);
}

.main-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  border-bottom: 0;
}

.total-panel {
  position: relative;
  padding: 12px 22px 0 22px;
  border-right: 3px solid var(--blue);
}

.total-panel h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(32px, 3.2vw, 45px);
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}

.total-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 178px;
  border-bottom: 2px dashed var(--blue);
  color: var(--red);
  line-height: 0.82;
}

.total-price > span {
  font-size: 232px;
  font-weight: 1000;
  white-space: nowrap;
}

.total-price small {
  margin: 0 0 18px 16px;
  font-size: 46px;
  font-weight: 1000;
}

.total-price em {
  font-style: normal;
  font-size: clamp(20px, 2vw, 30px);
}

.price-breakdown {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: end;
  gap: 6px;
  padding: 8px 10px 2px;
  text-align: center;
}

.price-breakdown b {
  font-size: clamp(16px, 1.6vw, 24px);
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.price-breakdown p {
  margin: 1px 0 0;
  font-weight: 1000;
  font-size: 48px;
  line-height: 0.82;
  white-space: nowrap;
  overflow: hidden;
}

.price-breakdown small {
  display: inline-block;
  margin-left: 4px;
  color: var(--red);
  font-size: 19px;
}

.price-breakdown .red {
  color: var(--red);
}

.math {
  align-self: center;
  font-size: 42px;
  font-weight: 900;
}

.note {
  margin: 1px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  overflow: hidden;
}

.spec-table {
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  min-width: 0;
  border-bottom: 3px solid var(--line);
}

.spec-table div:last-child {
  border-bottom: 3px solid var(--line);
}

.spec-table b,
.spec-table span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  font-size: clamp(17px, 1.65vw, 24px);
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.15;
}

.spec-table b {
  color: var(--blue);
  border-right: 3px solid var(--line);
}

.spec-table span {
  font-size: clamp(19px, 1.9vw, 27px);
  color: #111;
}

.lower-grid {
  display: grid;
  grid-template-columns: 43% 21% 36%;
  gap: 20px;
  padding: 12px 24px 8px 16px;
  min-height: 0;
  overflow: hidden;
}

.lower-grid > * {
  min-height: 0;
  overflow: hidden;
}

.panel,
.status-box,
.service-item {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.equipment {
  position: relative;
  padding: 36px 13px 8px;
}

.equipment h2 {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  min-width: 205px;
  padding: 6px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 0 0 6px 0;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.equipment-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 7px 14px;
  min-height: 0;
}

.equipment-grid > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 2px solid var(--line);
  border-radius: 5px;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  min-width: 0;
  min-height: 0;
  font-size: clamp(13px, 1.25vw, 18px);
  overflow: hidden;
}

.equipment-grid small {
  font-weight: 900;
  color: #111;
  max-width: 100%;
  overflow: hidden;
}

.icon,
.mini,
.status-icon {
  color: var(--blue);
}

.icon.screen {
  width: 36px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 2px;
  position: relative;
}

.icon.screen::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -10px;
  width: 10px;
  height: 7px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.icon.card {
  width: 38px;
  height: 26px;
  display: grid;
  place-items: center;
  background: currentColor;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.icon.car,
.icon.key,
.icon.abs {
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}

.icon.abs {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.icon.window {
  width: 38px;
  height: 18px;
  border-left: 7px solid currentColor;
  border-bottom: 7px solid currentColor;
  transform: skewX(-22deg);
}

.icon.airbag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: inset 10px -4px 0 0 currentColor;
  position: relative;
}

.icon.airbag::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 8px;
  width: 15px;
  height: 15px;
  background: currentColor;
  border-radius: 50%;
}

.highlights {
  padding: 9px 24px;
  min-height: 0;
  overflow: hidden;
}

.highlights ul {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
  font-size: clamp(15px, 1.55vw, 21px);
  font-weight: 900;
  line-height: 1.42;
}

.highlights li {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.highlights li::before {
  content: "✓";
  position: absolute;
  left: -24px;
  color: var(--blue);
  font-weight: 1000;
}

.status-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}

.status-box {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  min-height: 0;
  padding: 6px 12px;
  overflow: hidden;
}

.status-box h3 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: clamp(20px, 1.8vw, 26px);
  white-space: nowrap;
  overflow: hidden;
}

.status-box h3 small {
  font-size: clamp(11px, 1vw, 15px);
}

.status-box label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 16px;
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 900;
  max-width: 100%;
  overflow: hidden;
}

.status-box input {
  width: 19px;
  height: 19px;
  accent-color: var(--blue);
}

.status-box small {
  font-size: clamp(10px, 0.95vw, 14px);
}

.status-icon {
  justify-self: center;
  width: 40px;
  height: 40px;
  position: relative;
}

.status-icon.shield,
.mini.shield {
  clip-path: polygon(50% 0, 92% 16%, 84% 68%, 50% 100%, 16% 68%, 8% 16%);
  background: currentColor;
}

.status-icon.wrench,
.mini.tool {
  width: 42px;
  height: 16px;
  background: currentColor;
  border-radius: 9px;
  transform: rotate(48deg);
}

.status-icon.wrench::before,
.mini.tool::before {
  content: "";
  position: absolute;
  left: -11px;
  top: -10px;
  width: 24px;
  height: 24px;
  border: 9px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.status-icon.auto::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  width: 36px;
  height: 20px;
  border: 5px solid currentColor;
  border-radius: 10px 10px 4px 4px;
}

.status-icon.auto::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 24px 0 0 currentColor;
}

.bottom-row {
  display: grid;
  grid-template-columns: 22% repeat(4, 1fr);
  gap: 12px;
  padding: 8px 22px 2px 17px;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

.red-badge {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.45;
  overflow: hidden;
}

.service-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-width: 0;
  padding: 7px 9px;
  border-radius: 8px;
  overflow: hidden;
}

.service-item + .service-item {
  border-left-style: dotted;
}

.service-item b {
  color: var(--blue);
  font-size: clamp(15px, 1.4vw, 21px);
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.service-item small {
  display: block;
  margin-top: 3px;
  font-weight: 800;
  font-size: clamp(10px, 0.95vw, 14px);
  overflow: hidden;
}

.mini {
  justify-self: center;
  position: relative;
}

.mini.clipboard {
  width: 28px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.mini.clipboard::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -8px;
  width: 10px;
  height: 8px;
  border: 3px solid currentColor;
  background: #fff;
}

.mini.recycle {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.fineprint {
  margin: 0;
  padding: 0 22px 5px;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ultimate-board {
  grid-template-rows: 70px 73px 518px 340px 25px;
}

.ultimate-brand {
  display: grid;
  grid-template-columns: 29% 71%;
  border-bottom: 4px solid var(--blue);
}

.ultimate-brand .brand {
  font-size: 48px;
  padding: 4px 28px;
}

.ultimate-promises {
  display: grid;
  grid-template-columns: 225px 260px 1fr 315px;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 0 12px 0 16px;
  border-left: 0;
  color: var(--blue);
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
}

.ultimate-promises > span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  overflow: hidden;
  font-size: 18px;
}

.ultimate-promises b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ff4b4b;
  color: #fff;
  font-size: 17px;
}

.ultimate-promises > span:nth-child(3) {
  color: #111;
  font-size: 15px;
}

.ultimate-promises strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  font-size: 28px;
  color: var(--blue);
}

.ultimate-vehicle {
  display: grid;
  grid-template-columns: 19% 26% 15% 20% 20%;
  align-items: center;
  border-bottom: 4px solid var(--blue);
  text-align: center;
  font-weight: 900;
  font-size: 30px;
}

.ultimate-vehicle > div {
  min-width: 0;
  padding: 8px 20px;
  border-right: 2px solid #d5d8e0;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.1;
}

.ultimate-vehicle > div:last-child {
  border-right: 0;
}

.ultimate-vehicle .model-name {
  font-size: 58px;
}

.ultimate-main {
  display: grid;
  grid-template-columns: 67% 33%;
  min-height: 0;
  border-bottom: 0;
}

.ultimate-price {
  padding: 14px 20px 0;
  border-right: 3px solid var(--blue);
  overflow: hidden;
}

.ultimate-price h1 {
  margin: 0;
  color: var(--blue);
  font-size: 39px;
  line-height: 1;
  white-space: nowrap;
}

.ultimate-total {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 310px;
  border-bottom: 2px dashed var(--blue);
  color: var(--red);
  line-height: 0.82;
}

.ultimate-total > span {
  font-size: 320px;
  font-weight: 1000;
  white-space: nowrap;
}

.ultimate-total small {
  margin: 0 0 36px 20px;
  font-size: 58px;
  font-weight: 1000;
}

.ultimate-total em {
  font-style: normal;
  font-size: 30px;
}

.ultimate-breakdown {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: end;
  gap: 8px;
  padding: 10px 24px 4px;
  text-align: center;
}

.ultimate-breakdown b {
  display: block;
  overflow: hidden;
  color: #111;
  font-size: 19px;
  white-space: nowrap;
}

.ultimate-breakdown p {
  margin: 0;
  overflow: hidden;
  font-weight: 1000;
  font-size: 52px;
  line-height: 0.86;
  white-space: nowrap;
}

.ultimate-breakdown small {
  display: inline-block;
  margin-left: 3px;
  color: var(--red);
  font-size: 21px;
}

.ultimate-breakdown .red {
  color: var(--red);
}

.ultimate-side {
  display: grid;
  grid-template-rows: 378px auto;
  min-height: 0;
}

.ultimate-spec {
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  overflow: hidden;
}

.ultimate-spec div {
  display: grid;
  grid-template-columns: 46% 54%;
  min-width: 0;
  border-bottom: 2px solid var(--line);
}

.ultimate-spec b,
.ultimate-spec span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.ultimate-spec b {
  color: var(--blue);
  border-right: 2px solid var(--line);
}

.ultimate-status {
  display: grid;
  grid-template-rows: 108px 82px 92px 126px;
  gap: 10px;
  height: 458px;
  min-height: 0;
  padding: 10px 16px 0;
  overflow: hidden;
}

.ultimate-status .status-box {
  grid-template-columns: 64px 1fr;
  padding: 8px 12px;
}

.ultimate-status .status-box h3 {
  margin-bottom: 6px;
}

.ultimate-status .status-box p {
  margin: 5px 0 0;
  font-weight: 800;
  line-height: 1.25;
}

.ultimate-status .red-badge {
  border: 2px solid var(--red);
  background: #fff;
  color: var(--red);
  font-size: 29px;
  line-height: 1.35;
}

.mini-services {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 12px;
  min-height: 0;
}

.mini-services .service-item {
  min-height: 0;
}

.ultimate-lower {
  display: grid;
  grid-template-columns: 48% 17% 35%;
  gap: 16px;
  min-height: 0;
  padding: 10px 16px 0;
  overflow: hidden;
}

.ultimate-equipment {
  position: relative;
  grid-column: 1 / 2;
  padding: 32px 7px 4px;
  overflow: hidden;
}

.ultimate-equipment h2 {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 5px 12px;
  border-radius: 0 0 5px 0;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.ultimate-equipment h2 small {
  font-size: 12px;
}

.ultimate-equipment-grid {
  height: 198px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
}

.ultimate-equipment-grid label {
  position: relative;
  display: grid;
  grid-template-rows: 19px 1fr;
  place-items: center;
  min-width: 0;
  min-height: 0;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  overflow: hidden;
  padding: 3px 3px 2px;
}

.ultimate-equipment-grid label:nth-child(10),
.ultimate-equipment-grid label:nth-child(11),
.ultimate-equipment-grid label:nth-child(12),
.ultimate-equipment-grid label:nth-child(13),
.ultimate-equipment-grid label:nth-child(14) {
  grid-column: span 2;
}

.ultimate-equipment-grid label:nth-child(n+15) {
  grid-column: span 2;
}

.ultimate-equipment-grid input,
.ultimate-status input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--blue);
}

.ultimate-equipment-grid input {
  position: absolute;
  left: 4px;
  top: 4px;
}

.ultimate-equipment-grid span,
.ultimate-equipment-grid small {
  max-width: 100%;
  overflow: hidden;
  white-space: normal;
}

.ultimate-equipment-grid span {
  align-self: start;
  min-height: 16px;
  padding-left: 15px;
}

.ultimate-equipment-grid .icon {
  transform: scale(0.72);
  transform-origin: center;
}

.ultimate-equipment > p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
}

.appeal {
  grid-column: 2 / 3;
  padding: 22px 16px;
  overflow: hidden;
}

.appeal h2 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}

.appeal ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.appeal li {
  position: relative;
  min-height: 54px;
  padding-left: 28px;
  border-bottom: 1px dotted var(--line);
  overflow: hidden;
}

.appeal li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-size: 22px;
}

.icon.camera {
  width: 34px;
  height: 25px;
  border-radius: 4px;
  background: currentColor;
  position: relative;
}

.icon.camera::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
}

.icon.snow,
.icon.bt {
  font-style: normal;
  font-size: 32px;
  line-height: 1;
}

.icon.lock {
  width: 28px;
  height: 24px;
  border-radius: 4px;
  background: currentColor;
  position: relative;
}

.icon.lock::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -13px;
  width: 16px;
  height: 18px;
  border: 5px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.icon.van,
.icon.usb,
.icon.light,
.icon.gauge,
.icon.crash,
.icon.lane,
.icon.remote {
  width: 35px;
  height: 22px;
  border-bottom: 8px solid currentColor;
  border-left: 7px solid currentColor;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar span {
    display: block;
    margin: 3px 0 0;
  }

  .page-shell {
    place-items: start;
  }
}

@page {
  size: A3 landscape;
  margin: 5mm;
}

@media print {
  html,
  body {
    width: 420mm;
    height: 297mm;
    background: #fff;
  }

  .toolbar {
    display: none;
  }

  .page-shell {
    min-height: 0;
    padding: 0;
    display: block;
  }

  .price-board {
    width: 410mm;
    height: 287mm;
    min-height: 0;
    aspect-ratio: auto;
    box-shadow: none;
    border-width: 1.8mm;
    border-radius: 4mm;
    page-break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  [contenteditable="true"]:hover,
  [contenteditable="true"]:focus {
    background: transparent;
    box-shadow: none;
  }
}
