/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --navy:        #1e3a5f;
  --navy-light:  #2d5282;
  --teal:        #0891b2;
  --teal-light:  #e0f2fe;
  --white:       #ffffff;
  --bg:          #f8fafc;
  --bg-alt:      #f1f5f9;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --red:         #dc2626;
  --red-bg:      #fef2f2;
  --amber:       #d97706;
  --amber-bg:    #fffbeb;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.04);
  --transition:  150ms ease;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ─── Layout Helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ─── Header / Nav ───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
}
.logo__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo__tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav__link:hover, .nav__link.active {
  background: var(--teal-light);
  color: var(--navy);
}
.nav__langs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  display: inline-flex;
  align-items: center;
}
.lang-btn img {
  height: 18px;
  width: auto;
  border-radius: 2px;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--border);
  color: var(--navy);
  background: var(--bg);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a6b8a 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(8,145,178,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero__title span { color: #7dd3fc; }
.hero__body {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: #0e7490;
  border-color: #0e7490;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8,145,178,.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
}
.hero__price-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.hero__price-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.hero__price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__price-vat {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.hero__price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
}
.hero__price-feature::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(74,222,128,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4ade80;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

/* ─── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 24px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: 0.9375rem;
  font-weight: 500;
}
.trust-item__icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* ─── Products ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.product-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-md);
}
.product-card--featured:hover {
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}
.product-card__img {
  width: 100%;
  height: 220px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.product-card__img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 24px;
}
.product-card__img-placeholder {
  font-size: 4rem;
  opacity: .25;
}
.product-card__body { padding: 28px; }
.product-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge--active   { background: #dcfce7; color: #15803d; }
.badge--featured { background: var(--teal-light); color: #0369a1; }
.badge--eol      { background: #f1f5f9; color: var(--text-muted); }
.product-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.product-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-card__price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-card__action { margin-top: 4px; }

/* ─── Alert / Notice ─────────────────────────────────────── */
.alert {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.alert--red    { background: var(--red-bg); border: 1px solid #fca5a5; color: #991b1b; }
.alert--amber  { background: var(--amber-bg); border: 1px solid #fcd34d; color: #92400e; }
.alert__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.alert__title { font-weight: 700; margin-bottom: 4px; }

/* ─── Info Section ───────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.info-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-card__body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-card__body a { color: var(--teal); font-weight: 500; }
.info-card__body a:hover { color: var(--navy); }

/* ─── Contact Banner ─────────────────────────────────────── */
.contact-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 64px 0;
}
.contact-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.contact-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-banner__body { color: rgba(255,255,255,.7); font-size: 1.0625rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
}
.contact-detail__icon { font-size: 1.25rem; flex-shrink: 0; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand { color: var(--white); font-weight: 700; font-size: 1rem; }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255,255,255,.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__copy { font-size: 0.8125rem; }

/* ─── Mobile Nav Drawer ──────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav__link {
  display: block;
  padding: 14px 16px;
  font-size: 1.0625rem;
}
.nav-drawer .nav__langs {
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__price-card { max-width: 480px; }
  .contact-banner__inner { grid-template-columns: 1fr; }
  .contact-details { min-width: unset; }
}
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .trust-bar__inner { gap: 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}



/* ─── SVG Icons ──────────────────────────────────────────── */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  flex-shrink: 0;
}
.trust-item__icon .icon   { width: 22px; height: 22px; color: rgba(255,255,255,.85); }
.info-card__icon .icon    { width: 32px; height: 32px; color: var(--teal); }
.contact-detail__icon .icon { width: 20px; height: 20px; color: rgba(255,255,255,.9); }
.alert__icon .icon        { width: 22px; height: 22px; color: inherit; }
.importer-detail .icon    { width: 20px; height: 20px; opacity: .85; }
.dealers-hero__icon       { width: 28px; height: 28px; vertical-align: -0.2em; color: #fbbf24; }
.fi {
  width: 1.2em !important;
  height: 0.9em !important;
  display: inline-block;
  margin-right: 6px;
  border-radius: 2px;
  vertical-align: -0.1em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  background-size: cover;
}
.lang-btn { gap: 0; }
.logo__img { background: var(--white); }

/* ─── Product Detail (absorbed from medilux-led.html inline) ─ */
.product-hero {
  background: var(--bg-alt);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-hero__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-hero__gallery-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.product-hero__gallery-main img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 24px;
}
.product-hero__gallery-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}
.product-hero__gallery-thumb img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--transition);
}
.product-hero__gallery-thumb:hover img { transform: scale(1.05); }
.product-hero__info h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.product-hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.product-hero__lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-hero__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 24px 0 4px;
}
.product-hero__price-note {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: 28px;
}
.product-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.spec-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 12px; }
.spec-table thead th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: 0 0 10px;
  border-bottom: 2px solid var(--border);
  font-weight: 600;
}
.spec-table tbody tr {
  transition: background var(--transition);
}
.spec-table tbody tr:hover {
  background: var(--bg-alt);
}
.spec-table td {
  padding: 14px 8px;
  font-size: .9375rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  width: 1%;
  white-space: nowrap;
  padding-right: 4px;
}
.spec-table td:last-child {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.spec-table td:nth-child(2) {
  width: 100%;
}
.spec-table td:nth-child(2) small {
  display: block;
  color: var(--text-muted);
  font-size: .8125rem;
  margin-top: 2px;
}
.spec-table td:nth-child(3),
.spec-table td:nth-child(4) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.spec-table td:nth-child(3) { color: var(--text-muted); }
.spec-table td:nth-child(4) { font-weight: 600; }
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.part-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.part-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.part-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: var(--bg);
  padding: 8px;
}
.part-card__body {
  padding: 12px 14px 8px;
}
.part-card__body h3 {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}
.part-card__body h3 small {
  display: block;
  color: var(--text-muted);
  font-size: .8125rem;
  font-weight: 400;
  margin-top: 2px;
}
.part-card__body p {
  font-size: .8125rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}
