/* ============ КТ-ТРОН дистрибьютор — стили (бетон + гидроизоляция) ============ */
:root {
  --ink: #0f1722;
  --ink-2: #33414f;
  --muted: #6b7785;
  --line: #e4e8ee;
  --line-2: #eef1f5;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --dark: #2b3036;
  --dark-2: #363c44;

  --brand: #1763d6;
  --brand-600: #1257c2;
  --brand-700: #0f4aa8;
  --brand-050: #eaf1fd;

  --ok: #12a36b;
  --ok-bg: #e7f7ef;
  --warn: #b5740c;
  --warn-bg: #fbf1de;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(16,30,54,.06), 0 1px 3px rgba(16,30,54,.06);
  --shadow: 0 6px 24px rgba(16,30,54,.10);
  --maxw: 1180px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { 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; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); }
h1,h2,h3,h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--ink); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.section { padding: 52px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 36px 0; }
.icon { width: 1.25em; height: 1.25em; flex: none; vertical-align: -.18em; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5em; font: inherit; font-weight: 600; line-height: 1;
  padding: .72em 1.15em; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .12s, box-shadow .2s; white-space: nowrap;
  position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-700); color: #fff; box-shadow: 0 10px 26px -8px rgba(23,99,214,.55); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-light:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: .9em 1.5em; font-size: 1.02rem; }

/* ---------- Badges ---------- */
.badge { display: inline-flex; align-items: center; gap: .35em; font-size: .76rem; font-weight: 600;
  padding: .28em .6em; border-radius: 999px; letter-spacing: .01em; }
.stock-in { background: var(--ok-bg); color: var(--ok); }
.stock-order { background: var(--warn-bg); color: var(--warn); }
.tag { font-size: .74rem; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line);
  padding: .2em .55em; border-radius: 999px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--dark); color: #cdd7e4; font-size: .82rem; }
