/* Generated by scripts/build-native-bundles.sh; edit source files. */

/* native-shell.css */
:root {
  --md-shell-ink: #1d1d1f;
  --md-shell-muted: #6e6e73;
  --md-shell-paper: #fff;
  --md-shell-surface: #f5f5f7;
  --md-shell-line: #d2d2d7;
  --md-shell-link: #06c;
  --md-shell-focus: #007aff;
  --md-shell-radius: 18px;
  --md-shell-width: 1200px;
  --md-shell-reading: 760px;
}

body.md-native-shell,
body.md-native-shell * {
  box-sizing: border-box;
}

body.md-native-shell {
  margin: 0;
  min-width: 320px;
  background: var(--md-shell-paper);
  color: var(--md-shell-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -.015em;
  -webkit-font-smoothing: antialiased;
}

.md-site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: clip;
}

.md-main {
  flex: 1 0 auto;
  min-width: 0;
  outline: 0;
}

.md-shell-container {
  width: min(100% - 48px, var(--md-shell-width));
  margin-inline: auto;
}

.md-shell-reading {
  width: min(100% - 48px, var(--md-shell-reading));
  margin-inline: auto;
}

.md-shell-section {
  padding-block: clamp(40px, 7vw, 88px);
}

.md-shell-page__header {
  padding-block: clamp(40px, 6vw, 72px) 24px;
}

.md-shell-page__title {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.md-shell-entry {
  padding-bottom: clamp(56px, 8vw, 104px);
}

.md-shell-entry :where(h2, h3, h4) {
  margin: 1.6em 0 .55em;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.md-shell-entry h2 { font-size: clamp(28px, 4vw, 40px); }
.md-shell-entry h3 { font-size: clamp(23px, 3vw, 30px); }
.md-shell-entry :where(p, ul, ol, blockquote) { margin: 0 0 1em; }
.md-shell-entry :where(img, video, iframe) { max-width: 100%; height: auto; }
.md-shell-entry a { color: var(--md-shell-link); text-underline-offset: .15em; }
.md-shell-entry a:focus-visible,
.md-shell-card a:focus-visible,
.md-shell-search input:focus-visible,
.md-shell-search button:focus-visible {
  outline: 3px solid var(--md-shell-focus);
  outline-offset: 3px;
}

.md-shell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: clamp(56px, 8vw, 104px);
}

.md-shell-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--md-shell-line);
  border-radius: var(--md-shell-radius);
  background: var(--md-shell-paper);
}

.md-shell-card h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.15; }
.md-shell-card p { margin: 0 0 12px; color: var(--md-shell-muted); }
.md-shell-card a { color: var(--md-shell-link); text-decoration: none; }

.md-shell-search {
  display: flex;
  gap: 10px;
  padding-bottom: 32px;
}

.md-shell-search input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--md-shell-line);
  border-radius: 12px;
  background: var(--md-shell-surface);
  color: inherit;
  font: inherit;
}

.md-shell-search button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: var(--md-shell-link);
  color: #fff;
  font: inherit;
  font-weight: 600;
}

