@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=DM+Mono:wght@400;500&family=Manrope:wght@500;600;700&display=swap');

:root {
  --ink: #071a2b;
  --ink-2: #102e46;
  --paper: #f5f7f6;
  --white: #ffffff;
  --mist: #e8efed;
  --line: #d7e2df;
  --slate: #4a6273;
  --muted: #536a78;
  --teal: #0b7a75;
  --teal-dark: #075d59;
  --teal-pale: #dcefeb;
  --lime: #c8ef71;
  --warning: #f7eddc;
  --warning-ink: #7c5426;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(7, 26, 43, .09);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--slate); font-family: 'DM Sans', system-ui, sans-serif; font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(11,122,117,.28); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 790px); margin-inline: auto; }
.eyebrow { margin: 0 0 14px; color: var(--teal); font: 500 12px/1.4 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow--light { color: var(--lime); }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: 'Manrope', sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(44px, 7vw, 82px); max-width: 980px; }
h2 { font-size: clamp(34px, 4.6vw, 58px); max-width: 880px; }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 18px; }
p { margin: 0; }
.lead { margin-top: 24px; max-width: 690px; color: #516b7d; font-size: clamp(19px, 2.1vw, 23px); }
.muted { color: var(--muted); }
.mono { font-family: 'DM Mono', monospace; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 16px; border-radius: 8px; background: var(--ink); color: white; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 500; top: 0; border-bottom: 1px solid rgba(215,226,223,.8); background: rgba(245,247,246,.92); backdrop-filter: blur(18px); }
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 142px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link { padding: 10px 12px; border-radius: 999px; color: var(--ink-2); font-size: 15px; font-weight: 500; transition: .2s ease; }
.nav__link:hover, .nav__link[aria-current='page'] { background: var(--white); color: var(--teal); }
.nav__cta { margin-left: 4px; padding: 11px 17px; border-radius: 999px; background: var(--ink); color: white; font-size: 14px; font-weight: 600; }
.nav__cta:hover { background: var(--teal-dark); }
.nav__toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; }
.nav__toggle span, .nav__toggle::before, .nav__toggle::after { width: 18px; height: 2px; background: currentColor; content: ''; transition: .2s; }
.nav__toggle { flex-direction: column; gap: 4px; }

.hero { position: relative; overflow: hidden; padding: 92px 0 72px; }
.hero::before { position: absolute; z-index: -1; top: -300px; right: -250px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(200,239,113,.34), rgba(220,239,235,.16) 48%, transparent 70%); content: ''; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr); align-items: end; gap: 70px; }
.hero__copy em { color: var(--teal); font-style: normal; }
.hero__actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-size: 15px; font-weight: 600; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal); color: white; box-shadow: 0 12px 25px rgba(11,122,117,.17); }
.btn--primary:hover { background: var(--teal-dark); }
.btn--dark { background: var(--ink); color: white; }
.btn--ghost { border-color: var(--line); background: var(--white); color: var(--ink); }
.btn--light { background: white; color: var(--ink); }
.btn--block { width: 100%; }
.hero__proof { padding: 12px 0 8px 28px; border-left: 1px solid var(--line); }
.proof-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.proof-card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #eef7f4, white); }
.proof-card__head strong { color: var(--ink); font-family: 'Manrope'; }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-dark); font: 500 11px 'DM Mono'; text-transform: uppercase; letter-spacing: .06em; }
.status::before { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,239,113,.25); content: ''; }
.spec-list { margin: 0; padding: 12px 22px 18px; }
.spec-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border: 0; }
.spec-row dt { color: var(--muted); font-size: 14px; }
.spec-row dd { margin: 0; color: var(--ink); font: 500 13px 'DM Mono'; text-align: right; }

