:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef5ff;
  --text: #102033;
  --muted: #5d6b7c;
  --brand: #1268d6;
  --brand-dark: #0c4fa7;
  --accent: #18a058;
  --border: #dce5ef;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.10);
}

/* Injected by the Node server only when PREVIEW_MODE=true. */
.preview-badge {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  padding: .45rem .75rem;
  border-radius: 999px;
  color: #fff;
  background: #8a2be2;
  box-shadow: 0 4px 18px rgb(0 0 0 / 20%);
  font: 700 .8rem/1 system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topline { background: #0e2744; color: #dcecff; font-size: 0.9rem; }
.topline__inner { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.nav { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; min-width: 168px; white-space: nowrap; }
.logo__mark { display: block; flex: 0 0 auto; width: 42px; height: 42px; }
.logo small { display: block; color: var(--muted); font-size: .78rem; }
.main-menu { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex: 1; font-weight: 650; font-size: .84rem; white-space: nowrap; }
.main-menu a, .header-actions a { text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 9px; white-space: nowrap; font-size: .9rem; }
.phone { font-weight: 800; color: var(--brand-dark); }
.cart-link { padding: 9px 12px; border: 1px solid var(--border); border-radius: 999px; background: #fff; }
.cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
}
.menu-toggle { display: none; border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 10px 12px; font-weight: 800; }
.hero { padding: 52px 0; background: radial-gradient(circle at top left, #dff0ff, transparent 36%), linear-gradient(135deg, #ffffff 0%, #edf6ff 100%); }
.hero--home { padding-top: 54px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 32px; align-items: center; }
.hero--home .hero__grid { align-items: start; }
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.hero-media--kits,
.hero-media--kits img,
.hero-media--catalog,
.hero-media--catalog img,
.hero-media--horeca,
.hero-media--horeca img,
.hero-media--enterprise,
.hero-media--enterprise img {
  min-height: 420px;
}
h1, h2, h3 { line-height: 1.14; margin-top: 0; }
h1 { font-size: clamp(2.15rem, 5vw, 4.2rem); margin-bottom: 18px; }
h2 { font-size: clamp(1.65rem, 3vw, 2.45rem); margin-bottom: 12px; }
h3 { font-size: 1.2rem; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 850px; }
.microcopy { color: var(--muted); font-weight: 650; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 12px 18px; border-radius: 12px; border: 0; text-decoration: none; font-weight: 850; cursor: pointer; transition: .18s ease; }
.btn__icon { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 20px rgba(18,104,214,.24); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: var(--accent); color: #fff; }
.btn-outline { color: var(--brand-dark); border: 1px solid var(--brand); background: #fff; }
.btn.is-added { background: var(--accent); color: #fff; }
.btn-wide { width: 100%; }
.hero-card, .card, .kit-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.hero-card { background: linear-gradient(180deg, #ffffff, #f8fbff); }
.section { padding: 70px 0; }
.section-muted { background: var(--surface-2); }
.section-heading { max-width: 820px; margin-bottom: 28px; }
.grid { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { box-shadow: none; }
.task-card { display: flex; flex-direction: column; min-height: 230px; }
.task-card .text-link { margin-top: auto; }
.text-link { color: var(--brand-dark); font-weight: 900; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.kit-card { display: flex; flex-direction: column; gap: 8px; }
.kit-card ul, .check-list { padding-left: 20px; margin: 8px 0 18px; }
.kit-card li, .check-list li { margin-bottom: 8px; }
.kit-card .btn { margin-top: auto; }
.kit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.kit-grid--featured { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.kit-card--data {
  min-width: 0;
  min-height: 0;
  padding: 20px;
  gap: 0;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.07);
}
.kit-card--summary { min-height: 260px; }
.kit-card--summary .btn { width: fit-content; margin-top: auto; }
.kit-card__top { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 14px; align-items: start; }
.kit-card__media {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f4f8fc;
}
.kit-card__media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}
.kit-card__identity { min-width: 0; }
.kit-card__category {
  margin: 0 0 7px;
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.kit-card__identity h3 { margin: 0 0 9px; }
.kit-total { color: var(--brand-dark); font-size: 1.05rem; }
.kit-card__body { display: grid; gap: 18px; padding-top: 18px; }
.kit-card__details { display: grid; gap: 12px; }
.kit-card__purpose { margin: 0; color: var(--muted); }
.kit-card__suitability,
.kit-card__anchor {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
}
.kit-card__suitability span,
.kit-card__anchor span { color: var(--muted); font-weight: 800; }
.kit-card__suitability strong,
.kit-card__anchor strong { max-width: 65%; text-align: right; }
.kit-card__configuration { display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.kit-card__configuration h4,
.kit-card__configuration h5 { margin: 0; }
.kit-card__configuration h4 { font-size: .98rem; }
.kit-card__configuration h5 { color: var(--muted); font-size: .84rem; text-transform: uppercase; }
.kit-card__base { display: grid; gap: 7px; }
.kit-card--data .kit-products { margin: 0; }
.kit-card__footer { display: grid; gap: 14px; padding-top: 18px; }
.kit-card__actions { display: grid; gap: 10px; }
.kit-card__actions .btn { width: 100%; min-width: 0; margin-top: 0; }
.kit-card__actions .text-link { justify-self: center; }
.kit-products { display: grid; gap: 8px; padding-left: 0 !important; list-style: none; }
.kit-products li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.kit-products span { color: var(--text); font-weight: 700; }
.kit-product__meta { display: grid; justify-items: end; gap: 7px; }
.kit-product__price { color: var(--brand-dark); white-space: nowrap; }
.kit-product__price--out { color: #8a1f11; }
.kit-product-qty {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.kit-product-qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}
.kit-product-qty button:hover { background: #eef5ff; }
.kit-product-qty span { text-align: center; }
.kit-choice {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbff;
}
.kit-choice legend { padding: 0 6px; color: var(--brand-dark); font-weight: 900; }
.kit-choice-option {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #fff;
}
.kit-choice-option.is-selected { border-color: var(--brand); box-shadow: 0 6px 16px rgba(18, 104, 214, .10); }
.kit-choice-option > label { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; cursor: pointer; }
.kit-choice-option input { width: auto; margin-top: 4px; }
.kit-choice-option label span { display: grid; gap: 3px; }
.kit-choice-option label small { color: var(--muted); font-weight: 650; }
.kit-choice-option:not(.is-selected) [data-kit-choice-products] { display: none; }
.kit-more, .kit-status { margin: 0; color: var(--muted); font-weight: 800; }
.kit-status--mixed { color: #8a1f11; }
.kit-methods { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; }
.kit-method {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid #cfe0f2;
  border-radius: 10px;
  background: #f3f8fe;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.15;
}
.kit-method svg { flex: 0 0 23px; width: 23px; height: 23px; }
.tag { display: inline-flex; width: fit-content; padding: 5px 10px; border-radius: 999px; color: #0b5a32; background: #ddf7e8; font-weight: 850; }
.filters-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.filters-preview span { padding: 10px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--muted); font-weight: 650; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.product-example dl { display: grid; grid-template-columns: 170px 1fr; gap: 8px 14px; }
.product-example dt { font-weight: 900; }
.product-example dd { margin: 0; color: var(--muted); }
.lead-form { max-width: 860px; display: grid; gap: 16px; padding: 24px; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #c9d6e4; border-radius: 12px; padding: 13px 14px; font: inherit; color: var(--text); background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(18,104,214,.18); border-color: var(--brand); }
.is-invalid { border-color: #cf2e2e; outline: 3px solid rgba(207,46,46,.12); }
.form-message { margin: 0; font-weight: 850; }
.form-message--success { color: #0b7a3d; }
.form-message--error { color: #b42318; }
.consent-control {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: .94rem;
  line-height: 1.45;
  cursor: pointer;
}
.consent-control__input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--brand);
}
.consent-control__input.is-invalid { outline: 3px solid rgba(207,46,46,.18); }
.form-legal { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--muted); font-size: .84rem; }
.form-legal a { color: var(--brand-dark); text-underline-offset: 3px; }
.info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.info-strip div { background: #fff; padding: 18px; border-radius: 18px; border: 1px solid var(--border); }
.info-strip strong, .info-strip span { display: block; }
.info-strip span { color: var(--muted); }
.delivery-teaser { display: grid; grid-template-columns: 1fr; gap: 20px; }
.info-strip--compact { grid-template-columns: repeat(3, 1fr); }
.columns { columns: 2; }
.footer { background: #0e2744; color: #eaf3ff; padding: 44px 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
.footer a { color: #fff; }
.hero--inner { padding-top: 48px; }
.delivery-summary .check-list { margin-bottom: 0; }
.delivery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card, .mini-card, .contact-banner, .map-card, .messenger-link {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.07);
}
.service-card { display: grid; gap: 10px; padding: 22px; }
.service-card--accent { border-color: rgba(24, 160, 88, .35); background: linear-gradient(180deg, #ffffff, #f0fff6); }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 950;
}
.payment-layout, .contact-layout, .messenger-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}
.payment-cards, .contact-facts, .messenger-grid { display: grid; gap: 14px; }
.mini-card { display: grid; gap: 6px; padding: 18px; }
.mini-card strong { color: var(--brand-dark); }
.mini-card span { color: var(--muted); }
.contact-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}
.contact-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.contact-card p { margin: 0 0 12px; }
.contact-layout { align-items: stretch; }
.contact-details { display: flex; flex-direction: column; min-width: 0; }
.contact-details .section-heading { margin-bottom: 18px; }
.contact-facts { flex: 1; grid-template-rows: repeat(3, 1fr); }
.contact-facts .mini-card { align-content: center; }
.map-card { overflow: hidden; min-height: 520px; }
.map-card iframe { display: block; width: 100%; height: 520px; border: 0; }
.map-card [hidden] { display: none; }
.messenger-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.messenger-link {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 18px;
  text-align: center;
  text-decoration: none;
}
.messenger-link strong { font-size: 1.12rem; color: var(--brand); }
.messenger-link.is-placeholder { opacity: .78; cursor: default; }

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.catalog-panel { display: grid; gap: 18px; }
.catalog-toolbar {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.catalog-search { max-width: none; width: 100%; }
.catalog-chip-groups {
  position: relative;
  display: grid;
  gap: 16px;
  max-height: 178px;
  overflow: hidden;
}
.catalog-chip-groups::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.catalog-chip-groups.is-expanded { max-height: none; overflow: visible; }
.catalog-chip-groups.is-expanded::after { display: none; }
.kits-toolbar {
  gap: 0;
  margin-bottom: 18px;
}
.catalog-chip-groups.kits-chip-groups {
  max-height: none;
  overflow: visible;
}
.catalog-chip-groups.kits-chip-groups::after { display: none; }
.chip-filter { display: grid; gap: 9px; }
.chip-filter > span { color: var(--muted); font-weight: 900; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-toggle {
  justify-self: start;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.filter-toggle:hover { background: #eef5ff; }
.filter-chip {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: .18s ease;
}
.filter-chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.filter-chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(18, 104, 214, .20); }
.filter-chip--method { display: inline-flex; align-items: center; gap: 7px; }
.filter-chip--method svg { flex: 0 0 22px; width: 22px; height: 22px; }
.kits-toolbar__hint {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f8fe;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}
.catalog-count { margin: 0; color: var(--muted); font-weight: 800; }
.catalog-results { display: grid; gap: 18px; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.07);
}
.catalog-card__top { display: grid; grid-template-columns: 58px 1fr; gap: 14px; align-items: start; }
.catalog-card__visual {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}
.catalog-card__image {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
.catalog-card__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1268d6, #18a058);
  color: #fff;
  font-weight: 950;
}
.catalog-card__category {
  margin: 0 0 7px;
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-card h3 { margin-bottom: 0; }
.catalog-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 900;
}
.catalog-badge--out { color: #8a1f11; background: #ffe4dd; border: 1px solid #ffc1b2; }
.catalog-badge--pending { color: #7a4b00; background: #fff2cc; border: 1px solid #f2d27a; }
.catalog-badge--hit { color: #0b5a32; background: #ddf7e8; border: 1px solid #b9edcf; }
.catalog-card__body { display: grid; gap: 14px; padding-top: 14px; }
.catalog-card__body p { margin-top: 0; }
.catalog-card__purpose, .catalog-card__usage { color: var(--muted); }
.catalog-card__purpose { margin-bottom: 0; }
.catalog-card__meta { display: grid; gap: 7px; }
.catalog-card__pack { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 7px; }
.catalog-card__pack span { color: var(--muted); font-weight: 800; }
.catalog-card__pack strong { text-align: right; }
.catalog-card__price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0; }
.catalog-card__price span { color: var(--muted); font-weight: 800; }
.catalog-card__price strong { color: var(--brand-dark); font-size: 1.08rem; }
.catalog-specs { display: grid; grid-template-columns: 96px 1fr; gap: 6px 10px; margin: 0 0 14px; }
.catalog-specs dt { font-weight: 900; }
.catalog-specs dd { margin: 0; color: var(--muted); }
.catalog-card__footer { display: grid; gap: 18px; margin-top: auto; padding-top: 18px; }
.catalog-card__footer .product-upsells { margin-top: 0; }
.catalog-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.catalog-card__actions .btn { width: 100%; }
.btn-restock { border-color: #b73b24; color: #8a1f11; background: #fff8f6; }
.btn-restock:hover { background: #ffe4dd; text-decoration: none; }
.catalog-source { font-size: .94rem; }
.product-upsells {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-upsells[hidden] { display: none; }
.product-upsells.is-revealed { animation: product-upsells-reveal .28s ease-out both; }
@keyframes product-upsells-reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-upsells h4 { margin: 0; font-size: .98rem; }
.upsell-row, .upsell-grid {
  display: grid;
  gap: 10px;
}
.upsell-row { grid-template-columns: 1fr; }
.upsell-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.upsell-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.upsell-card__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef5ff;
  color: var(--brand-dark);
  font-weight: 950;
}
.upsell-card__visual {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.upsell-card__image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}
.upsell-card__reason {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.upsell-card h5 { margin: 0 0 6px; font-size: .92rem; line-height: 1.25; }
.upsell-card strong { color: var(--brand-dark); }
.upsell-card .btn {
  grid-column: 1 / -1;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
}
@media (prefers-reduced-motion: reduce) {
  .product-upsells.is-revealed { animation: none; }
}
.cart-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cart-empty {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 18px;
}
.cart-empty p { margin: 0 0 8px; color: var(--muted); }
.cart-list { display: grid; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbff;
}
.cart-item--with-image {
  grid-template-columns: 72px minmax(0, 1fr) auto auto auto;
}
.cart-item__image {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
.cart-item__label {
  margin: 0 0 5px;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.cart-item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.cart-item__meta { margin: 0; color: var(--muted); font-weight: 650; }
.cart-item__price {
  display: grid;
  gap: 2px;
  min-width: 128px;
  text-align: right;
}
.cart-item__price strong { color: var(--brand-dark); white-space: nowrap; }
.cart-item__price span { color: var(--muted); font-size: .88rem; font-weight: 750; }
.cart-qty {
  display: grid;
  grid-template-columns: 38px 40px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.cart-qty button,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}
.cart-qty button {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}
.cart-qty button:hover { background: #eef5ff; }
.cart-qty span { text-align: center; font-weight: 950; }
.cart-remove {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #8a1f11;
}
.cart-remove:hover { background: #ffe4dd; }
.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #eef5ff;
}
.cart-summary strong,
.cart-summary span { display: block; }
.cart-summary span { color: var(--muted); font-weight: 650; }
.cart-total { color: var(--brand-dark); font-size: 1.35rem; white-space: nowrap; }
.delivery-progress {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(24, 160, 88, .28);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f0fff6);
}
.delivery-progress__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.delivery-progress__head strong { color: #0b5a32; }
.delivery-progress__head span { color: var(--muted); font-weight: 750; }
.delivery-progress__bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #d7ebdf;
}
.delivery-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .18s ease;
}
.cart-recommendations {
  display: grid;
  gap: 12px;
}
.cart-recommendations h3 { margin: 0; }
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cart-actions p { margin: 0; color: var(--accent); font-weight: 900; }
.is-hidden { display: none !important; }
.cart-checkout {
  max-width: none;
  margin-top: 4px;
  box-shadow: none;
  background: #f8fbff;
}
.section-heading--compact { margin-bottom: 0; }
.section-heading--compact h2 { font-size: 1.35rem; }
.section-heading--compact p:last-child { margin-bottom: 0; }
.order-success {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(24, 160, 88, .3);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #effff6);
}
.order-success h2 { margin: 0; color: #0b5a32; }
.order-success p { max-width: 760px; margin: 0; color: var(--muted); font-weight: 750; }
.order-success__meta {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
}

.legal-hero {
  padding: 58px 0 42px;
  background: radial-gradient(circle at top left, #dff0ff, transparent 36%), linear-gradient(135deg, #fff, #edf6ff);
  border-bottom: 1px solid var(--border);
}
.legal-hero__inner { max-width: 920px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.legal-kicker {
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid #cfe0f2;
  font-size: .84rem;
  font-weight: 900;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, .28fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 70px;
}
.legal-layout--single { grid-template-columns: minmax(0, 920px); justify-content: center; }
.legal-toc {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.legal-toc strong { margin-bottom: 6px; color: var(--brand-dark); }
.legal-toc a { color: var(--muted); font-size: .9rem; font-weight: 700; text-decoration: none; }
.legal-toc a:hover { color: var(--brand-dark); text-decoration: underline; }
.legal-document {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.legal-document section {
  padding: 28px 32px;
  scroll-margin-top: 116px;
}
.legal-document section + section { border-top: 1px solid var(--border); }
.legal-document h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
.legal-document p, .legal-document li { color: #34465a; }
.legal-document a { color: var(--brand-dark); text-underline-offset: 3px; }
.legal-document li + li { margin-top: 8px; }
.legal-details { display: grid; grid-template-columns: minmax(160px, .35fr) minmax(0, 1fr); gap: 9px 20px; }
.legal-details dt { color: var(--muted); font-weight: 750; }
.legal-details dd { margin: 0; font-weight: 750; }
.legal-table-wrap { overflow-x: auto; margin: 18px 0; }
.legal-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .92rem; }
.legal-table th, .legal-table td { padding: 13px 14px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.legal-table th { color: var(--brand-dark); background: #eef5ff; }
.legal-table td { color: #34465a; }
.legal-table code { white-space: nowrap; }
.footer__legal-button {
  appearance: none;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.footer__legal-button:hover { color: #d9ecff; }
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 10000;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #b8cce1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(16, 32, 51, .28);
}
.cookie-banner.is-visible { display: grid; gap: 14px; }
.cookie-banner h2 { margin: 0; font-size: 1.25rem; }
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-banner a { color: var(--brand-dark); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner__actions .btn { min-height: 42px; padding: 9px 14px; }
.map-consent {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 26px;
  text-align: center;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}
.map-consent__inner { display: grid; justify-items: center; gap: 12px; max-width: 430px; }
.map-consent__inner p { margin: 0; color: var(--muted); }

@media (max-width: 1180px) {
  .nav { flex-wrap: wrap; padding: 12px 0; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-menu { display: none; width: 100%; order: 4; flex-direction: column; align-items: flex-start; padding: 14px; border-radius: 16px; background: #f8fbff; }
  .main-menu.is-open { display: flex; }
  .header-actions { order: 3; width: 100%; justify-content: space-between; }
  .hero__grid, .split { grid-template-columns: 1fr; }
  .cards-4, .cards-3, .info-strip, .info-strip--compact, .catalog-grid, .kit-grid, .kit-grid--featured, .delivery-grid, .payment-layout, .contact-layout, .messenger-layout, .messenger-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .upsell-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-banner { grid-template-columns: 1fr; }
  .contact-banner__actions { justify-content: flex-start; }
  .cart-item { grid-template-columns: minmax(0, 1fr) auto; }
  .cart-item__price { text-align: left; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1180px); }
  .topline__inner, .header-actions { flex-direction: column; align-items: flex-start; }
  .hero, .section { padding: 34px 0; }
  .hero-media, .hero-media img { min-height: 360px; }
  .cards-4, .cards-3, .form-grid, .info-strip, .info-strip--compact, .footer__grid, .catalog-grid, .kit-grid, .kit-grid--featured, .delivery-grid, .payment-layout, .contact-layout, .messenger-layout, .messenger-grid { grid-template-columns: 1fr; }
  .kit-card__top { grid-template-columns: 68px minmax(0, 1fr); }
  .kit-card__media { width: 68px; height: 68px; border-radius: 14px; }
  .kit-card__suitability,
  .kit-card__anchor { align-items: flex-start; flex-direction: column; gap: 3px; }
  .kit-card__suitability strong,
  .kit-card__anchor strong { max-width: none; text-align: left; }
  .upsell-grid { grid-template-columns: 1fr; }
  .chip-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .catalog-chip-groups { max-height: 206px; }
  .filter-chip { white-space: nowrap; }
  .product-example dl { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; }
  .cart-panel { padding: 12px; }
  .cart-item { grid-template-columns: 1fr; align-items: stretch; }
  .cart-item__price { min-width: 0; }
  .cart-qty { width: 116px; }
  .cart-remove { justify-self: start; }
  .cart-summary { align-items: flex-start; flex-direction: column; }
  .delivery-progress__head { align-items: flex-start; flex-direction: column; }
  .cart-actions .btn { width: 100%; }
  .map-card, .map-card iframe { min-height: 320px; height: 320px; }
  .map-consent { min-height: 320px; }
  .legal-hero { padding: 38px 0 30px; }
  .legal-layout { padding-top: 24px; padding-bottom: 42px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-document section { padding: 22px 18px; }
  .legal-details { grid-template-columns: 1fr; gap: 3px; }
  .legal-details dd + dt { margin-top: 10px; }
  .cookie-banner { inset: auto 10px 10px; padding: 16px; }
  .cookie-banner__actions .btn { width: 100%; }
  .columns { columns: 1; }
}