.md-shell-pagination { padding-bottom: 64px; }
.md-shell-pagination .page-numbers { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.md-shell-empty { padding-bottom: 72px; color: var(--md-shell-muted); }

@media (max-width: 767px) {
  .md-shell-container,
  .md-shell-reading { width: min(100% - 32px, var(--md-shell-width)); }
  .md-shell-reading { max-width: var(--md-shell-reading); }
  .md-shell-grid { grid-template-columns: 1fr; gap: 14px; }
  .md-shell-search { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  body.md-native-shell { scroll-behavior: auto; }
}

/* native-header.css */
:root {
  --md-ink: #1d1d1f;
  --md-secondary: #6e6e73;
  --md-paper: #fff;
  --md-surface: #f5f5f7;
  --md-line: #d2d2d7;
  --md-control: #86868b;
  --md-link: #0066cc;
  --md-focus: #007aff;
  --md-type-small: 13px;
  --md-type-label: 15px;
  --md-type-body: 17px;
  --md-radius-field: 12px;
  --md-radius-panel: 18px;
  --md-shadow: 0 12px 32px rgb(0 0 0 / 10%);
}
.md-header, .md-header * { box-sizing: border-box; }
.md-header { position: relative; z-index: 390; background: var(--md-paper); color: var(--md-ink); border-bottom: 1px solid var(--md-line); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: var(--md-type-label); line-height: 1.4; letter-spacing: -.015em; }
.md-header a { color: var(--md-ink); text-decoration: none; }
.md-header a:hover { color: var(--md-link); }
.md-header a:focus-visible, .md-header button:focus-visible, .md-header summary:focus-visible { outline: 3px solid var(--md-focus); outline-offset: 3px; }
.md-header__inner { max-width: 1248px; padding: 16px 24px; margin: auto; display: grid; grid-template-columns: auto 1fr auto; gap: 12px 36px; align-items: center; }
.md-header__brand { display: flex; align-items: center; min-height: 44px; }
.md-header__brand img { width: 154px; height: 38px; object-fit: contain; }
.md-header__nav { display: flex; justify-content: flex-end; gap: 28px; }
.md-header__nav a { display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; }
.md-header__repair-list { display: flex; gap: 8px; align-items: center; min-height: 44px; white-space: nowrap; }
.md-header__menu { display: none; }
.md-header__menu-close-icon, .md-header__menu[open] .md-header__menu-open-icon { display: none; }
.md-header__menu[open] .md-header__menu-close-icon { display: inline-flex; }
.md-header__menu-open-icon { display: inline-flex; }
.md-search { grid-column: 1 / -1; position: relative; }
.md-search__form { display: flex; align-items: center; gap: 8px; margin: 0; padding: 0 6px 0 14px; background: var(--md-surface); border: 1px solid var(--md-control); border-radius: var(--md-radius-field); min-height: 48px; }
.md-search__form > svg { flex: 0 0 20px; color: var(--md-secondary); }
.md-search__form:focus-within { outline: 3px solid var(--md-focus); outline-offset: 2px; }
.md-search input[type="search"] { flex: 1; min-width: 0; width: 100%; height: 46px; padding: 0; border: 0; background: transparent; box-shadow: none; outline: none; color: var(--md-ink); font-family: inherit; font-size: var(--md-type-body); line-height: 1.4; letter-spacing: inherit; }
.md-search input::placeholder { color: var(--md-secondary); opacity: 1; }
.md-search input::-webkit-search-cancel-button { display: none; }
.md-search button { font-family: inherit; font-size: var(--md-type-label); font-weight: 500; text-transform: none; letter-spacing: inherit; min-height: 44px; padding: 0 10px; box-shadow: none; border: 0; background: transparent; color: var(--md-link); border-radius: var(--md-radius-field); }
.md-search button:hover { background: var(--md-paper); }
.md-search__clear { min-width: 44px; display: flex; align-items: center; justify-content: center; color: var(--md-secondary); }
.md-header [hidden] { display: none; }
.md-search__panel { position: absolute; top: calc(100% + 8px); left: 0; right: 0; border: 1px solid var(--md-line); border-radius: var(--md-radius-panel); background: var(--md-paper); box-shadow: var(--md-shadow); padding: 8px; max-height: min(600px, 65dvh); overflow-y: auto; overscroll-behavior: contain; }
.md-search__hint { padding: 8px 12px; margin: 0; color: var(--md-secondary); font-size: var(--md-type-small); }
.md-search__result { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 10px 12px; gap: 16px; border-radius: var(--md-radius-field); font-size: var(--md-type-body); }
.md-search__result[aria-selected="true"], .md-search__result:hover { background: var(--md-surface); }
.md-search__result span { display: block; }
.md-search__result small { display: block; color: var(--md-secondary); font-size: var(--md-type-small); margin-top: 3px; }
.md-search__status { padding: 0 12px; margin: 8px 0; color: var(--md-secondary); font-size: var(--md-type-small); }
.md-search__help { display: flex; justify-content: space-between; gap: 16px; padding: 12px; border-top: 1px solid var(--md-line); font-size: var(--md-type-small); }
.md-search__help a { display: inline-flex; align-items: center; min-height: 44px; color: var(--md-link); white-space: nowrap; font-size: var(--md-type-label); }
.md-header__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.md-header__skip { position: absolute; top: -200px; left: 16px; background: var(--md-paper); padding: 12px; }
.md-header__skip:focus { top: 12px; z-index: 5; }
@media (min-width: 1100px) {
  .md-header__inner { grid-template-columns: auto minmax(220px, 1fr) auto auto; gap: 24px; }
  .md-search { grid-column: 2; grid-row: 1; }
  .md-header__nav { grid-column: 3; grid-row: 1; gap: 24px; font-size: var(--md-type-small); }
  .md-header__repair-list { grid-column: 4; grid-row: 1; font-size: var(--md-type-small); }
  .md-search__panel { min-width: 460px; }
}
@media (max-width: 767px) {
  .md-header__inner { grid-template-columns: 1fr auto auto; gap: 6px 12px; padding: 8px 16px 12px; }
  .md-header__brand img { width: 126px; height: 34px; }
  .md-header__nav { display: none; }
  .md-header__repair-list { justify-content: center; gap: 5px; font-size: var(--md-type-small); }
  .md-header__menu { display: block; }
  .md-header__menu summary { list-style: none; display: flex; justify-content: center; align-items: center; width: 44px; min-height: 44px; cursor: pointer; }
  .md-header__menu summary::-webkit-details-marker { display: none; }
  .md-header__drawer { position: absolute; top: 100%; left: 0; right: 0; background: var(--md-paper); border-bottom: 1px solid var(--md-line); box-shadow: var(--md-shadow); padding: 16px 24px 24px; max-height: 72dvh; overflow-y: auto; }
  .md-header__drawer a { display: flex; align-items: center; justify-content: space-between; min-height: 52px; font-size: var(--md-type-body); }
  .md-header__drawer p { margin: 20px 0 12px; font-size: var(--md-type-label); }
  .md-header__drawer p span { color: var(--md-secondary); }
  .md-header__drawer .md-header__chat { color: var(--md-link); }
  .md-search__submit { display: none; }
  .md-search__help { flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) { .md-header * { transition: none; scroll-behavior: auto; } }

/* native-footer.css */
/* Self-contained tokens: the footer can be enabled or rolled back separately from the header. */
:root { --md-footer-ink: #1d1d1f; --md-footer-muted: #6e6e73; --md-footer-link: #0066cc; --md-footer-line: #d2d2d7; --md-footer-surface: #f5f5f7; --md-footer-focus: #007aff; --md-footer-small: 13px; --md-footer-label: 15px; --md-footer-body: 17px; --md-footer-symbol: 22px; --md-footer-title-mobile: 24px; --md-footer-title: 28px; --md-footer-focus-radius: 3px; }
.md-footer { background: var(--md-footer-surface); color: var(--md-footer-ink); font: var(--md-footer-label)/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -.012em; }
.md-footer, .md-footer * { box-sizing: border-box; }
.md-footer__inner { max-width: 1248px; padding: 40px 24px 20px; margin: auto; }
.md-footer h2, .md-footer p, .md-footer ul { margin: 0; padding: 0; }
.md-footer h2 { color: var(--md-footer-ink); font: inherit; font-weight: 600; letter-spacing: inherit; text-transform: none; }
.md-footer a { color: var(--md-footer-ink); text-decoration: none; }
.md-footer a:hover { color: var(--md-footer-link); text-decoration: underline; text-underline-offset: 3px; }
.md-footer a:focus-visible, .md-footer summary:focus-visible { outline: 3px solid var(--md-footer-focus); outline-offset: 3px; border-radius: var(--md-footer-focus-radius); }
.md-footer ul { list-style: none; }
.md-footer li { margin: 0; padding: 0; }
.md-footer__contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--md-footer-line); }
.md-footer .md-footer__help h2 { font-size: var(--md-footer-title); line-height: 1.18; letter-spacing: -.025em; margin-bottom: 10px; }
.md-footer__help p { font-size: var(--md-footer-body); color: var(--md-footer-muted); }
.md-footer .md-footer__action { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--md-footer-link); }
.md-footer__help .md-footer__action { margin-top: 8px; font-size: var(--md-footer-body); }
.md-footer__visit h2 { margin-bottom: 6px; font-size: var(--md-footer-body); }
.md-footer address { font-style: normal; margin: 0; }
.md-footer .md-footer__hours { color: var(--md-footer-muted); margin-top: 8px; }
.md-footer__navigation { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding: 24px 0; }
.md-footer__group h2 { margin: 8px 0; }
.md-footer__navigation a { display: inline-flex; align-items: center; min-height: 44px; }
.md-footer__partners summary { display: flex; align-items: center; justify-content: space-between; min-height: 44px; cursor: pointer; list-style: none; font-weight: 600; gap: 16px; }
.md-footer__partners summary::-webkit-details-marker { display: none; }
.md-footer__partners summary span { font-size: var(--md-footer-symbol); font-weight: 400; }
.md-footer__partners[open] summary span { transform: rotate(45deg); }
.md-footer__legal { border-top: 1px solid var(--md-footer-line); padding-top: 20px; color: var(--md-footer-muted); font-size: var(--md-footer-small); line-height: 1.5; }
.md-footer__legal > p { margin-bottom: 12px; }
.md-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0 24px; }
.md-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 0 24px; }
.md-footer__bottom a { display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 767px) {
  .md-footer__inner { padding: 32px 16px 20px; }
  .md-footer__contact { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .md-footer .md-footer__help h2 { font-size: var(--md-footer-title-mobile); }
  .md-footer__navigation { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 0; font-size: var(--md-footer-small); }
  .md-footer__partners { grid-column: 1 / -1; border-top: 1px solid var(--md-footer-line); padding-top: 8px; font-size: var(--md-footer-label); }
  .md-footer__partners ul { padding-top: 4px; }
  .md-footer__bottom { gap: 8px; margin-top: 16px; }
  .md-footer__bottom ul { display: block; }
}