.part-card__prices {
  padding: 8px 14px 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.part-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.part-card__price small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}
.part-card__price-muted {
  font-size: .8125rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.parts-disclaimer {
  margin-top: 24px;
  font-size: .85rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .parts-grid {
    grid-template-columns: 1fr;
  }
  .part-card img {
    height: 120px;
  }
}

/* ── Parts table responsive ──── */
@media (max-width: 640px) {
  .spec-table thead th { font-size: .6875rem; }
  .spec-table td { padding: 10px 4px; font-size: .875rem; }
  .spec-table td:nth-child(3) { display: none; }
  .spec-table thead th:nth-child(3) { display: none; }
}

.content-section { padding: 64px 0; }
.content-section + .content-section { border-top: 1px solid var(--border); }
.content-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.content-section p, .content-section li { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; }
.content-section ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }

.feature-list {
  list-style: none !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: .9rem;
  color: var(--text);
}
.feature-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.img-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.img-grid img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--transition);
}
.img-grid a:hover img { transform: scale(1.04); }

.upgrade-box {
  background: var(--teal-light);
  border: 1px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.upgrade-box h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.upgrade-box p { font-size: .9375rem; color: var(--text); line-height: 1.65; }
.upgrade-box p + p { margin-top: 12px; }

.product-extra {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.product-extra__img {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.product-extra__img img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 16px;
}

/* ─── Dealers Page (absorbed from zoznam.html inline) ──────── */
.dealers-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 64px 0;
}
.dealers-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.dealers-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.0625rem;
  max-width: 560px;
}
.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.region-card__header { background: var(--navy); color: var(--white); padding: 16px 24px; }
.region-card__header h2 { font-size: 1rem; font-weight: 700; margin: 0; letter-spacing: .02em; }
.region-card__body { padding: 20px 24px; }
.dealer-entry { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; line-height: 1.5; }
.dealer-entry:last-child { border-bottom: none; padding-bottom: 0; }
.dealer-city { font-weight: 700; color: var(--navy); }
.dealer-name { color: var(--text); }
.dealer-phone { color: var(--teal); }
.importer-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}
.importer-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; color: rgba(255,255,255,.9); }
.importer-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
  margin-bottom: 10px;
}
.importer-detail a { color: inherit; }

/* ─── Partner Section Variant (item 9) ─────────────────────── */
.section--partner {
  background: linear-gradient(135deg, #fff8e7, #fffbeb);
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
}
.section--partner .section-label { color: var(--amber); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.partner-card {
  background: var(--white);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.partner-card__icon {
  width: 40px;
  height: 40px;
  color: var(--amber);
  margin-bottom: 16px;
}
.partner-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.partner-card__body {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: #b45309;
  border-color: #b45309;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217,119,6,.35);
}

/* ─── Inline-style utility replacements ────────────────────── */
.link-inherit { color: inherit; }
.link-inherit-strong { color: inherit; font-weight: 700; }
.product-card__badges-flex {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .product-hero__inner { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .product-extra { grid-template-columns: 1fr; }
}

/* ─── Print Stylesheet (item 5) ────────────────────────────── */
@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body { font-size: 11pt; line-height: 1.4; background: #fff; }
  .header,
  .nav,
  .nav-drawer,
  .hamburger,
  .hero__ctas,
  .product-hero__actions,
  .contact-banner .btn,
  .footer__links,
  .nav__langs {
    display: none !important;
  }
  .header { position: static !important; }
  .hero,
  .contact-banner,
  .dealers-hero,
  .trust-bar,
  .section--partner {
    background: #fff !important;
    color: #000 !important;
    padding: 16pt 0 !important;
  }
  .hero__title,
  .section-title,
  .product-hero__info h1,
  .dealers-hero h1 {
    color: #000 !important;
    font-size: 18pt !important;
  }
  .hero__body,
  .section-body,
  .product-hero__lead {
    color: #000 !important;
  }
  .hero__price-card,
  .product-card,
  .info-card,
  .region-card,
  .partner-card,
  .importer-card,
  .upgrade-box {
    border: 1pt solid #000 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after { content: ""; }
  .section { padding: 16pt 0; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
}
