
    :root {
      --bg: #ffffff;
      --text: #101620;
      --muted: #5f6877;
      --line: #d9dee7;
      --soft: #f5f7fa;
      --accent: #006b5f;
      --radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    * { box-sizing: border-box; }
    body { margin: 0; min-width: 320px; color: var(--text); background: var(--bg); letter-spacing: 0; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; letter-spacing: 0; }
    .topbar {
      min-height: 76px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 30px;
      background: rgba(255,255,255,.96);
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .brand { font-size: clamp(22px, 2.5vw, 30px); font-weight: 820; white-space: nowrap; }
    .brand span { color: var(--accent); }
    .nav { display: flex; align-items: center; gap: 26px; color: #172033; font-size: 15px; }
    .btn, .ghost-btn {
      min-height: 44px;
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 16px;
      font-weight: 760;
      cursor: pointer;
      border: 1px solid var(--accent);
    }
    .btn { background: var(--accent); color: #fff; }
    .ghost-btn { background: #fff; color: var(--accent); }
    .page { max-width: 1240px; margin: 0 auto; padding: 30px; }
    .head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: end; border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 22px; }
    h1 { margin: 0 0 8px; font-size: clamp(34px, 5vw, 58px); line-height: .98; letter-spacing: 0; }
    .muted { color: var(--muted); line-height: 1.45; }
    .compare-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
    .compare-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; display: grid; grid-template-rows: 160px auto; min-width: 0; box-shadow: 0 14px 38px rgba(11,19,32,.06); }
    .media { background: #e7eef1; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; display: grid; place-items: center; color: #607080; font-size: 13px; }
    .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card-body { padding: 14px; display: grid; gap: 12px; align-content: start; }
    .card-body h2 { margin: 0; font-size: 20px; line-height: 1.12; overflow-wrap: anywhere; }
    .price { font-size: 24px; font-weight: 820; }
    .price-state { color: var(--muted); font-size: 13px; line-height: 1.3; margin-top: -8px; }
    .facts { display: grid; gap: 8px; }
    .fact { border: 1px solid var(--line); border-radius: var(--radius); padding: 9px; background: var(--soft); min-height: 54px; }
    .fact small { display: block; color: var(--muted); font-size: 12px; margin-bottom: 3px; }
    .fact strong { display: block; font-size: 14px; line-height: 1.22; overflow-wrap: anywhere; }
    .badges { display: flex; flex-wrap: wrap; gap: 6px; }
    .badge { border: 1px solid #cfd9e4; border-radius: var(--radius); min-height: 26px; padding: 4px 7px; color: #243142; font-size: 12px; background: #fff; }
    .actions { display: grid; gap: 8px; margin-top: 2px; }
    .empty { border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); padding: 20px; display: grid; gap: 12px; }
    .saved-head { display: flex; justify-content: space-between; gap: 16px; align-items: end; border-top: 1px solid var(--line); margin-top: 30px; padding-top: 24px; margin-bottom: 14px; }
    .saved-head h2 { margin: 0 0 6px; font-size: 28px; }
    @media (max-width: 1060px) {
      .nav { display: none; }
      .compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .head { grid-template-columns: 1fr; }
    }
    @media (max-width: 620px) {
      .topbar { min-height: 66px; padding: 0 14px; }
      .page { padding: 20px 14px 34px; }
      .compare-grid { grid-template-columns: 1fr; }
      .brand { font-size: 21px; }
      .topbar .ghost-btn { min-width: 44px; padding: 0 12px; }
    }