.notice { border-block: 1px solid #eadfc9; background: var(--warning); color: var(--warning-ink); }
.notice .container { padding-block: 14px; font-size: 14px; text-align: center; }
.section { padding: 102px 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: rgba(255,255,255,.69); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: white; }
.section--dark .muted { color: rgba(255,255,255,.82); }
.section__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section__head p:last-child { max-width: 520px; }
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.grid--4 .card h2 { font-size: clamp(25px, 2.35vw, 38px); overflow-wrap: anywhere; }
.feature-image--cleanroom { background-image: linear-gradient(180deg,rgba(7,26,43,.05),rgba(7,26,43,.28)),url('/assets/img/cleanroom-lab.webp'); }
.feature-image--flask { background-image: url('/assets/img/lab-flask.webp'); }
.feature-image--microscopy { background-image: url('/assets/img/hero-microscopy.webp'); }
.feature-image--cellular { background-image: url('/assets/img/cellular-dark.webp'); }
a.card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
a.card:hover { transform: translateY(-5px); border-color: #9fc5bd; box-shadow: var(--shadow); }
.card__top { display: flex; min-height: 32px; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 28px; }
.card__tag { color: var(--teal); font: 500 11px 'DM Mono'; text-transform: uppercase; letter-spacing: .09em; }
.card__arrow { color: var(--teal); font-size: 23px; }
.card p { margin-top: 14px; font-size: 15px; }
.card__facts { display: grid; gap: 9px; margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); }
.card__fact { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 13px; }
.card__fact strong { color: var(--ink); font: 500 12px 'DM Mono'; text-align: right; }
.card--dark { border-color: rgba(255,255,255,.12); background: var(--ink-2); }
.card--dark h3, .card--dark strong { color: white; }
.card--dark p, .card--dark .card__fact { color: rgba(255,255,255,.62); }
.card--dark .card__facts { border-color: rgba(255,255,255,.1); }

.checklist-items { display: grid; gap: 24px; }
.checklist-item { padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.checklist-item__header { display: flex; align-items: center; gap: 18px; padding: 24px 28px; background: linear-gradient(135deg, #eef7f4, white); border-bottom: 1px solid var(--line); }
.checklist-item__num { flex: 0 0 44px; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--teal); color: white; font: 700 16px 'Manrope', sans-serif; }
.checklist-item__header h3 { margin: 0; font-size: clamp(18px, 1.8vw, 22px); }
.checklist-item__body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 28px; }
.checklist-item__col h4 { margin: 0 0 10px; color: var(--teal-dark); font: 500 11px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .09em; }
.checklist-item__col p { margin: 0; font-size: 15px; line-height: 1.65; }
.checklist-item__col .check-list { margin: 14px 0 0; gap: 10px; }
.checklist-item__col .check-list li { padding-left: 28px; font-size: 14px; }
.checklist-item__col .check-list li::before { width: 18px; height: 18px; font-size: 10px; }
.checklist-item__col .check-list strong { display: inline; font-family: inherit; }
@media (max-width: 780px) {
  .checklist-item__body { grid-template-columns: 1fr; gap: 20px; }
  .checklist-item__header { padding: 18px 20px; }
  .checklist-item__body { padding: 20px; }
}

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: white; }
.metric { padding: 28px; border-right: 1px solid var(--line); text-align: center; }
.metric:last-child { border: 0; }
.metric strong { display: block; color: var(--ink); font: 600 clamp(26px,3vw,38px) 'Manrope'; }
.metric span { color: var(--muted); font-size: 13px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.feature-image { min-height: 500px; overflow: hidden; border-radius: 26px; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.check-list { display: grid; gap: 18px; margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 36px; }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: var(--teal-pale); color: var(--teal-dark); content: '✓'; font-size: 12px; font-weight: 700; }
.check-list strong { display: block; color: var(--ink); font-family: 'Manrope'; }
.check-list span { color: var(--muted); font-size: 15px; }

.page-hero { padding: 82px 0 64px; }
.page-hero h1 { max-width: 850px; font-size: clamp(42px,6vw,70px); }
.breadcrumbs { margin-bottom: 36px; color: var(--muted); font: 500 12px 'DM Mono'; }
.breadcrumbs a { color: var(--teal-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.product-hero { padding: 76px 0 72px; }
.product-hero__grid { display: grid; grid-template-columns: 1fr .78fr; gap: 72px; align-items: start; }
.data-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.data-panel h2 { padding: 24px 28px 0; font-size: 22px; }
.data-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.data-table th, .data-table td { padding: 15px 28px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { width: 43%; color: var(--muted); font: 500 12px 'DM Mono'; text-transform: uppercase; letter-spacing: .04em; }
.data-table td { color: var(--ink); font-weight: 500; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.table-wrap:focus-visible { outline: 3px solid rgba(11,122,117,.28); outline-offset: 3px; }
.table { width: 100%; min-width: 700px; border-collapse: collapse; }
.table th, .table td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.table th { color: var(--teal-dark); font: 500 11px 'DM Mono'; text-transform: uppercase; letter-spacing: .05em; }
.table td { color: var(--ink-2); font-size: 14px; }
.table tr:last-child td { border: 0; }
.pill { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--teal-pale); color: var(--teal-dark); font: 500 11px 'DM Mono'; }

.search-bar { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 26px; }
.input, .select, .textarea { width: 100%; min-height: 52px; padding: 13px 16px; border: 1px solid #cfdcda; border-radius: 12px; background: white; color: var(--ink); }
.textarea { min-height: 124px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11,122,117,.1); outline: 0; }
.catalog { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.compound { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.compound strong { display: block; color: var(--ink); font-size: 14px; }
.compound span { color: var(--muted); font: 400 11px 'DM Mono'; }
.catalog-empty { display: none; padding: 30px; color: var(--muted); text-align: center; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.catalog-filter { padding: 6px 16px; border: 1px solid var(--line); border-radius: 20px; background: white; color: var(--muted); font: 500 12px 'DM Mono', monospace; cursor: pointer; transition: all .15s; }
.catalog-filter:hover { border-color: var(--accent); color: var(--accent); }
.catalog-filter.is-active { background: var(--accent); border-color: var(--accent); color: white; }
.catalog-count { color: var(--muted); font: 400 12px 'DM Mono', monospace; margin-bottom: 16px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.13); }
.step { padding: 35px; background: var(--ink); }
.step__num { display: block; margin-bottom: 38px; color: var(--lime); font: 500 12px 'DM Mono'; }
.step p { margin-top: 12px; color: rgba(255,255,255,.63); font-size: 15px; }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink-2); font-size: 13px; font-weight: 600; }
.field small { color: var(--muted); }
.hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin-bottom: 24px; padding: 16px 18px; border-radius: 12px; background: var(--teal-pale); color: var(--teal-dark); }
.form-status.is-visible { display: block; }
.contact-lines { display: grid; gap: 16px; margin-top: 32px; }
.contact-line { padding-top: 16px; border-top: 1px solid var(--line); }
.contact-line span { display: block; color: var(--muted); font: 500 11px 'DM Mono'; text-transform: uppercase; }
.contact-line a { color: var(--ink); font-weight: 600; }

.cta { padding: 86px 0; background: var(--teal-dark); color: rgba(255,255,255,.9); }
.cta__inner { display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.cta h2 { color: white; }
.cta .eyebrow { color: #e4ffab; }
.cta p { max-width: 620px; margin-top: 18px; }

.footer { padding: 72px 0 30px; background: #04131f; color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 50px; }
.footer__brand img { width: 156px; filter: brightness(0) invert(1); }
.footer__brand p { max-width: 340px; margin-top: 20px; font-size: 14px; }
.footer h4, .footer-heading { margin-bottom: 16px; color: rgba(255,255,255,.65); font: 500 11px 'DM Mono'; text-transform: uppercase; letter-spacing: .08em; }
.footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer a { font-size: 14px; }
.footer a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom p { max-width: 600px; font-size: 12px; }

@media (max-width: 980px) {
  .nav__toggle { display: flex; }
  .nav__links { position: fixed; inset: 78px 0 auto; display: none; flex-direction: column; align-items: stretch; max-height: calc(100vh - 78px); padding: 18px 20px 26px; overflow: auto; border-bottom: 1px solid var(--line); background: var(--paper); }
  .nav__links.is-open { display: flex; }
  .nav__link, .nav__cta { margin: 0; padding: 14px 16px; border-radius: 10px; text-align: left; }
  .nav__cta { margin-top: 8px; text-align: center; }
  .hero__grid, .product-hero__grid, .split, .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__proof { padding: 0; border: 0; }
  .grid--4, .catalog { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps, .grid--3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 126px; }
  .nav { min-height: 70px; }
  .nav__links { top: 70px; max-height: calc(100vh - 70px); }
  .hero, .page-hero { padding-top: 62px; }
  .hero { padding-bottom: 56px; }
  .section { padding: 72px 0; }
  .section__head, .cta__inner, .footer__bottom { align-items: flex-start; flex-direction: column; }
  .grid--2, .grid--4, .catalog, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .card, .form-card { padding: 24px; }
  .feature-image { min-height: 340px; }
  .search-bar { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .product-hero { padding-top: 54px; }
}

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

.legal-copy { display: grid; gap: 0; }
.legal-section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-section:first-child { padding-top: 0; }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin-bottom: 12px; font-size: clamp(22px,3vw,30px); }
.legal-section p { margin: 0; }

/* === Order page === */
.order-intro { max-width: 760px; margin-bottom: 48px; }
.order-intro h2 { margin-bottom: 16px; }
.order-form { max-width: 880px; margin: 0 auto; }
.order-section { margin: 0 0 36px; padding: 28px 28px 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(245,247,246,.5); }
.order-section legend { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding: 0; font-family: 'Manrope',sans-serif; font-size: 19px; font-weight: 700; color: var(--ink); }
.step-badge { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: white; font: 600 12px 'DM Mono',monospace; }
.order-hint { margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.order-table-wrap { overflow-x: auto; }
.order-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.order-table th { padding: 10px 12px; border-bottom: 2px solid var(--ink); text-align: left; color: var(--ink); font: 600 11px 'DM Mono',monospace; text-transform: uppercase; letter-spacing: .05em; }
.order-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.order-table tbody tr:hover { background: rgba(220,239,235,.3); }
.ot-prod strong { display: block; color: var(--ink); font-size: 15px; }
.ot-sku { display: block; color: var(--muted); font: 500 11px 'DM Mono',monospace; margin-top: 2px; }
.ot-size { color: var(--slate); font: 500 13px 'DM Mono',monospace; }
.input--qty { width: 70px; min-height: 44px; text-align: center; font-size: 16px; font-weight: 600; }
.ot-unit { color: var(--slate); font: 500 13px 'DM Mono',monospace; white-space: nowrap; }
.ot-line { color: var(--ink); font-weight: 600; font: 500 14px 'DM Mono',monospace; text-align: right; white-space: nowrap; }
.order-table tfoot td { padding: 10px 12px; border-bottom: 0; }
.ot-label { text-align: right; color: var(--muted); font: 500 13px 'DM Mono',monospace; }
.ot-amount { text-align: right; color: var(--ink); font: 500 14px 'DM Mono',monospace; }
.ot-grand td { padding-top: 16px; border-top: 2px solid var(--ink); }
.ot-grand .ot-label { font-size: 16px; font-weight: 700; color: var(--ink); }
.ot-grand .ot-amount { font-size: 18px; font-weight: 700; color: var(--ink); }
.select--inline { display: inline-block; width: auto; min-height: auto; padding: 6px 10px; font-size: 12px; margin-left: 8px; }
.payment-options { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .2s; margin-bottom: 10px; }
.payment-options:hover { border-color: var(--teal); }
.payment-options input { margin-top: 3px; }
.payment-options span { display: flex; flex-direction: column; }
.payment-options small { margin-top: 2px; }
.payment-options:has(input:checked) { border-color: var(--teal); background: var(--teal-pale); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-label input { margin-top: 3px; }
.form-status.is-error { background: #fef3e2; color: var(--warning-ink); }
@media (max-width: 640px) {
  .order-section { padding: 20px 16px 16px; }
  .order-table { font-size: 13px; }
  .order-table th, .order-table td { padding: 8px 6px; }
  .input--qty { width: 50px; }
  .ot-sku { display: none; }
}
