/* =====================================================
   Brightfield Ukraine — extracted page styles
   Sources: ukraine, drfogg*, reprocessor, cabinet-bfw-4m,
            bf-vc-4k, endoscopic-trolleys
   ===================================================== */

/* ---------- Design Tokens ---------- */
:root {
    --blue-900: #052f63;
    --blue-800: #073c80;
    --blue-700: #0B4996;   /* brand — site blue */
    --blue-600: #0e57b0;
    --blue-500: #0B4996;   /* accent / buttons */
    --blue-400: #2f72c8;
    --blue-100: #e3ecf7;
    --blue-50:  #f0f5fc;
  
    /* brand blue as rgb for shadows */
    --blue-rgb: 11, 73, 150;
  
    --ink:      #14213d;
    --ink-soft: #3a4862;
    --muted:    #6b7794;
    --line:     #e6ebf3;
  
    --bg:       #ffffff;
    --bg-soft:  #f6f9fd;
  
    --white:    #ffffff;
  
    --radius-sm: 12px;
    --radius:    18px;
    --radius-lg: 24px;
  
    --shadow-sm: 0 4px 18px rgba(20, 60, 130, 0.06);
    --shadow-md: 0 18px 40px rgba(20, 60, 130, 0.10);
    --shadow-lg: 0 32px 70px rgba(20, 60, 130, 0.16);
    /* neutral (no blue tint) — for clean 3D lift */
    --shadow-card: 0 24px 54px rgba(28, 33, 48, 0.16);
    --shadow-soft: 0 12px 26px rgba(28, 33, 48, 0.12);
  
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  
    --container: 1200px;
    --gutter: 40px;
  
    --font: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  }
  
  /* ---------- Reset ---------- */
  *,
  *::before,
  *::after { box-sizing: border-box; }
  
  html { -webkit-text-size-adjust: 100%; }
  
  body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, p, figure, address { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; height: auto; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  address { font-style: normal; }
  
  /* ---------- Layout helpers ---------- */
  .container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  
  .section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.1;
  }
  .section-title--center { text-align: center; }
  
  .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
  }
  
  /* ---------- Buttons (= brightfieldmedical .arrow_button) ---------- */
  .btn {
    --btn-bg: var(--accent, var(--blue-500));
    --btn-fg: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    min-height: 46px;
    padding: 8px 8px 8px 16px;
    border-radius: 56px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
    color: var(--btn-fg);
    background: var(--btn-bg);
    border: 1px solid var(--accent, var(--blue-500));
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: visible;
  }
  .btn > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  .btn::before { display: none !important; }
  .btn:hover { background: #fff; color: var(--accent, var(--blue-500)); transform: none; }

  .btn .btn__arrow,
  .btn img.btn__arrow {
    flex: none;
    width: 28px;
    height: 28px;
    display: block;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .btn:hover .btn__arrow { border-color: var(--accent, var(--blue-500)); }

  .btn .btn__icon {
    display: inline-grid;
    place-items: center;
    flex: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent, var(--blue-500));
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
  }
  .btn .btn__icon svg { display: block; }
  .btn:hover .btn__icon { border-color: var(--accent, var(--blue-500)); transform: none; }

  .btn > span:only-child { padding-right: 8px; }

  .btn--primary { box-shadow: none; }
  .btn--primary:hover { transform: none; }

  .btn--ghost {
    --btn-bg: #fff;
    --btn-fg: var(--text-black, #070707);
    border-color: #fff;
    padding: 8px 32px;
  }
  .btn--ghost:hover { background: var(--accent, var(--blue-500)); color: #fff; border-color: var(--accent, var(--blue-500)); }

  .btn--outline {
    --btn-bg: transparent;
    --btn-fg: var(--accent, var(--blue-500));
    border-color: var(--accent, var(--blue-500));
    padding: 8px 8px 8px 16px;
  }
  .btn--outline:hover { background: var(--accent, var(--blue-500)); color: #fff; transform: none; border-color: var(--accent, var(--blue-500)); }

  .btn--light {
    --btn-bg: #fff;
    --btn-fg: var(--accent, var(--blue-500));
    border-color: #fff;
  }
  .btn--light:hover { background: transparent; color: #fff; transform: none; }
  
  /* ---------- Footer ---------- */
  .footer {
    background: linear-gradient(180deg, #5a9be4 0%, #3279d2 58%, #205fb6 100%);
    color: #fff;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 56px;
  }
  .footer__logo {
    display: block;
    width: 168px;
    height: auto;
    margin-bottom: 24px;
  }
  .footer__address {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
  }
  .footer__address a { transition: color 0.3s; }
  .footer__address a:hover { color: #fff; }
  
  .footer__heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .footer__list { display: flex; flex-direction: column; gap: 12px; }
  .footer__list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    width: fit-content;
    transition: color 0.3s;
  }
  .footer__list a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 100%; height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
  }
  .footer__list a:hover { color: #fff; }
  .footer__list a:hover::after { transform: scaleX(1); }
  
  .footer__cta-col { display: flex; justify-content: flex-end; align-items: flex-start; }
  
  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0;
  }
  .footer__bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
  }
  
  /* ---------- Nav menu ---------- */
  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background:
      radial-gradient(900px 600px at 82% -10%, rgba(36, 116, 223, 0.35), transparent 60%),
      linear-gradient(160deg, #082a57 0%, #061a36 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; }
  
  .nav-menu__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 26px;
    padding-bottom: 44px;
  }
  .nav-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
  }
  .nav-menu__label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
  }
  .nav-menu__close {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
  }
  .nav-menu__close:hover { background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }
  
  .nav-menu__links {
    display: flex;
    flex-direction: column;
    margin: 34px 0 0;
    max-width: 720px;
    width: 100%;
  }
  .nav-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    opacity: 0;
    transform: translateY(24px);
    transition:
      color 0.3s ease,
      padding-left 0.4s var(--ease),
      transform 0.6s var(--ease),
      opacity 0.6s var(--ease);
  }
  .nav-menu__link svg { flex: none; color: rgba(255, 255, 255, 0.45); transition: transform 0.4s var(--ease), color 0.3s; }
  .nav-menu__link:hover { color: var(--blue-400); padding-left: 16px; }
  .nav-menu__link:hover svg { transform: translateX(8px); color: var(--blue-400); }
  
  .nav-menu.is-open .nav-menu__link { opacity: 1; transform: none; }
  .nav-menu.is-open .nav-menu__link:nth-child(1) { transition-delay: 0s, 0s, 0.10s, 0.10s; }
  .nav-menu.is-open .nav-menu__link:nth-child(2) { transition-delay: 0s, 0s, 0.16s, 0.16s; }
  .nav-menu.is-open .nav-menu__link:nth-child(3) { transition-delay: 0s, 0s, 0.22s, 0.22s; }
  .nav-menu.is-open .nav-menu__link:nth-child(4) { transition-delay: 0s, 0s, 0.28s, 0.28s; }
  .nav-menu.is-open .nav-menu__link:nth-child(5) { transition-delay: 0s, 0s, 0.34s, 0.34s; }
  .nav-menu.is-open .nav-menu__link:nth-child(6) { transition-delay: 0s, 0s, 0.40s, 0.40s; }
  
  .nav-menu__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 56px;
    margin-top: 38px;
    padding-top: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease) 0.4s, transform 0.6s var(--ease) 0.4s;
  }
  .nav-menu.is-open .nav-menu__foot { opacity: 1; transform: none; }
  .nav-menu__contact { display: flex; flex-direction: column; gap: 7px; }
  .nav-menu__contact-label {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue-400);
  }
  .nav-menu__contact a { font-size: 1.06rem; font-weight: 500; color: #fff; transition: color 0.3s; }
  .nav-menu__contact a:hover { color: var(--blue-400); }
  
  /* mobile menu accordion (Aerosol Generator) */
  .nav-menu__acc { display: flex; flex-direction: column; }
  .nav-menu__link--toggle {
    width: 100%;
    margin: 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
  }
  .nav-menu__chev {
    flex: none;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.4s var(--ease), color 0.3s;
  }
  .nav-menu__acc.is-open .nav-menu__chev { transform: rotate(180deg); color: var(--blue-400); }
  .nav-menu__link--toggle:hover { color: var(--blue-400); padding-left: 16px; }
  .nav-menu__link--toggle:hover .nav-menu__chev { color: var(--blue-400); }
  .nav-menu__sub {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
  }
  .nav-menu__acc.is-open .nav-menu__sub { max-height: 60vh; }
  .nav-menu__sublink {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, padding-left 0.4s var(--ease);
  }
  .nav-menu__sublink::before {
    content: "";
    flex: none;
    width: 16px;
    height: 1px;
    margin-right: 14px;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.3s var(--ease), background 0.3s;
  }
  .nav-menu__sublink:last-child { border-bottom: none; }
  .nav-menu__sublink:hover { color: #fff; padding-left: 10px; }
  .nav-menu__sublink:hover::before { width: 24px; background: var(--blue-400); }
  .nav-menu__sublink--active { color: var(--blue-400); }
  .nav-menu__sublink--active::before { width: 24px; background: var(--blue-400); }
  
  /* prevent scroll when menu open */
  body.is-locked { overflow: hidden; }
  
  /* ---------- Breadcrumb ---------- */
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .breadcrumb__dot { width: 8px; height: 8px; background: var(--blue-700); border-radius: 2px; }
  .breadcrumb__link { color: var(--ink); transition: color 0.3s; }
  .breadcrumb__link:hover { color: var(--blue-500); }
  .breadcrumb__sep { color: var(--muted); }
  .breadcrumb__current { color: var(--muted); }
  
  /* ---------- Product about & specs ---------- */
  .product-about { padding: 0px 0 40px; }
  .product-about .section-title { margin-bottom: 28px; }
  .product-about__text { display: flex; flex-direction: column; gap: 18px; max-width: 980px; }
  .product-about__text p { font-size: 0.98rem; color: var(--muted); line-height: 1.7; }
  
  /* specs table */
  .specs { padding: 56px 0; }
  .specs .section-title { margin-bottom: 32px; }
  .specs__table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .specs__row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }
  .specs__row:nth-child(odd) { background: var(--blue-50); }
  .specs__row--head { background: var(--blue-100) !important; }
  .specs__cell {
    padding: 15px 24px;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }
  .specs__row--head .specs__cell { font-weight: 600; color: var(--ink); }
  .specs__cell:first-child { border-right: 1px solid rgba(255,255,255,0.6); }
  
  /* ---------- Eyebrow ---------- */
  .eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 16px;
  }
  
  /* ---------- Ukraine pages ---------- */
  /* ---- dedicated Ukraine header (site-in-site) ---- */
  .uk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .uk-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 76px;
  }
  .uk-header__logo { flex: 0 0 auto; }
  .uk-header__logo img { height: 38px; width: auto; }
  .uk-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }
  .uk-header__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    border-radius: 10px;
    white-space: nowrap;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
  }
  .uk-header__link:hover { color: var(--blue-700); background: var(--blue-50); }
  .uk-header__globe { color: var(--blue-700); }
  .uk-header__drop { position: relative; }
  .uk-header__link--drop svg { transition: transform 0.3s var(--ease); }
  .uk-header__drop:hover .uk-header__link--drop svg { transform: rotate(180deg); }
  .uk-header__submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .uk-header__drop:hover .uk-header__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
  .uk-header__submenu a {
    padding: 11px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 9px;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
  }
  .uk-header__submenu a:hover { color: var(--blue-700); background: var(--blue-50); }
  .uk-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--line);
  }
  .uk-header__burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
  
  @media (max-width: 1080px) {
    .uk-header__nav { display: none; }
    .uk-header__burger { display: flex; }
  }
  
  /* single-column hero for the Ukraine landing */
  .uk-hero .ab-hero__inner { grid-template-columns: 1fr; margin-top: 0; }
  .uk-hero .ab-hero__content { max-width: 760px; }
  .uk-hero { padding-top: 64px; }
  
  /* keep anchored sections clear of the sticky header */
  .uk-hero, .uk-cab, .uk-duo, .uk-feature, #offer { scroll-margin-top: 92px; }
  
  /* active nav link */
  .uk-header__link--active { color: var(--blue-700); background: var(--blue-50); }
  
  /* product page hero spacing + model badge */
  .uk-prodpage { padding-top: 22px; padding-bottom: 8px; }

  /* hero actions live below the banner in DOM (mobile: title -> photo -> buttons);
     on desktop, pin them back under the intro text in the right column */
  @media (min-width: 881px) {
    .uk-prodpage .uk-cab__top { grid-template-rows: auto auto; align-items: center; }
    .uk-prodpage .uk-cab__banner { grid-column: 1; grid-row: 1 / span 2; align-self: center; }
    .uk-prodpage .uk-cab__intro { grid-column: 2; grid-row: 1; align-self: end; }
    .uk-prodpage .uk-feature__actions--hero { grid-column: 2; grid-row: 2; align-self: start;}
  }
  @media (max-width: 880px) {
    /* tighten the hero stack so buttons sit close under the photo */
    .uk-prodpage .uk-cab__top { gap: 18px; }
  }
  /* alternate about block (e.g. second product on a page) */
  .product-about--alt { background: var(--bg-soft); padding-top: clamp(48px, 5vw, 72px); padding-bottom: clamp(28px, 3vw, 40px); margin-top: clamp(16px, 2vw, 28px); }
  .product-about--alt .eyebrow { margin-bottom: 6px; }
  
  /* long-form article (disinfection technology) */
  .uk-article { padding: clamp(10px, 2vw, 22px) 0 clamp(28px, 4vw, 48px); }
  .uk-article__head { margin-bottom: clamp(20px, 3vw, 32px); }
  .uk-article__body { max-width: 940px; }
  .uk-article__body > p { font-size: 0.98rem; line-height: 1.78; color: var(--ink-soft); margin-bottom: 18px; }
  .uk-article__h { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin: clamp(28px, 3.5vw, 44px) 0 16px; }
  .uk-article .uk-cab__list { margin: 6px 0 22px; }
  .uk-article .uk-cab__list--2 { grid-template-columns: 1fr 1fr; }
  @media (max-width: 760px) { .uk-article .uk-cab__list--2 { grid-template-columns: 1fr; } }
  
  /* principle of operation — numbered premium cards */
  .uk-princ {
    list-style: none;
    margin: clamp(20px, 3vw, 32px) 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 1.4vw, 20px);
  }
  .uk-princ__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: clamp(22px, 2vw, 28px);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .uk-princ__item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(var(--blue-500), var(--blue-400));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease);
  }
  .uk-princ__item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-400);
    box-shadow: 0 18px 40px -24px rgba(11, 73, 150, 0.45);
  }
  .uk-princ__item:hover::before { transform: scaleY(1); }
  .uk-princ__num {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--blue-500);
    font-variant-numeric: tabular-nums;
  }
  .uk-princ__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.62;
    color: var(--ink-soft);
  }
  @media (max-width: 880px) {
    .uk-princ { grid-template-columns: 1fr; gap: 12px; }
    .uk-princ__item { flex-direction: row; align-items: flex-start; gap: 16px; }
  }
  
  /* references */
  .uk-refs { padding: clamp(36px, 4vw, 64px) 0; background: var(--bg-soft); }
  .uk-refs__list { max-width: 980px; margin: clamp(16px, 2vw, 24px) 0 0; padding-left: 20px; }
  .uk-refs__list li { font-size: 0.8rem; line-height: 1.55; color: var(--muted); margin-bottom: 10px; }
  
  /* quote block */
  .uk-quote { padding: clamp(40px, 5vw, 76px) 0; background: var(--bg-soft); }
  .uk-quote__inner { display: flex; align-items: center; gap: clamp(16px, 2vw, 26px); }
  .uk-quote__avatar { flex: 0 0 auto; width: 92px; height: 92px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); }
  .uk-quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
  .uk-quote__text { max-width: 60ch; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); }
  .uk-quote__author { display: inline-block; margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: var(--blue-700); }
  @media (max-width: 640px) { .uk-quote__inner { flex-direction: column; text-align: center; } }
  
  /* stat figures */
  .uk-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(28px, 3vw, 40px); }
  .uk-fig { padding: 26px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
  .uk-fig b { display: block; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; color: var(--blue-700); }
  .uk-fig span { display: block; margin-top: 8px; font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
  @media (max-width: 640px) { .uk-figs { grid-template-columns: 1fr; } }
  
  /* how-it-works note */
  .uk-adv__note { margin-top: clamp(24px, 3vw, 36px); font-size: 1rem; color: var(--ink-soft); }
  .uk-adv__note strong { color: var(--blue-700); }
  
  /* contain banner (transparent product image on soft panel) */
  .uk-cab__banner--contain {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(8px, 2vw, 24px);
    background: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .uk-cab__banner.uk-cab__banner--contain img { width: 100%; max-width: 460px; max-height: 560px; border-radius: 0; box-shadow: none; }
  .uk-cab__banner.uk-cab__banner--contain:hover img { transform: none; }
  /* tighter gap when a contain banner sits beside the intro */
  .uk-cab__top:has(.uk-cab__banner--contain) { gap: clamp(24px, 3vw, 48px); }
  /* tighten the gap below the OXIDAG (contain) block and above the next section */
  .uk-cab:has(.uk-cab__banner--contain) { padding-bottom: clamp(24px, 3vw, 44px); }
  .uk-cab:has(.uk-cab__banner--contain) + .uk-drymist { padding-top: clamp(28px, 3.5vw, 48px); }
  
  /* check cards — premium feature list (top-aligned badge) */
  .uk-checks {
    list-style: none;
    margin: clamp(22px, 3vw, 32px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 1.4vw, 18px);
  }
  .uk-checks__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(20px, 1.9vw, 26px);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .uk-checks__item:hover {
    transform: translateY(-4px);
    border-color: var(--blue-400);
    box-shadow: 0 18px 40px -24px rgba(11, 73, 150, 0.45);
  }
  .uk-checks__icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
    box-shadow: 0 6px 16px -6px rgba(11, 73, 150, 0.6);
  }
  .uk-checks__icon svg { width: 15px; height: 15px; }
  .uk-checks__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .uk-checks__text strong { color: var(--ink); font-weight: 700; }
  .uk-checks__note {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue-500);
    background: rgba(11, 73, 150, 0.07);
    border-radius: 999px;
  }
  @media (max-width: 620px) {
    .uk-checks { grid-template-columns: 1fr; }
  }
  
  /* dry mist — icon columns */
  .uk-drymist { padding: clamp(48px, 6vw, 88px) 0; background: var(--bg-soft); text-align: center; }
  .uk-drymist__title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue-700);
  }
  .uk-drymist__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 56px);
    margin-top: clamp(30px, 4vw, 52px);
  }
  .uk-drymist__item { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 12px; }
  .uk-drymist__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-700);
  }
  .uk-drymist__icon svg { width: 44px; height: 44px; }
  .uk-drymist__item p { max-width: 320px; font-size: 0.98rem; font-weight: 600; line-height: 1.5; color: var(--ink); }
  @media (max-width: 760px) { .uk-drymist__grid { grid-template-columns: 1fr; gap: 36px; } }
  
  /* advantages grid (Dr. Fogg) */
  .uk-adv { padding: clamp(8px, 2vw, 24px) 0 clamp(40px, 5vw, 72px); }
  .uk-adv--top { padding-top: clamp(48px, 6vw, 92px); }
  .uk-adv .section-title { margin-bottom: clamp(24px, 3vw, 40px); }
  .uk-adv__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .uk-adv-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 34px);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .uk-adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .uk-adv-card__num {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--blue-500);
  }
  .uk-adv-card__title { margin-top: 12px; font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
  .uk-adv-card__text { margin-top: 10px; font-size: 0.92rem; line-height: 1.65; color: var(--muted); }
  @media (max-width: 1080px) { .uk-adv__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .uk-adv__grid { grid-template-columns: 1fr; } }
  
  /* product models grid */
  .uk-models { padding: clamp(8px, 2vw,40px) 0 clamp(40px, 5vw, 40px); }
  .uk-models .section-title { margin-bottom: clamp(24px, 3vw, 40px); }
  .uk-models__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .uk-model-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .uk-model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .uk-model-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    padding: 22px;
    background: linear-gradient(160deg, var(--blue-700) 0%, var(--blue-900) 100%);
  }
  .uk-model-card__media img { height: 100%; max-height: 236px; width: auto; max-width: 100%; object-fit: contain; }
  .uk-model-card__body { display: flex; flex-direction: column; gap: 14px; padding: clamp(20px, 2.5vw, 28px); flex: 1; }
  .uk-model-card__name { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.02em; color: var(--blue-700); }
  .uk-model-card__specs { display: flex; flex-direction: column; gap: 10px; }
  .uk-model-card__specs span { display: flex; flex-direction: column; gap: 2px; padding-top: 10px; border-top: 1px solid var(--line); }
  .uk-model-card__specs i { font-style: normal; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  .uk-model-card__specs b { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
  .uk-model-card__features { font-size: 0.88rem; line-height: 1.6; color: var(--muted); }
  @media (max-width: 1080px) { .uk-models__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .uk-models__grid { grid-template-columns: 1fr; } }
  
  /* video review */
  .uk-video-sec { padding: 40px 0 80px; }
  .uk-video-sec .section-title { margin-bottom: clamp(24px, 3vw, 40px); }
  .uk-video {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--ink);
    cursor: pointer;
    padding: 0;
  }
  .uk-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .uk-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
  }
  .uk-video:hover .uk-video__poster { transform: scale(1.04); filter: brightness(0.92); }
  .uk-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    padding-left: 6px;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-700);
    box-shadow: 0 16px 40px rgba(11, 73, 150, 0.45);
    transition: transform 0.35s var(--ease), background 0.35s var(--ease);
  }
  .uk-video:hover .uk-video__play { transform: translate(-50%, -50%) scale(1.08); background: var(--blue-600); }
  .uk-video.is-playing { cursor: default; }
  .uk-video.is-playing .uk-video__play,
  .uk-video.is-playing .uk-video__poster { display: none; }
  
  .uk-cab__model {
    display: inline-flex;
    align-items: center;
    margin: 14px 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-700);
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    padding: 7px 14px;
    border-radius: 100px;
  }
  
  /* intro line under hero text */
  .uk-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
  }
  .uk-hero__stat { display: flex; flex-direction: column; gap: 4px; }
  .uk-hero__stat b { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
  .uk-hero__stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
  
  /* swap hero columns — content left, logo right */
  .uk-hero .ab-hero__media { order: 2; }
  
  /* hero brand panel (logo instead of slider) */
  .uk-hero__brand {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    padding: clamp(12px, 2vw, 24px);
    background: none;
    border: none;
    box-shadow: none;
  }
  .uk-hero__brand img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }
  .uk-hero__brand-cap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .uk-hero__brand-cap::before {
    content: "";
    width: 26px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(to bottom, var(--blue-500) 0 50%, #f4c20d 50% 100%);
    box-shadow: var(--shadow-sm);
  }
  @media (max-width: 880px) {
    .uk-hero__brand { aspect-ratio: 16 / 9; }
  }
  
  /* feature blocks (alternating image / content) */
  .uk-feature { padding: clamp(56px, 7vw, 104px) 0; }
  .uk-feature + .uk-feature { padding-top: 0; }
  .uk-feature__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }
  .uk-feature__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    box-shadow: var(--shadow-card);
  }
  .uk-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
  }
  .uk-feature:hover .uk-feature__media img { transform: scale(1.05); }
  .uk-feature__index {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--white);
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(11, 73, 150, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  .uk-feature--rev .uk-feature__media { order: 2; }
  /* plain media — product cutout floating on the page background */
  .uk-feature__media--plain {
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    aspect-ratio: auto;
    align-self: stretch;
    position: relative;
    min-height: 0;
  }
  .uk-feature__media--plain img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 30px 50px rgba(20, 60, 130, 0.16));
  }
  .uk-feature:hover .uk-feature__media--plain img { transform: none; }
  .uk-feature__media--plain .uk-feature__index {
    top: 8px;
    left: 8px;
  }
  
  /* banner media — full marketing banner shown as a framed poster */
  .uk-feature__media--banner {
    background: none;
    box-shadow: none;
    overflow: visible;
    aspect-ratio: auto;
    align-self: center;
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .uk-feature__media--banner img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.9s var(--ease);
  }
  .uk-feature:hover .uk-feature__media--banner img { transform: scale(1.02); }
  .uk-feature__media--banner .uk-feature__index { display: none; }
  .uk-feature__content { min-width: 0; }
  .uk-feature__title {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--ink);
  }
  .uk-feature__text {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--muted);
  }
  .uk-feature__list {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .uk-feature__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--ink-soft);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .uk-feature__item::before {
    content: "";
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6.2l2.6 2.6L10 3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat,
      var(--blue-500);
  }
  .uk-feature__sub {
    margin-top: 26px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .uk-feature__actions { display: flex; flex-wrap: wrap; gap: 14px;}
  
  /* cabinet block — intro + banner on top, features full-width below */
  .uk-cab { padding: 40px 0 60px; }
  .uk-cab__top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
  }
  .uk-cab__intro .uk-feature__actions { margin-top: 32px; }
  .uk-cab--rev .uk-cab__banner { order: -1; }
  .uk-cab__banner img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.9s var(--ease);
  }
  .uk-cab__banner:hover img { transform: scale(1.02); }
  .uk-cab__list {
    margin-top: clamp(36px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .uk-cab__sub {
    margin-top: clamp(36px, 4vw, 56px);
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .uk-cab__sub + .uk-cab__list { margin-top: 0; }
  
  /* two groups side by side (e.g. Recommended | Method Value) */
  .uk-cab__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
  }
  .uk_prod1_3 .specs {
    padding-top: 0;
  }
  .uk_prod1_3 .specs__table {
    margin-top: 15px;
  }
  .uk_prod1_3 .uk-article {
    padding-top: 40px;
  }
.uk_prod2 .product-about__text{
  margin-bottom: 30px;
}

  .uk-cab__cols .uk-cab__sub { margin-top: 0; }
  .uk-cab__cols .uk-cab__list { grid-template-columns: 1fr; margin-top: 0; }
  @media (max-width: 880px) {
    .uk-cab__cols { grid-template-columns: 1fr; gap: 28px; }
  }
  .uk-cab__list--2 { grid-template-columns: repeat(2, 1fr); }
  .uk-cab__copy {
    margin-top: clamp(28px, 3.5vw, 44px);
    max-width: 980px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .uk-cab__copy p { font-size: 0.98rem; line-height: 1.75; color: var(--muted); }
  @media (max-width: 1080px) {
    .uk-cab__list { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 880px) {
    .uk-cab__top { grid-template-columns: 1fr; gap: 32px; }
    .uk-cab__list { grid-template-columns: 1fr; }
    .uk-cab--rev .uk-cab__banner { order: 0; }
  }
  
  /* product list (camera + light source on banner block) */
  .uk-prodlist {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .uk-prod { position: relative; padding-left: 20px; }
  .uk-prod::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(to bottom, var(--blue-500), var(--blue-400));
  }
  .uk-prod__title { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; color: var(--blue-700); }
  .uk-prod__tag { margin-top: 4px; font-size: 0.95rem; color: var(--muted); }
  
  /* dual product cards (camera + light source) */
  .uk-duo { padding: clamp(56px, 7vw, 100px) 0; background: var(--bg-soft); }
  .uk-duo__head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
  .uk-duo__lead { margin-top: 16px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
  .uk-duo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .uk-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .uk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .uk-card__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--blue-50); }
  .uk-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
  .uk-card:hover .uk-card__media img { transform: scale(1.05); }
  .uk-card__body { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; flex: 1; }
  .uk-card__code { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; color: var(--blue-500); }
  .uk-card__title { margin-top: 10px; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
  .uk-card__tagline { margin-top: 8px; font-size: 0.95rem; color: var(--ink-soft); }
  .uk-card__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .uk-card__tag {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-700);
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    padding: 8px 14px;
    border-radius: 100px;
  }
  .uk-card__link {
    margin-top: auto;
    padding-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--blue-700);
  }
  .uk-card__link svg { transition: transform 0.4s var(--ease); }
  .uk-card__link:hover svg { transform: translateX(4px); }
  
  /* gallery section reuses .gallery-sec styles already defined */
  
  @media (max-width: 880px) {
    .uk-feature__inner,
    .uk-duo__grid { grid-template-columns: 1fr; gap: 32px; }
    .uk-feature--rev .uk-feature__media { order: 0; }
    .uk-feature + .uk-feature { padding-top: 0; }
  
    /* plain media back to normal flow on mobile */
    .uk-feature__media--plain { align-self: auto; min-height: auto; }
    .uk-feature__media--plain img {
      position: static;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 420px;
      margin: 0 auto;
    }
  }
  @media (max-width: 520px) {
    .uk-feature__list { grid-template-columns: 1fr; }
  }
  
  /* ---------- Responsive (Ukraine) ---------- */
  @media (max-width: 1080px) {
    .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 44px; }
    .footer__cta-col { justify-content: flex-start; }
  }
  
  @media (max-width: 880px) {
    .footer__cta-col { display: none; }
    .product-about, .specs, .benefits { padding-top: 48px; padding-bottom: 48px; }
  }
  
  @media (max-width: 560px) {
    :root { --gutter: 20px; }
    .uk-feature__actions { flex-wrap: nowrap; gap: 10px; margin-top: 24px; }
    .uk-feature__actions .btn { flex: 1 1 0; min-width: 0; font-size: 0.78rem; padding: 11px 12px; white-space: nowrap; justify-content: center; }
    .footer__inner { grid-template-columns: 1fr; }
    .specs__cell { padding: 13px 16px; font-size: 0.85rem; }
    .breadcrumb { flex-wrap: wrap; padding-bottom: 28px; font-size: 0.6rem; gap: 5px 7px; letter-spacing: 0.03em; }
    .breadcrumb__link, .breadcrumb__sep { white-space: nowrap; }
  }
  
  /* ---------- Reduced motion ---------- */
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    [data-fade], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }
  