.topbar .container { display: flex; gap: 18px; align-items: center; min-height: 42px; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none; }
.topbar .container::-webkit-scrollbar { display: none; }
.topbar a { color: #cdd7e4; }
.topbar a:hover { color: #fff; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .4em; white-space: nowrap; }
.topbar .spacer { margin-left: auto; }
@media (max-width: 600px) { .topbar { font-size: .75rem; } .topbar .container { gap: 10px; } }
.topbar .tb-mob-brand { display: none; font-weight: 600; color: #fff; }
@media (max-width: 860px) { .topbar .tb-mob-brand { display: inline-flex; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-mark { width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #1763d6, #36a3e6);
  display: grid; place-items: center; color: #fff; flex: none; box-shadow: 0 2px 8px rgba(23,99,214,.35); }
.logo-mark .icon { width: 22px; height: 22px; }
.logo-pic { width: 40px; height: 40px; flex: none; object-fit: contain; display: block; }
.logo-text b { display: block; font-size: 1.06rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.logo-text span { display: block; font-size: .73rem; color: var(--muted); }
.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a { color: var(--ink-2); font-weight: 500; padding: .55em .7em; border-radius: 7px; font-size: .96rem; white-space: nowrap; }
.nav a:hover { background: var(--bg-soft); color: var(--brand); }
.nav a.active { color: var(--brand); background: var(--brand-050); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.header-call { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 9px;
  border: none; color: #fff; background: var(--brand);
  box-shadow: 0 2px 8px rgba(23,99,214,.35); transition: background .15s, box-shadow .15s, transform .12s; }
.header-call:hover { background: var(--brand-700); color: #fff;
  box-shadow: 0 4px 14px rgba(23,99,214,.5); transform: translateY(-1px); }
.header-call:active { transform: translateY(1px); }
.header-call .icon { width: 20px; height: 20px; }
.search-wrap { position: relative; }
.search-form { display: flex; align-items: center; }
.search-form input { font: inherit; font-size: .92rem; border: 1px solid var(--line); border-right: none;
  border-radius: 7px 0 0 7px; padding: .55em .7em; width: 190px; background: var(--bg-soft); }
.search-form input:focus { outline: none; border-color: var(--brand); background: #fff; }
.search-form button { border: 1px solid var(--brand); background: var(--brand); color: #fff;
  border-radius: 0 7px 7px 0; padding: .55em .7em; cursor: pointer; display: grid; place-items: center; }
.search-form button:hover { background: var(--brand-700); border-color: var(--brand-700); }

/* ---------- Большой поиск на главной странице ---------- */
.section--hero-search { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 20px 0; }
.hero-search-wrap { position: relative; max-width: 700px; margin: 0 auto; }
.hero-search-form {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 2px solid var(--brand); border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(23,99,214,.12);
  overflow: hidden;
}
.hero-search-form:focus-within { box-shadow: 0 4px 24px rgba(23,99,214,.22); }
.hero-search-icon { padding: 0 12px; color: var(--muted); display: flex; align-items: center; flex: none; }
.hero-search-icon .icon { width: 20px; height: 20px; }
.hero-search-form input {
  flex: 1; border: none; outline: none; font: inherit; font-size: 1rem;
  padding: .75em 0; background: transparent; min-width: 0;
}
.hero-search-form input::placeholder { color: var(--muted); }
.hero-search-form .btn {
  border-radius: 0; border: none; padding: 0 1.4em;
  font-size: .95rem; flex: none;
  align-self: stretch; display: flex; align-items: center;
}
.hero-search-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 12px; }
.hero-search-tags a {
  font-size: .8rem; color: var(--ink-2); background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .3em .8em; transition: border-color .15s, color .15s;
}
.hero-search-tags a:hover { border-color: var(--brand); color: var(--brand); }
/* Дропдаун поиска главной страницы */
.hero-search-wrap .ac-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 60;
}
@media (max-width: 600px) {
  .hero-search-form input { font-size: .9rem; }
  .hero-search-form .btn span { display: none; }
  .hero-search-tags { gap: 6px; }
  .hero-search-tags a { font-size: .75rem; }
}

/* ---------- Автодополнение поиска ---------- */
.ac-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  /* Шире поля ввода: минимум 340px, но не выходит за экран */
  min-width: 340px; max-width: min(480px, 96vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(16,30,54,.14); z-index: 60;
  max-height: 70vh; overflow-y: auto; overflow-x: hidden;
  display: none;
}
.ac-dropdown.open { display: block; }
/* Если дропдаун выходит вправо за экран — прижимаем справа */
@media (max-width: 600px) {
  .search-wrap .ac-dropdown { left: auto; right: 0; min-width: min(340px, 92vw); }
}
.ac-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 14px; cursor: pointer; border-bottom: 1px solid var(--line-2);
  transition: background .1s; text-decoration: none; color: var(--ink);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.active { background: var(--brand-050); }
.ac-item .ac-icon { width: 34px; height: 34px; flex: none; background: var(--brand-050);
  border-radius: 8px; display: grid; place-items: center; color: var(--brand); margin-top: 1px; }
.ac-item .ac-icon .icon { width: 17px; height: 17px; }
.ac-item-body { flex: 1; min-width: 0; }
/* Название НЕ обрезаем — показываем полностью, переносим если не влезает */
.ac-item-name { font-weight: 600; font-size: .92rem; line-height: 1.3; word-break: break-word; }
.ac-item-hint { font-size: .78rem; color: var(--muted); margin-top: 2px; line-height: 1.35; }
.ac-item-cat  { font-size: .72rem; color: var(--brand); font-weight: 600; margin-top: 3px;
  background: var(--brand-050); display: inline-block; padding: .1em .45em; border-radius: 4px; }
.ac-footer {
  padding: 10px 14px; font-size: .84rem; color: var(--brand); font-weight: 600;
  background: var(--bg-soft); cursor: pointer; border-top: 1px solid var(--line);
  text-align: center; position: sticky; bottom: 0;
}
.ac-footer:hover { background: var(--brand-050); }
.ac-empty { padding: 16px 14px; text-align: center; font-size: .88rem; color: var(--muted); }
/* Мобильное меню: дропдаун статичный (не absolute) */
.mnav-search { position: relative; margin: 6px 0 10px; }
.mnav-search .ac-dropdown { position: static; box-shadow: none; min-width: 0; max-width: 100%;
  border-radius: 0 0 var(--radius) var(--radius); max-height: 50vh; }
.mnav-search input { width: 100%; font: inherit; padding: .7em .8em; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-soft); }
.mnav-search input:focus { outline: none; border-color: var(--brand); background: #fff; }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 7px;
  padding: .45em .55em; cursor: pointer; color: var(--ink); }

/* ---------- After-hours banner ---------- */
.afterhours { background: var(--warn-bg); border-bottom: 1px solid #f0dcae; color: #6a4e12; }
.afterhours .container { display: flex; align-items: center; gap: 10px; padding: 9px 18px; flex-wrap: wrap; font-size: .9rem; }
.afterhours .icon { width: 18px; height: 18px; color: var(--warn); flex: none; }
.afterhours .ah-links { display: inline-flex; gap: 8px; margin-left: auto; }
.afterhours .ah-links a { font-weight: 600; color: var(--brand); padding: 2px 10px; border: 1px solid var(--line);
  border-radius: 999px; background: #fff; }
.afterhours .ah-links a:hover { border-color: var(--brand); }
@media (max-width: 600px) { .afterhours .ah-links { margin-left: 0; } }

/* ---------- Closing-soon banner ---------- */
.closingsoon { background: #fff3e0; border-bottom: 2px solid #fb8c00; color: #6d3e00; }
.closingsoon .container { display: flex; align-items: center; gap: 10px; padding: 9px 18px; flex-wrap: wrap; font-size: .9rem; }
.closingsoon .icon { width: 18px; height: 18px; color: #fb8c00; flex: none; }
.closingsoon .ah-links { display: inline-flex; gap: 8px; margin-left: auto; flex-wrap: wrap; }
.closingsoon .ah-links a { font-weight: 600; color: #fff; background: #fb8c00; border: none;
  padding: 3px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.closingsoon .ah-links a .icon { width: 14px; height: 14px; color: #fff; }
.closingsoon .ah-links a:hover { background: #e65100; }
.ah-close { background: none; border: none; cursor: pointer; color: inherit; opacity: .5;
  padding: 0 0 0 8px; font-size: 1rem; line-height: 1; margin-left: 4px; }
.ah-close:hover { opacity: 1; }
@media (max-width: 600px) { .closingsoon .ah-links { margin-left: 0; } }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, #3a4047 0%, #2a2e34 100%); color: #eef1f5; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: .08; mix-blend-mode: overlay; pointer-events: none; }
.hero .container { position: relative; z-index: 1; padding-top: 54px; padding-bottom: 84px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero .lead { font-size: 1.1rem; color: #c9d2dd; max-width: 36em; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase; color: #dce7f5; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16); padding: .35em .75em; border-radius: 999px; margin-bottom: 18px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-points span { display: inline-flex; align-items: center; gap: .5em; font-size: .88rem; color: #dbe6f4;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: .5em .85em; border-radius: 999px; }
.hero-points .icon { width: 16px; height: 16px; color: #7fd6a6; }
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  padding: 22px; backdrop-filter: blur(4px); }
.hero-card h3 { color: #fff; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
.hero-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 14px; }
.hero-stat b { display: block; font-size: 1.5rem; color: #fff; line-height: 1; }
.hero-stat span { font-size: .8rem; color: #aebed3; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 90px; z-index: 0; display: block; }
.hero-org { display: flex; align-items: baseline; flex-wrap: wrap; gap: .35em; margin-bottom: 16px; }
.hero-org strong { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.hero-org span { font-size: .9rem; color: #8faec9; font-weight: 400; }
.hero-card-org { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: -.01em; margin-bottom: 4px; }

/* ---------- Section heads ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.sec-head .kicker { display: block; color: var(--brand); font-weight: 700; font-size: 0.78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 4px; }
.sec-head h2 { margin: 0; }
.sec-head .sub { color: var(--muted); margin: .35em 0 0; }

/* ---------- Advantages ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.adv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease; }
.adv:hover { transform: translateY(-3px); border-color: var(--brand);
  box-shadow: 0 14px 30px -16px color-mix(in srgb, var(--brand) 45%, transparent); }
.adv .icon { width: 26px; height: 26px; color: var(--brand); background: var(--brand-050); padding: 9px;
  box-sizing: content-box; border-radius: 9px; transition: transform .25s ease; }
.adv h3 { margin: 14px 0 6px; font-size: 1.02rem; }
.adv p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; color: var(--ink);
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease; }
.cat-card:hover { transform: translateY(-4px); border-color: var(--c, var(--brand)); color: var(--ink);
  box-shadow: 0 16px 34px -16px color-mix(in srgb, var(--c, var(--brand)) 50%, transparent); }
.cat-card .icon { width: 24px; height: 24px; color: var(--c, var(--brand));
  background: color-mix(in srgb, var(--c, var(--brand)) 12%, #fff); padding: 11px; box-sizing: content-box;
  border-radius: 10px; flex: none; transition: transform .25s ease; }
.cat-card:hover .icon { transform: scale(1.08) rotate(-3deg); }
.cat-card h3 { margin: 0 0 4px; font-size: 1.04rem; }
.cat-card p { margin: 0 0 8px; color: var(--muted); font-size: .88rem; }
.cat-card .count { font-size: .76rem; color: var(--muted); }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-4px); border-color: var(--c, var(--brand));
  box-shadow: 0 16px 36px -16px color-mix(in srgb, var(--c, var(--brand)) 60%, transparent); }
.pc-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, #eef3fb, #e3ebf6); display: grid; place-items: center;
  position: relative; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.pc-thumb .pkg { width: 82%; height: 82%; }
.pc-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; box-sizing: border-box; transition: transform .4s ease; }
.product-card:hover .pc-thumb .pkg, .product-card:hover .pc-thumb img { transform: scale(1.06); }
.pc-thumb .pc-badge { position: absolute; top: 10px; left: 10px; }
.pc-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.pc-body h3 { margin: 0 0 5px; font-size: 1.02rem; }
.pc-body h3 a { color: var(--ink); }
.pc-body h3 a:hover { color: var(--brand); }
.pc-purpose { color: var(--muted); font-size: .87rem; margin: 0 0 14px; flex: 1; }
.pc-foot { display: flex; gap: 8px; }
.pc-foot .btn { padding: .55em .8em; font-size: .88rem; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: .85rem; color: var(--muted); padding: 16px 0 0; display: flex; gap: .5em; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { opacity: .5; }

/* ---------- Catalog layout ---------- */
.catalog-wrap { display: grid; grid-template-columns: 250px 1fr; gap: 26px; align-items: start; }
.side { position: sticky; top: 84px; max-height: calc(100vh - 96px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.side h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 0 0 10px; }
.side-nav { list-style: none; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.side-nav li + li { border-top: 1px solid var(--line-2); }
.side-nav a { display: flex; justify-content: space-between; gap: 8px; align-items: center; padding: .65em .9em; color: var(--ink-2); font-size: .92rem; }
.side-nav a:hover { background: var(--bg-soft); color: var(--brand); }
.side-nav a.active { background: var(--brand-050); color: var(--brand); font-weight: 600; }
.side-nav .n { font-size: .76rem; color: var(--muted); }

/* ---------- Product page ---------- */
.product-top { display: grid; grid-template-columns: 1fr 1.15fr; gap: 30px; align-items: start; }
.product-media { background: linear-gradient(135deg, #eef3fb, #e3ebf6); border: 1px solid var(--line);
  border-radius: var(--radius); aspect-ratio: 4/3; display: grid; place-items: center; }
.product-media .pkg { width: 74%; height: 74%; }
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; box-sizing: border-box; }
.product-info h1 { margin-bottom: .3em; }
.product-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.lead-purpose { font-size: 1.06rem; color: var(--ink-2); }
.order-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-top: 18px; }
.order-box .row { display: flex; gap: 10px; flex-wrap: wrap; }
.specs-block { margin: 20px 0 0; padding: 16px; background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: var(--radius); }
.specs-title { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin: 0 0 8px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 0; }
.spec-table th, .spec-table td { text-align: left; padding: .55em .3em; border-bottom: 1px solid var(--line-2); font-size: .9rem; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table th { color: var(--muted); font-weight: 500; width: 44%; }
.spec-table td { color: var(--ink); font-weight: 500; }
.prose p { color: var(--ink-2); }
.note { font-size: .85rem; color: var(--muted); background: var(--bg-soft); border-left: 3px solid var(--brand);
  padding: .7em .9em; border-radius: 0 8px 8px 0; }

/* ---------- Gallery (фото товара) ---------- */
.pc-thumb img, .product-media img { transition: transform .4s ease; }
.gallery-main { position: relative; aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; }
.gallery-track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { flex: 0 0 100%; height: 100%; scroll-snap-align: center; }
.gallery-slide img { width: 100%; height: 100%; object-fit: contain; padding: 14px; box-sizing: border-box; display: block; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: background .15s; }
.gallery-nav:hover { background: #fff; }
.gallery-nav .icon { width: 22px; height: 22px; }
.gallery-prev { left: 10px; }
.gallery-prev .icon { transform: scaleX(-1); }
.gallery-next { right: 10px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { flex: 0 0 auto; width: 66px; height: 50px; border-radius: 8px; overflow: hidden; border: 2px solid transparent;
  background: #fff; padding: 0; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.gallery-thumb.active { border-color: var(--brand); }

/* ---------- Forms ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 5px; color: var(--ink-2); }
.field input, .field textarea { width: 100%; font: inherit; padding: .7em .8em; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-050); }
.field textarea { min-height: 110px; resize: vertical; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.link-submit { display: inline-block; margin-top: 12px; background: none; border: none; color: var(--muted);
  font: inherit; font-size: .88rem; text-decoration: underline; cursor: pointer; padding: 0; }
.link-submit:hover { color: var(--brand); }

/* ---------- Info / contact blocks ---------- */
.info-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.contact-list .icon { width: 22px; height: 22px; color: var(--brand); margin-top: 3px; flex: none; }
.contact-list b { display: block; }
.contact-list span { color: var(--muted); font-size: .92rem; }
.map-box { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-frame { width: 100%; height: 320px; border: 0; display: block; }
.map-links { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.map-links .btn { padding: .5em .8em; font-size: .9rem; }

.official-banner {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(100deg, #eef4ff 0%, #f0f6ff 100%);
  border: 1.5px solid var(--brand-200, #b8d0f8); border-radius: var(--radius);
  padding: 20px 24px; margin: 20px 0 0;
}
.official-banner-icon { flex-shrink: 0; }
.official-banner-icon .icon { width: 28px; height: 28px; color: var(--brand); margin-top: 2px; }
.official-banner-body { display: flex; flex-direction: column; gap: 5px; }
.official-banner-body strong { font-size: 1.05rem; color: var(--ink); }
.official-banner-body span { font-size: .9rem; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 500px) {
  .official-banner { padding: 16px 18px; gap: 12px; }
  .official-banner-body strong { font-size: .97rem; }
}

.cta-band { background: linear-gradient(135deg, var(--brand-700), var(--brand)); color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px 18px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: #dbe7fb; margin: .3em 0 0; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #aebed3; padding: 46px 0 26px; }
.footer a { color: #cdd7e4; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.footer h4 { color: #fff; font-size: .98rem; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; font-size: .92rem; }
.footer-brand b { color: #fff; font-size: 1.1rem; }
.footer-brand p { font-size: .9rem; margin-top: 10px; max-width: 26em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding-top: 18px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: #8295ab; }
.footer-disclaimer { font-size: .78rem; color: #6f8298; margin-top: 6px; max-width: 60em; }

/* ---------- Misc ---------- */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .icon { width: 46px; height: 46px; color: var(--line); }
.pagewrap { min-height: 50vh; }
.center-narrow { max-width: 640px; margin: 0 auto; text-align: center; }
.mobile-nav { display: none; }

/* ---------- Reveal on scroll ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .search-form, .header-call { display: none; }
  .burger { display: inline-flex; }
  .catalog-wrap { grid-template-columns: 1fr; }
  /* Категории — компактная горизонтальная лента-чипсы, чтобы товары были видны сразу */
  .side { position: static; max-height: none; margin: 0 0 6px; }
  .side h4 { margin: 0 0 8px; }
  .side-nav { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto;
    border: 0; background: transparent; border-radius: 0; padding: 2px 0 8px;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
    scrollbar-width: none; }
  .side-nav::-webkit-scrollbar { height: 0; display: none; }
  .side-nav li { flex: none; scroll-snap-align: start; }
  .side-nav li + li { border-top: 0; }
  .side-nav a { border: 1px solid var(--line); border-radius: 999px;
    padding: .5em .9em; white-space: nowrap; background: #fff; }
  .side-nav a.active { background: var(--brand); color: #fff; border-color: var(--brand); }
  .side-nav a.active .n { color: rgba(255,255,255,.82); }
  .product-top { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .topbar .tb-hide { display: none; }
  .hero .container { padding-top: 40px; padding-bottom: 80px; }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) { display: none; }
  .section { padding: 38px 0; }
  /* 1 строка описания вместо полного скрытия */
  .pc-purpose { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; font-size: .82rem; }
  .pc-foot .btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .cat-card:hover .icon, .product-card:hover, .cat-card:hover, .adv:hover,
  .product-card:hover .pc-thumb .pkg, .product-card:hover .pc-thumb img { transform: none; }
}

/* ---------- Mobile slide menu (анимированное выдвижение) ---------- */
.mnav { position: fixed; inset: 0; z-index: 40; visibility: hidden; pointer-events: none; }
.mnav.open { visibility: visible; pointer-events: auto; }
.mnav-backdrop { position: absolute; inset: 0; background: rgba(8,16,28,.5);
  opacity: 0; transition: opacity .25s ease; }
.mnav.open .mnav-backdrop { opacity: 1; }
.mnav-panel { position: absolute; top: 0; right: 0; width: min(82vw, 340px); height: 100%; background: #fff;
  box-shadow: -6px 0 30px rgba(16,30,54,.16); padding: 16px 18px 18px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  will-change: transform; }
.mnav.open .mnav-panel { transform: translateX(0); }
.mnav-panel a { padding: .78em .7em; border-radius: 8px; color: var(--ink-2); font-weight: 500;
  display: block; transition: background .15s, color .15s; }
.mnav-panel a:hover { background: var(--bg-soft); color: var(--brand); }
.mnav-panel .mnav-phone { margin-top: 12px; }
.mnav-panel a.btn-primary { color: #fff; }
.mnav-panel a.btn-primary:hover { color: #fff; }
.mnav-search { margin: 6px 0 10px; }
.mnav-search input { width: 100%; font: inherit; padding: .7em .8em; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-soft); }
.mnav-search input:focus { outline: none; border-color: var(--brand); background: #fff; }
/* Анимированный бургер-крестик */
.burger-lines { display: flex; flex-direction: column; gap: 5px; width: 20px; pointer-events: none; }
.burger-lines span { display: block; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .28s ease, opacity .22s ease, width .28s ease; transform-origin: center; }
.burger.active .burger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active .burger-lines span:nth-child(2) { opacity: 0; width: 0; }
.burger.active .burger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Поддержка страниц «Спасибо» и 404 ---- */
:root { --text: var(--ink); --border-strong: #cdd2da; --success: #12a36b; }
.empty-state { padding: 70px 20px; text-align: center; max-width: 560px; margin: 0 auto; }
.empty-state .big-num { font-size: 5rem; font-weight: 800; color: var(--brand); letter-spacing: -.04em; line-height: 1; margin-bottom: .05em; }
.empty-state h2 { margin: 0 0 10px; }
.empty-state p { color: var(--muted); margin: 0 0 20px; }
.empty-state .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }

/* ============================================================
   АНИМАЦИИ И УЛУЧШЕНИЯ ИНТЕРФЕЙСА
   ============================================================ */

/* --- Keyframes --- */
@keyframes kt-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kt-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kt-pulse-ring {
  0%   { box-shadow: 0 6px 22px rgba(23,99,214,.45), 0 0 0 0 rgba(23,99,214,.55); }
  70%  { box-shadow: 0 6px 22px rgba(23,99,214,.45), 0 0 0 18px rgba(23,99,214,0); }
  100% { box-shadow: 0 6px 22px rgba(23,99,214,.45), 0 0 0 0 rgba(23,99,214,0); }
}
@keyframes kt-ripple {
  from { transform: scale(0); opacity: .45; }
  to   { transform: scale(5); opacity: 0; }
}
@keyframes kt-slide-in-down {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Hero: появление элементов при загрузке страницы --- */
@media (prefers-reduced-motion: no-preference) {
  .hero-anim-1  { animation: kt-fadeUp .55s ease both; animation-delay: 0.04s; }
  .hero-anim-1b { animation: kt-fadeUp .62s ease both; animation-delay: 0.10s; }
  .hero-anim-2 { animation: kt-fadeUp .62s ease both; animation-delay: 0.16s; }
  .hero-anim-3 { animation: kt-fadeUp .62s ease both; animation-delay: 0.28s; }
  .hero-anim-4 { animation: kt-fadeUp .62s ease both; animation-delay: 0.42s; }
  .hero-anim-5 { animation: kt-fadeUp .62s ease both; animation-delay: 0.54s; }
  .hero-anim-card { animation: kt-fadeIn .8s ease both; animation-delay: 0.3s; }
  /* Шапка появляется сверху */
  .header { animation: kt-slide-in-down .4s ease both; }
}

/* --- Прогресс-бар прокрутки страницы --- */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 201;
  background: linear-gradient(90deg, var(--brand) 0%, #36a3e6 60%, #7fd6a6 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .08s linear;
  pointer-events: none;
}

/* --- Ripple-эффект (волна при нажатии кнопки) --- */
.ripple-el {
  position: absolute; border-radius: 50%;
  width: 8px; height: 8px; margin: -4px;
  background: rgba(255,255,255,.42);
  pointer-events: none;
  animation: kt-ripple .55s ease-out forwards;
  transform-origin: center;
}
.btn-ghost .ripple-el, .btn-secondary .ripple-el { background: rgba(23,99,214,.18); }
.btn-light .ripple-el { background: rgba(255,255,255,.28); }

/* --- Плавающая кнопка MAX (только десктоп) --- */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 88;
  width: 58px; height: 58px; border-radius: 50%;
  background: #0d0d1a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(90,60,200,.55);
  text-decoration: none; overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease, transform .22s ease, box-shadow .22s ease;
}
.wa-float img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 50%; display: block;
}
.wa-float.vis {
  opacity: 1; pointer-events: auto;
  animation: kt-pulse-ring 3s ease-out infinite;
}

/* Подсветка при наведении */
.wa-float:hover {
  transform: scale(1.13);
  box-shadow:
    0 0 0 10px rgba(90,60,200,.18),
    0 0 0 22px rgba(90,60,200,.08),
    0 0 42px rgba(120,80,255,.65);
  animation: none !important;
}

/* Световое пятно поверх кнопки */
.wa-float::after {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 36% 28%,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,0)  62%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.wa-float:hover::after { opacity: 1; }

.wa-float svg { width: 30px; height: 30px; }

/* Подсказка при наведении */
.wa-float::before {
  content: "Написать в MAX"; position: absolute; right: calc(100% + 10px);
  background: rgba(10,18,28,.82); color: #fff; font-size: .76rem; font-weight: 600;
  padding: .35em .65em; border-radius: 6px; white-space: nowrap;
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.wa-float:hover::before { opacity: 1; }

/* --- Нижняя мобильная панель --- */
.mob-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 86; background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(16,30,54,.09);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mob-bar-inner { display: flex; height: 58px; position: relative; }
/* Скользящий синий индикатор активной вкладки */
.mob-bar-indicator {
  position: absolute; top: 0; left: 0;
  width: 20%; height: 3px;
  background: var(--brand);
  border-radius: 0 0 4px 4px;
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  transform: translateX(calc(var(--active-idx, 0) * 100%));
  display: none;
  pointer-events: none;
}
.mob-bar-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: .64rem; font-weight: 600; color: var(--muted); letter-spacing: .01em;
  border: none; background: none; cursor: pointer; text-decoration: none;
  -webkit-tap-highlight-color: transparent; transition: color .2s, background .12s;
}
.mob-bar-btn:active { background: var(--bg-soft); }
.mob-bar-btn.active { color: var(--brand); }
.mob-bar-btn .icon { width: 22px; height: 22px; flex: none; }

/* --- Мобильный: включить нижнюю панель --- */
@media (max-width: 860px) {
  .mob-bar { display: block; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0)); }
  .wa-float { display: none !important; }
}

/* --- Touch UX: быстрый отклик, убираем синюю подсветку --- */
a, button, .btn, .cat-card, .product-card, .adv, .side-nav a, .gallery-nav, .gallery-thumb {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
@media (max-width: 860px) {
  .btn { min-height: 44px; }
  .header-call { min-width: 44px; min-height: 44px; }
  .burger { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

/* --- Счётчики (числа в hero) --- */
[data-count] { font-variant-numeric: tabular-nums; }

/* --- Карточки товара: stagger-эффект --- */
@media (prefers-reduced-motion: no-preference) {
  html.js .product-grid .product-card.reveal {
    transition-delay: var(--delay, 0ms);
  }
  html.js .cat-grid .cat-card.reveal {
    transition-delay: var(--delay, 0ms);
  }
  html.js .adv-grid .adv.reveal {
    transition-delay: var(--delay, 0ms);
  }
}

/* --- Улучшенный hover у карточек (плавнее на мобиле не мешает) --- */
@media (hover: hover) {
  .adv:hover .icon { transform: scale(1.12) rotate(-5deg); }
  .product-card:hover .pc-body h3 a { color: var(--brand); }
}

/* --- prefers-reduced-motion: выключаем все новые анимации --- */
@media (prefers-reduced-motion: reduce) {
  .header,
  .hero-anim-1, .hero-anim-1b, .hero-anim-2, .hero-anim-3, .hero-anim-4, .hero-anim-5, .hero-anim-card {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .wa-float.vis { animation: none; }
  #scroll-progress { transition: none; }
  .mnav-panel { transition: none; }
  .mnav-backdrop { transition: none; }
}

/* ============================================================
   БУРГЕР-МЕНЮ АДМИНКИ (мобильная навигация)
   ============================================================ */
.adm-burger {
  display: none;
  background: none; border: 1px solid rgba(255,255,255,.35); border-radius: 7px;
  padding: .45em .55em; cursor: pointer; color: #fff;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.adm-burger.active .burger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.adm-burger.active .burger-lines span:nth-child(2) { opacity: 0; width: 0; }
.adm-burger.active .burger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Прячем кнопки на мобиле, показываем бургер */
@media (max-width: 760px) {
  .adm-btns { display: none !important; }
  .adm-burger { display: inline-flex; }
  .adm-bar .adm-logo span { display: none; }
}

/* Боковая панель навигации (выезжает справа) */
.adm-snav {
  position: fixed; inset: 0; z-index: 9999;
  visibility: hidden; pointer-events: none;
}
.adm-snav.open { visibility: visible; pointer-events: auto; }

.adm-snav-back {
  position: absolute; inset: 0; background: rgba(8,16,28,.5);
  opacity: 0; transition: opacity .25s ease;
}
.adm-snav.open .adm-snav-back { opacity: 1; }

.adm-snav-panel {
  position: absolute; top: 0; right: 0;
  width: min(82vw, 300px); height: 100%;
  background: #fff; box-shadow: -6px 0 30px rgba(16,30,54,.16);
  padding: 14px 14px 18px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.adm-snav.open .adm-snav-panel { transform: translateX(0); }

.adm-snav-close {
  align-self: flex-end; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 10px;
  background: none; border: 1px solid var(--line); border-radius: 7px;
  cursor: pointer; color: var(--ink); transition: background .15s;
}
.adm-snav-close:hover { background: var(--bg-soft); }
.adm-snav.open .adm-snav-close .burger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.adm-snav.open .adm-snav-close .burger-lines span:nth-child(2) { opacity: 0; width: 0; }
.adm-snav.open .adm-snav-close .burger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.adm-snav-panel a {
  display: block; padding: .78em .7em; border-radius: 8px;
  color: var(--ink-2); font-weight: 500; text-decoration: none;
  transition: background .15s, color .15s;
}
.adm-snav-panel a:hover { background: var(--bg-soft); color: var(--brand); }
.adm-snav-panel a.active { color: var(--brand); background: var(--brand-050); font-weight: 700; }

.adm-snav-divider { height: 1px; background: var(--line-2); margin: 6px 0; }

.adm-snav-btn {
  display: block; width: 100%; padding: .78em .7em; border-radius: 8px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-2); font-weight: 500;
  font-size: 1rem; font-family: inherit; text-align: left;
  transition: background .15s, color .15s;
}
.adm-snav-btn:hover { background: var(--bg-soft); color: var(--brand); }
.adm-snav-btn.adm-snav-exit { color: #b91c1c; }
.adm-snav-btn.adm-snav-exit:hover { background: #fff1f1; }

@media (prefers-reduced-motion: reduce) {
  .adm-snav-panel { transition: none; }
  .adm-snav-back  { transition: none; }
}
