@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --font: Inter, system-ui, -apple-system, sans-serif;
  --green: #1c8465;
  --green-dark: #145240;
  --green-deep: #0d2f26;
  --mint: #e6fcf5;
  --ink: #1c2434;
  --muted: #5b6573;
  --line: rgba(28, 36, 52, 0.1);
  --paper: #f4f7f5;
  --white: #ffffff;
  --lime: #b8e000;
  --brand: #1c8465;
  --radius: 4px;
  --max: 1400px;
  --header-h: calc(1.2rem + 0.9rem + 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* App-like header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 0.65rem 0 0.55rem;
  background: transparent;
  border-bottom: none;
  overflow: visible;
  transition: padding 0.25s ease;
}

.site-header > .wrap {
  position: relative;
}

.site-header.is-scrolled {
  padding-top: 0.4rem;
}

.site-header.is-scrolled .app-bar {
  box-shadow: 0 14px 40px rgba(20, 21, 23, 0.12);
  border-color: rgba(20, 21, 23, 0.08);
}

/* Dark heroes sit under the floating header, as on contacts */
.ahero,
.about-hero,
.ship-hero,
.rev-hero,
.faq-hero,
.blog-post-hero,
.home-page .hx-hero {
  margin-top: calc(var(--header-h) * -1);
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 0.5rem 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 21, 23, 0.06);
  border-radius: 22px;
  overflow: visible;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    0 10px 30px rgba(20, 21, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding-right: 0.25rem;
}

.logo img {
  height: 34px;
  width: auto;
}

.logo-chip {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(28, 132, 101, 0.18);
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-inline: auto;
  padding: 0.2rem;
  background: #f4efe4;
  border: 1px solid rgba(20, 21, 23, 0.06);
  border-radius: 16px;
}

.nav-pill {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 0;
  height: calc(100% - 0.4rem);
  border-radius: 12px;
  background: #d2ff3f;
  box-shadow: 0 6px 16px rgba(180, 210, 40, 0.35);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), width 0.28s cubic-bezier(.2,.8,.2,1);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.nav-pill.is-ready { opacity: 1; }

.nav-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-item:hover { color: var(--ink); }

.nav-item[data-nav="home"] {
  color: #141517;
  font-weight: 800;
}

.nav-item.is-active,
.nav-item:hover.is-active {
  color: #141517;
}

.nav:hover .nav-item.is-active { color: #6a6d70; }
.nav:hover .nav-item:hover,
.nav:hover .nav-dd:hover > .nav-item { color: #141517; }

.nav-dd {
  position: relative;
  z-index: 2;
}

.nav-caret {
  display: inline-grid;
  place-items: center;
  margin-left: -0.1rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-dd:hover > .nav-item .nav-caret,
.nav-dd.is-open > .nav-item .nav-caret {
  transform: rotate(180deg);
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  padding: 0.45rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(20, 21, 23, 0.08);
  box-shadow: 0 18px 40px rgba(20, 21, 23, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  transition-delay: 0.12s;
  z-index: 90;
}

.nav-dd-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.25rem;
  height: 1.25rem;
}

.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd.is-open .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.nav-dd-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 11px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}

.nav-dd-menu a:hover {
  background: rgba(210, 255, 63, 0.35);
  color: #141517;
}

.nav-dd-sep {
  height: 1px;
  margin: 0.35rem 0.55rem;
  background: rgba(28, 36, 52, 0.08);
}

.nav-dd-all {
  color: var(--brand) !important;
}

.nav-ico {
  display: grid;
  place-items: center;
  opacity: 0.9;
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.app-icon-btn,
.hu-btn.app-icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(28, 36, 52, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.app-icon-btn:hover,
.hu-btn.app-icon-btn:hover {
  transform: translateY(-1px);
  color: #141517;
  border-color: #d2ff3f;
  background: #d2ff3f;
}

.ico-heart {
  overflow: visible;
  display: block;
}

.app-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.95rem;
  border-radius: 14px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d2ff3f;
  background: #141517;
  box-shadow: 0 8px 18px rgba(20, 21, 23, 0.22);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s, background 0.15s;
}

.app-call:hover {
  transform: translateY(-1px);
  background: #25272b;
  box-shadow: 0 12px 24px rgba(20, 21, 23, 0.28);
}

.app-phones {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1.2;
  min-width: 0;
}
.app-phones a {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #141517;
  text-decoration: none;
  white-space: nowrap;
}
.app-phones a:hover {
  color: #1a7a5c;
}

.tel-num,
.hx-phone-txt a,
.filter-side-phone-txt strong,
.footer-contacts .fc-text .tel-num,
.lead-modal .lead-aside-foot a,
.contact-fab-text small.tel-num,
.sr-price,
.hu-count,
.p-card-price,
.product-price,
.product-qty input,
.f-price-readout,
.f-price-readout b,
.catalog-count strong,
.pc-rating-num,
.about-stats strong,
.rev-score-num,
.sys-hero-stat strong,
.cart-qty span,
.cart-total,
.hx-mini strong,
.px-stats b,
.cab-stats b,
.cab-prod-meta b,
.hero-match-code,
.hx-match .hero-match-code,
.f-count,
.f-price-inputs input,
input[type="number"],
input[type="tel"] {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: 0;
}

.app-lead {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.95rem;
  border: none;
  border-radius: 14px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #141517;
  background: #d2ff3f;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(180, 210, 40, 0.38);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.app-lead:hover {
  transform: translateY(-1px);
  background: #c6f52a;
  box-shadow: 0 12px 24px rgba(180, 210, 40, 0.45);
}

.nav-lead-item {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.header-phone { display: none; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 36, 52, 0.08);
  padding: 0;
  cursor: pointer;
  place-items: center;
  gap: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Expandable search */
.app-search {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 0.15rem);
  z-index: 90;
  padding: 0 0 0.75rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.app-search.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.app-search-inner {
  pointer-events: auto;
}

.app-search-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(28, 132, 101, 0.18);
  box-shadow: 0 16px 40px rgba(13, 47, 38, 0.14);
  backdrop-filter: blur(14px);
}

.app-search-ico { color: var(--green); display: grid; place-items: center; }

.app-search-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  min-width: 0;
}

.app-search-go {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.app-search-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: var(--paper);
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.app-search-results {
  margin-top: 0.45rem;
  max-height: min(70vh, 420px);
  overflow: auto;
  padding: 0.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(28, 132, 101, 0.14);
  box-shadow: 0 18px 44px rgba(13, 47, 38, 0.16);
  backdrop-filter: blur(14px);
}

.app-search-results[hidden] {
  display: none !important;
}

.sr-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.55rem;
  border-radius: 14px;
  color: inherit;
  transition: background 0.15s;
}

.sr-card:hover {
  background: rgba(28, 132, 101, 0.08);
}

.sr-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f0;
  border: 1px solid rgba(28, 36, 52, 0.06);
}

.sr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sr-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.sr-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

.sr-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sr-price {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--green-deep);
}

.sr-empty {
  padding: 1rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-more {
  display: block;
  margin-top: 0.25rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(28, 132, 101, 0.06);
  text-align: center;
}

.sr-more:hover {
  background: rgba(28, 132, 101, 0.12);
}

/* Mobile app dock */
.app-dock {
  display: none;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
}

.hu-btn {
  position: relative;
}

.hu-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #141517;
  color: #d2ff3f;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(20, 21, 23, 0.28);
}

.hu-count[hidden] { display: none; }

@media (max-width: 1100px) {
  .nav-txt { display: none; }
  .nav-item { padding: 0.55rem 0.7rem; }
  .app-call span { display: none; }
  .app-call { width: 40px; padding: 0; justify-content: center; }
  .app-phones a { font-size: 0.76rem; }
  .app-lead span { display: none; }
  .app-lead { width: 40px; padding: 0; justify-content: center; }
}

/* Hero — one composition, full-bleed */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: start;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: #1a1c1e;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
  will-change: transform;
}

.hero-slide.is-active img {
  animation: heroKen 22s ease-in-out infinite alternate;
}

.hero-slide:nth-child(2) img {
  object-position: 40% 45%;
}

@keyframes heroKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-2.5%, 1.5%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(18, 18, 20, 0.92) 0%,
      rgba(22, 22, 24, 0.78) 22%,
      rgba(28, 28, 30, 0.48) 48%,
      rgba(32, 32, 34, 0.22) 72%,
      rgba(36, 36, 38, 0.08) 100%),
    linear-gradient(180deg,
      rgba(16, 16, 18, 0.35) 0%,
      transparent 28%,
      transparent 58%,
      rgba(16, 16, 18, 0.55) 100%);
  pointer-events: none;
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(16, 16, 18, 0.5), transparent);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  animation: heroGrain 8s steps(2) infinite;
}

@keyframes heroGrain {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-1%, 1%); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 60px 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.85fr);
  gap: 1.5rem 2rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0;
  padding: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-brand {
  display: block;
  height: clamp(44px, 7vw, 68px);
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  opacity: 0.98;
  animation: heroRise 0.85s cubic-bezier(.2,.8,.2,1) both;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
  max-width: 11ch;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  line-height: 1.05;
  color: #fff;
  animation: heroRise 0.95s cubic-bezier(.2,.8,.2,1) 0.08s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
  text-shadow: 0 0 28px rgba(184, 224, 0, 0.28);
}

.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  line-height: 1.5;
  animation: heroRise 1.05s cubic-bezier(.2,.8,.2,1) 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: heroRise 1.1s cubic-bezier(.2,.8,.2,1) 0.24s both;
}

.hero-btn-main {
  background: var(--lime) !important;
  color: #10241c !important;
  border: none;
  box-shadow: 0 14px 32px rgba(184, 224, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(184, 224, 0, 0.38);
}

.hero-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* Color match animation */
.hero-match {
  justify-self: end;
  width: min(100%, 340px);
  animation: heroRise 1.15s cubic-bezier(.2,.8,.2,1) 0.2s both;
}

.hero-match-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(8, 24, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.hero-match-label {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.7rem;
}

.hero-match-stage {
  position: relative;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), transparent 50%),
    #122822;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-match-panel {
  position: absolute;
  inset: 18% 12% 22%;
  border-radius: 12px 12px 18px 18px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.35), transparent 42%),
    var(--paint, #d4e84a);
  box-shadow:
    inset 0 -18px 28px rgba(0,0,0,.22),
    0 12px 24px rgba(0,0,0,.28);
  transition: background 0.55s ease;
}

.hero-match-panel::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 18%;
  height: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  opacity: 0.55;
  animation: heroSheen 3.2s ease-in-out infinite;
}

.hero-match-scan {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  top: 18%;
  background: linear-gradient(90deg, transparent, #b8e000, transparent);
  box-shadow: 0 0 16px rgba(184, 224, 0, 0.85);
  animation: heroScan 2.8s ease-in-out infinite;
  z-index: 2;
}

.hero-match-drop {
  position: absolute;
  width: 14px;
  height: 18px;
  right: 18%;
  top: 12%;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background: var(--paint, #d4e84a);
  opacity: 0;
  filter: blur(0.2px);
  animation: heroDrop 3.6s ease-in-out infinite;
  z-index: 3;
  transition: background 0.4s ease;
}

.hero-match-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.75rem 0 0.65rem;
}

.hero-match-code {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-match-name {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.hero-match-chips {
  display: flex;
  gap: 0.4rem;
}

.hero-chip {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--c);
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease, outline-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-chip:hover {
  transform: translateY(-2px) scale(1.06);
}

.hero-chip.is-active {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(184, 224, 0, 0.2);
}

@keyframes heroSheen {
  0%, 100% { transform: translateX(-8%); opacity: 0.25; }
  50% { transform: translateX(8%); opacity: 0.65; }
}

@keyframes heroScan {
  0%, 100% { top: 18%; opacity: 0.35; }
  50% { top: 72%; opacity: 1; }
}

@keyframes heroDrop {
  0%, 15% { transform: translateY(0) scale(1); opacity: 0; }
  25% { opacity: 0.95; }
  55% { transform: translateY(78px) scale(0.85); opacity: 0.15; }
  100% { transform: translateY(78px) scale(0.7); opacity: 0; }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: start center;
  padding-top: 8px;
  z-index: 2;
  animation: heroRise 1.2s ease 0.5s both;
}

.hero-controls {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  animation: heroRise 1.15s ease 0.35s both;
}

.hero-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 22px;
  background: var(--lime);
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  animation: heroScrollDot 1.6s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0.15; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--green-deep);
}

.btn-primary:hover {
  background: #c8f020;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Section common */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Home catalog */
.home-catalog {
  position: relative;
}

.home-cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.35rem;
}

.home-cat-head h2 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.home-cat-head p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.home-cat-head a {
  color: var(--green);
  font-weight: 600;
}

.home-cat-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}

.home-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 0.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 36, 52, 0.06);
  box-shadow: 0 10px 28px rgba(13, 47, 38, 0.04);
}

.home-cat-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}

.home-cat-tab span {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  font-size: 0.68rem;
  background: rgba(28, 132, 101, 0.12);
  color: var(--green-dark);
}

.home-cat-tab:hover {
  color: var(--ink);
  background: rgba(28, 132, 101, 0.06);
}

.home-cat-tab.is-active {
  color: #fff;
  background: linear-gradient(145deg, #1c8465, #145240);
  box-shadow: 0 8px 18px rgba(28, 132, 101, 0.25);
}

.home-cat-tab.is-active span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.home-cat-tab-link {
  margin-left: auto;
  text-decoration: none;
  color: var(--green);
  display: inline-flex;
  align-items: center;
}

.home-catalog .p-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 36, 52, 0.08);
  box-shadow: 0 12px 30px rgba(13, 47, 38, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-catalog .p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 47, 38, 0.12);
  border-color: rgba(28, 132, 101, 0.28);
}

.home-catalog .pc-buy,
.home-catalog .pc-cart,
.home-catalog .pc-more,
.home-catalog .pc-tool,
.home-catalog .pc-badge {
  border-radius: 12px;
}

.home-catalog .p-card-tools {
  opacity: 1;
  transform: none;
}

.home-cat-foot {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(28, 132, 101, 0.08), transparent 55%),
    #fff;
  border: 1px solid rgba(28, 132, 101, 0.12);
}

.home-cat-foot-copy {
  display: grid;
  gap: 0.2rem;
}

.home-cat-foot-copy strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
}

.home-cat-foot-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.home-cat-foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 960px) {
  .home-cat-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-cat-tab-link {
    margin-left: 0;
  }
}

/* Categories */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cat {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.cat:hover img {
  transform: scale(1.06);
}

.cat-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(13, 47, 38, 0.92));
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Service band */
.service {
  background:
    linear-gradient(145deg, #0a241e 0%, #0d2f26 42%, #12382e 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.service-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.service-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.service-orb-a {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -140px;
  background: radial-gradient(circle, rgba(184, 224, 0, 0.28), transparent 68%);
  animation: serviceOrbA 10s ease-in-out infinite;
}

.service-orb-b {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(28, 132, 101, 0.45), transparent 70%);
  animation: serviceOrbB 12s ease-in-out infinite;
}

.service-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 75%);
}

@keyframes serviceOrbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 18px) scale(1.08); }
}

@keyframes serviceOrbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.12); }
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.service h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.service-copy > p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.35rem;
  max-width: 38ch;
  font-size: 1.05rem;
}

.service-spectrum {
  margin: 0 0 1.5rem;
  max-width: 420px;
}

.service-spectrum-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg,
    #8b2e2e 0%,
    #d4af37 18%,
    #b8e000 36%,
    #1c8465 54%,
    #2f5f9e 72%,
    #8a939e 88%,
    #c9ced4 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.service-spectrum-glow {
  position: absolute;
  top: -6px;
  bottom: -6px;
  width: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 18px rgba(184, 224, 0, 0.75);
  animation: spectrumScan 3.6s ease-in-out infinite;
}

@keyframes spectrumScan {
  0%, 100% { left: 8%; }
  50% { left: calc(100% - 50px); }
}

.service-swatches {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.service-swatches span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--c);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: swatchIdle 4.8s ease-in-out infinite;
}

.service-swatches span:nth-child(2) { animation-delay: 0.2s; }
.service-swatches span:nth-child(3) { animation-delay: 0.4s; }
.service-swatches span:nth-child(4) { animation-delay: 0.6s; }
.service-swatches span:nth-child(5) { animation-delay: 0.8s; }
.service-swatches span:nth-child(6) { animation-delay: 1s; }
.service-swatches span:nth-child(7) { animation-delay: 1.2s; }

.service-swatches span.is-active {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  animation: swatchActive 2.4s ease-in-out infinite;
}

@keyframes swatchIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes swatchActive {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2); }
  50% { transform: translateY(-4px) scale(1.08); box-shadow: 0 10px 22px rgba(184, 224, 0, 0.35); }
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service .btn-primary {
  background: var(--lime);
  color: #10241c;
  box-shadow: 0 12px 28px rgba(184, 224, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(184, 224, 0, 0.35);
}

.service-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.service-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.service-points {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  display: grid;
  gap: 0.65rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.service-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-point:hover {
  transform: translateX(4px);
  background: rgba(184, 224, 0, 0.08);
  border-color: rgba(184, 224, 0, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.service-point-ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #10241c;
  background: linear-gradient(145deg, var(--lime), #9bc400);
  box-shadow: 0 8px 18px rgba(184, 224, 0, 0.22);
}

.service-point strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.service-point span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-point b {
  color: var(--lime);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .service-orb-a,
  .service-orb-b,
  .service-spectrum-glow,
  .service-swatches span {
    animation: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  background: var(--lime);
  border-radius: 1px;
}

/* Promo */
.promo {
  background:
    linear-gradient(135deg, rgba(28, 132, 101, 0.08), transparent),
    var(--white);
  border-block: 1px solid var(--line);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-code {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
}

.promo-code em {
  font-style: normal;
  color: var(--green);
  background: var(--mint);
  padding: 0.15em 0.4em;
}

/* Home contacts */
.home-contacts {
  position: relative;
  overflow: hidden;
}

.home-contacts::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(28, 132, 101, 0.12), transparent 65%);
  pointer-events: none;
}

.home-contacts-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.home-contacts-head .section-head,
.home-contacts-head > div {
  max-width: 36rem;
}

.home-contacts-head h2 {
  margin: 0.35rem 0 0.55rem;
}

.home-contacts-head p {
  margin: 0;
  color: var(--muted);
}

.home-contacts-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(28, 132, 101, 0.08);
  border: 1px solid rgba(28, 132, 101, 0.14);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.home-contacts-link:hover {
  background: rgba(28, 132, 101, 0.14);
  transform: translateY(-1px);
}

.home-contacts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hc-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 36, 52, 0.07);
  box-shadow: 0 10px 28px rgba(13, 47, 38, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.hc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28, 132, 101, 0.28);
  box-shadow: 0 16px 34px rgba(28, 132, 101, 0.12);
}

.hc-card-wide {
  grid-column: 1 / -1;
  align-items: center;
}

.hc-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: linear-gradient(145deg, rgba(28, 132, 101, 0.12), rgba(28, 132, 101, 0.04));
  border: 1px solid rgba(28, 132, 101, 0.12);
}

.hc-meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.hc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.hc-meta strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.hc-hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.hc-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(28, 132, 101, 0.1);
  white-space: nowrap;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.55);
  animation: hcPulse 1.8s ease-out infinite;
}

@keyframes hcPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 160, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 160, 107, 0); }
}

.hc-aside {
  min-height: 100%;
}

.hc-panel {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.45rem 1.4rem 1.25rem;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(155deg, #145240 0%, #1c8465 48%, #0f3d31 100%);
  box-shadow: 0 22px 48px rgba(20, 82, 64, 0.28);
}

.hc-panel-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.hc-badge {
  position: relative;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hc-panel h3 {
  position: relative;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.3;
  font-weight: 700;
}

.hc-panel > p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hc-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.hc-panel .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hc-panel .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hc-panel .btn-primary {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.hc-map-link {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.2s, transform 0.2s;
}

.hc-map-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.hc-map-pin {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  flex-shrink: 0;
}

.hc-map-link strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}

.hc-map-link span span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

/* legacy contacts helpers (kept for safety) */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

.contact-item dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.contact-item dd {
  margin: 0;
  font-size: 1.15rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--green);
}

.map-panel {
  min-height: 280px;
  background:
    linear-gradient(160deg, var(--mint), #d7ebe3),
    var(--mint);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line);
}

.map-panel strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.map-panel span {
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  padding: 4.25rem 0 0;
  font-size: 0.92rem;
  background: #141517;
  border-top: none;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(210, 255, 63, 0.15) 12%, #d2ff3f 50%, rgba(210, 255, 63, 0.15) 88%, transparent 100%);
}

.footer-glow {
  pointer-events: none;
  position: absolute;
  inset: 0 auto auto;
  width: 100%;
  height: 42%;
  background: radial-gradient(ellipse 80% 80% at 50% -10%, rgba(210, 255, 63, 0.07), transparent 62%);
}

.footer-lines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 52px,
    rgba(244, 239, 228, 0.022) 52px,
    rgba(244, 239, 228, 0.022) 53px
  );
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.footer-mark {
  pointer-events: none;
  user-select: none;
  position: absolute;
  left: 50%;
  bottom: -0.08em;
  z-index: 0;
  margin: 0;
  width: 100%;
  transform: translateX(-50%);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 9.4vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-align: center;
  white-space: nowrap;
  color: rgba(210, 255, 63, 0.11);
  text-transform: lowercase;
}

.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-top,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 2rem 2rem;
  margin-bottom: 2.75rem;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  margin: 0 0 1.25rem;
  max-width: 34ch;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fs-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.fs-btn svg,
.fi svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-btn svg {
  width: 18px;
  height: 18px;
}

.fi svg {
  width: 14px;
  height: 14px;
}

.fi-lg svg {
  width: 18px;
  height: 18px;
}

.fs-btn:hover {
  transform: translateY(-1px);
  background: #d2ff3f;
  border-color: #d2ff3f;
  color: #141517;
}

.fs-btn-brand {
  overflow: hidden;
  background: transparent;
  border-color: transparent;
  padding: 0;
}

.fs-btn-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 1;
}

.fs-btn-brand:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-2px) scale(1.04);
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.38rem 0;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s, transform 0.2s;
  line-height: 1.35;
}

.footer-col a:hover {
  color: #d2ff3f;
  transform: translateX(3px);
}

.fi {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.fi-lg {
  width: 40px;
  height: 40px;
}

.footer-contacts .fc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.42rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contacts .fc-item:hover {
  color: #fff;
  transform: none;
}

.footer-contacts .fc-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1.3;
}

.footer-contacts .fc-item small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.footer-contacts .fc-static {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 228, 0.08);
  padding: 1.25rem 0 4.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-dev {
  color: inherit;
  text-decoration: none;
}

.footer-dev:hover {
  color: #d2ff3f;
}

.footer-note a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-note a:hover {
  color: #fff;
}


@media (max-width: 1100px) {
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .site-footer {
    padding: 3.25rem 0 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding-bottom: 3.4rem;
  }
  .footer-mark {
    font-size: clamp(1.85rem, 8.8vw, 3.6rem);
    bottom: -0.04em;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .contacts-grid,
  .home-contacts-grid {
    grid-template-columns: 1fr;
  }

  .home-contacts-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hc-cards {
    grid-template-columns: 1fr;
  }

  .hc-card-wide {
    flex-wrap: wrap;
  }

  .hc-status {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.55rem;
    margin: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 21, 23, 0.08);
    box-shadow: 0 22px 50px rgba(20, 21, 23, 0.16);
    backdrop-filter: blur(16px);
    z-index: 70;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-pill { display: none; }

  .nav-txt {
    display: inline;
  }

  .nav-item {
    padding: 0.85rem 0.95rem;
    color: var(--ink);
  }

  .nav-item:hover {
    color: var(--ink);
  }

  .nav-item.is-active,
  .nav-item:hover.is-active,
  .nav:hover .nav-item.is-active {
    color: #141517;
    background: #d2ff3f;
  }

  .nav:hover .nav-item:hover,
  .nav:hover .nav-dd:hover > .nav-item {
    color: var(--ink);
  }

  .nav:hover .nav-item.is-active:hover,
  .nav:hover .nav-dd:hover > .nav-item.is-active {
    color: #141517;
  }

  .nav-lead-item,
  .nav:hover .nav-lead-item,
  .nav:hover .nav-lead-item:hover {
    display: inline-flex;
    margin-top: 0.25rem;
    color: #141517 !important;
    background: #d2ff3f;
  }

  .nav-dd {
    display: flex;
    flex-direction: column;
  }

  .nav-dd-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none !important;
    min-width: 0;
    width: 100%;
    margin: 0.15rem 0 0.25rem;
    padding: 0.25rem;
    box-shadow: none;
    border: 1px solid rgba(20, 21, 23, 0.08);
    background: rgba(244, 239, 228, 0.95);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dd.is-open .nav-dd-menu {
    display: block;
  }

  .nav-dd-menu a {
    padding: 0.7rem 0.9rem;
  }

  .menu-toggle {
    display: grid;
  }

  #wishHeader,
  #cmpHeader,
  .app-lead,
  .app-call,
  .app-phones {
    display: none !important;
  }

  .app-bar {
    gap: 0.45rem;
    padding: 0.35rem 0.4rem 0.35rem 0.7rem;
  }

  .logo img {
    height: 28px;
  }

  .app-actions {
    gap: 0.3rem;
    flex: 0 0 auto;
  }

  .header-utils {
    gap: 0.3rem;
  }

  .app-call span {
    display: none;
  }

  .app-call {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .app-lead span {
    display: none;
  }

  .app-lead {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .logo-chip { display: none; }

  .app-dock {
    display: none !important;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 4.5rem;
  }
  .hero-match {
    justify-self: start;
    width: min(100%, 360px);
  }
  .hero-match-stage { height: 130px; }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 0;
    margin: 0;
    width: auto;
  }

  .hero-inner {
    padding: 60px 0 4.25rem;
    width: calc(100% - 2.5rem);
  }

  .hero-media img {
    object-position: 55% 40%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg,
        rgba(16, 16, 18, 0.88) 0%,
        rgba(22, 22, 24, 0.55) 55%,
        rgba(28, 28, 30, 0.22) 100%),
      linear-gradient(180deg,
        rgba(16, 16, 18, 0.4) 0%,
        transparent 40%,
        rgba(16, 16, 18, 0.7) 100%);
  }

  .cats {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-slide img,
  .hero-grain,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-match,
  .hero-match-scan,
  .hero-match-drop,
  .hero-match-panel::before,
  .hero-scroll,
  .hero-scroll span,
  .hero-controls {
    animation: none;
  }
  .hero-slide {
    transition: none;
  }
}

/* ===== Catalog & product cards ===== */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.crumbs a:hover { color: var(--green); }

.catalog-hero {
  padding: 2.75rem 0 0.5rem;
  background:
    linear-gradient(180deg, rgba(28, 132, 101, 0.06), transparent);
}

.catalog-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.catalog-lead {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.catalog-lead a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.p-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 100%;
}

.p-card:hover {
  border-color: rgba(28, 132, 101, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(28, 36, 52, 0.08);
}

.p-card-media {
  aspect-ratio: 1;
  background: #f0f4f2;
  overflow: hidden;
}

.p-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.p-card:hover .p-card-media img {
  transform: scale(1.04);
}

.p-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.p-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.p-card-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}

h2.p-card-title { font-size: 1rem; }
h3.p-card-title { font-size: 0.92rem; }

.p-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.55rem;
}

.p-card-price {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--green-dark);
}

.p-card-stock {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--mint);
  padding: 0.2rem 0.45rem;
}

/* Product page */
.product-page {
  padding: 1.5rem 0 4rem;
}
.product-page.px {
  padding: 0;
}
.product-hero {
  padding: 0.1rem 0 0.7rem;
}
.product-hero .px-crumbs {
  flex-wrap: wrap;
  max-width: min(100%, 72ch);
}
.product-page .px-light {
  background: #fcfbf8;
  padding: 1.15rem 0 4rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.product-media {
  display: grid;
  gap: 0.75rem;
}

.product-gallery {
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 45%),
    linear-gradient(160deg, #eef6f2, #e3ece7);
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 24px;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 47, 38, 0.08);
}

.product-gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #141517;
  color: #d2ff3f;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  mix-blend-mode: multiply;
}

.product-info-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.product-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.pr-stars {
  color: #d4a017;
  letter-spacing: 0.05em;
}

.product-info h1 {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 0.9rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #141517;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.product-price {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #141517;
  letter-spacing: 0;
}

.product-price-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.product-sku {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(210, 255, 63, 0.28);
  color: #141517;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-stock-pill .dot {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.45);
  animation: hcPulse 1.8s ease-out infinite;
}

.product-desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.product-buy-box {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.5rem;
  margin-bottom: 1.05rem;
}

.product-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(28, 36, 52, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.product-qty button {
  width: 42px;
  height: 48px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
}

.product-qty button:hover {
  background: var(--mint);
  color: var(--green-dark);
}

.product-qty input {
  width: 48px;
  height: 48px;
  border: none;
  border-inline: 1px solid rgba(28, 36, 52, 0.08);
  text-align: center;
  font: inherit;
  font-weight: 600;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: 0;
}

.product-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: #d2ff3f;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(210, 255, 63, 0.28);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.product-cart-btn:hover {
  transform: translateY(-1px);
  background: #c6f52a;
}

.product-cart-btn.is-added {
  background: #141517;
  color: #d2ff3f;
}

.product-oneclick {
  height: 48px;
  padding: 0 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(20, 21, 23, 0.12);
  background: #fff;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.product-oneclick:hover {
  background: #141517;
  border-color: #141517;
  color: #d2ff3f;
  transform: translateY(-1px);
}

.product-icon-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(28, 36, 52, 0.1);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.product-icon-btn:hover,
.product-icon-btn.is-active {
  color: #c0392b;
  border-color: rgba(192, 57, 43, 0.25);
  background: #fff5f5;
}

.product-icon-btn.is-active svg path {
  fill: currentColor;
}

.product-contact-row {
  display: none;
}

.product-connect {
  margin: 0 0 1.1rem;
}
.product-connect-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d8a12;
}
.product-connect-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
}
.p-connect {
  appearance: none;
  display: grid;
  justify-items: center;
  gap: 0.38rem;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.2rem 0.5rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 21, 23, 0.06);
  background: #fff;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20, 21, 23, 0.04);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.p-connect:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 21, 23, 0.08);
  border-color: rgba(20, 21, 23, 0.12);
}
.p-connect-ico {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
}
.p-connect.is-phone .p-connect-ico { background: #141517; color: #d2ff3f; }
.p-connect.is-viber .p-connect-ico,
.p-connect.is-tg .p-connect-ico,
.p-connect.is-wa .p-connect-ico { background: transparent; }
.p-connect.is-mail .p-connect-ico { background: #25272b; }
.p-connect.is-lead .p-connect-ico { background: #d2ff3f; color: #141517; }
.p-connect-ico--brand {
  padding: 0;
  overflow: hidden;
  background: transparent !important;
}
.p-connect-ico--brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(28, 36, 52, 0.1);
  background: #fff;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.product-contact-btn:hover {
  border-color: rgba(28, 132, 101, 0.3);
  background: var(--mint);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.product-contact-btn.is-phone {
  background: linear-gradient(135deg, #1c8465, #145240);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(28, 132, 101, 0.22);
}

.product-contact-btn.is-phone:hover {
  color: #fff;
  filter: brightness(1.05);
}

.product-ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.product-ship-card {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.06);
  box-shadow: 0 8px 18px rgba(20, 21, 23, 0.04);
}

.product-tab.is-active {
  color: #141517;
  background: #d2ff3f;
  box-shadow: none;
}

.product-ship-card strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
}

.product-ship-card span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.product-ext-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(28, 132, 101, 0.35);
}

.btn-outline:hover {
  border-color: var(--green);
  background: var(--mint);
}

.product-tabs-section {
  margin: 0 0 2.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28, 36, 52, 0.08);
  box-shadow: 0 14px 34px rgba(13, 47, 38, 0.05);
  overflow: hidden;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.55rem;
  background: #f4f7f5;
  border-bottom: 1px solid rgba(28, 36, 52, 0.06);
}

.product-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.product-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.product-tab.is-active {
  color: #141517;
  background: #d2ff3f;
  box-shadow: none;
}

.product-tab-panels {
  padding: 1.35rem 1.25rem 1.5rem;
}

.product-tab-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.product-tab-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.product-bullets li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
}

.product-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
}

.product-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.product-delivery-grid > div {
  padding: 1rem;
  border-radius: 14px;
  background: #f7faf8;
  border: 1px solid rgba(28, 36, 52, 0.06);
}

.product-delivery-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.product-delivery-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.pr-reviews {
  display: grid;
  gap: 0.75rem;
}

.pr-review {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: #f7faf8;
  border: 1px solid rgba(28, 36, 52, 0.06);
}

.pr-review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.pr-review-top strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.pr-rating {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
}

.pr-review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .product-delivery-grid {
    grid-template-columns: 1fr;
  }
  .product-ship-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .product-buy-box {
    grid-template-columns: 1fr 1fr auto;
  }
  .product-qty {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }
  .product-qty input {
    flex: 1;
  }
  .product-connect-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.related h2 {
  font-size: 1.35rem;
  margin: 0;
}

.related {
  margin-top: 2.75rem;
}

.recently-viewed {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
}

.prod-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.prod-carousel-nav {
  display: flex;
  gap: 0.4rem;
}

.prod-carousel-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(28, 36, 52, 0.1);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, opacity 0.15s;
}

.prod-carousel-btn:hover:not(:disabled) {
  color: var(--green);
  border-color: rgba(28, 132, 101, 0.3);
  background: var(--mint);
  transform: translateY(-1px);
}

.prod-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.prod-carousel {
  position: relative;
}

.prod-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.15rem 0.85rem;
  margin: 0 -0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(28, 132, 101, 0.35) transparent;
}

.prod-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.prod-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(28, 132, 101, 0.35);
  border-radius: 999px;
}

.prod-carousel-track .carousel-card,
.prod-carousel-track .p-card {
  scroll-snap-align: start;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 36, 52, 0.08);
  box-shadow: 0 10px 24px rgba(13, 47, 38, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prod-carousel-track .carousel-card:hover,
.prod-carousel-track .p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13, 47, 38, 0.1);
}

@media (min-width: 720px) {
  .prod-carousel-track {
    grid-auto-columns: calc((100% - 3rem) / 4);
  }
}

@media (max-width: 719px) and (min-width: 520px) {
  .prod-carousel-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 519px) {
  .prod-carousel-track {
    grid-auto-columns: minmax(78%, 1fr);
  }
}

@media (max-width: 960px) {
  .p-grid,
  .p-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .p-grid,
  .p-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
}

/* ===== Catalog filter sidebar ===== */
.catalog-section { padding-top: 1.5rem; }

.catalog-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.btn-filter-mobile {
  display: none;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.catalog-promo {
  display: block;
  margin-top: 1.35rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(28, 132, 101, 0.18);
  box-shadow: 0 18px 40px rgba(13, 47, 38, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(13, 47, 38, 0.16);
}

.catalog-promo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1024 / 236;
  object-fit: cover;
}

.filter-sidebar {
  position: relative;
  top: auto;
  align-self: start;
  background: var(--white);
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 20px;
  padding: 1.2rem 1.05rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  max-height: none;
  overflow: visible;
  box-shadow: 0 14px 34px rgba(13, 47, 38, 0.06);
}

.filter-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-sidebar-head h2,
.filter-sidebar-head .filter-side-h {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0;
}

.filter-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.filter-divider {
  height: 1px;
  background: rgba(28, 36, 52, 0.08);
  margin: 0.15rem 0;
}

.filter-block-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: default;
}

.cat-nav {
  display: grid;
  gap: 0.3rem;
}

.cat-nav-item {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.cat-nav-item:hover {
  background: rgba(28, 132, 101, 0.06);
}

.cat-nav-item.is-active {
  color: #fff;
  background: linear-gradient(135deg, #2fa37d, #145240);
  box-shadow: 0 10px 22px rgba(28, 132, 101, 0.22);
}

.cat-nav-item.is-active .f-count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cat-nav-more {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px dashed rgba(28, 36, 52, 0.12);
}

.cat-nav-link {
  display: block;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.cat-nav-link:hover {
  color: var(--green);
  background: rgba(28, 132, 101, 0.06);
}

.f-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.f-search-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 132, 101, 0.12);
}

.f-search-icon {
  color: var(--green);
  font-size: 1rem;
}

.f-search-wrap input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font: inherit;
  font-size: 0.92rem;
}

.f-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.f-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.f-check:hover { background: var(--mint); }

.f-check input { position: absolute; opacity: 0; pointer-events: none; }

.f-box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid rgba(28, 132, 101, 0.45);
  background: #fff;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.f-check input:checked + .f-box {
  background: var(--green);
  border-color: var(--green);
}

.f-check input:checked + .f-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.f-label { font-size: 0.9rem; font-weight: 600; }
.f-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(28, 36, 52, 0.06);
  border-radius: 999px;
  min-width: 1.5rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  padding: 0 0.35rem;
}

.f-price-readout {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .35rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: 0;
}
.f-price-readout b {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
}
.f-price-readout span { color: var(--muted); }
.f-range {
  position: relative;
  height: 28px;
  margin: .1rem 0 .9rem;
}
.f-range-rail {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #e7e6e1;
}
.f-range-rail i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #d2ff3f;
}
.f-range input[type='range'] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}
.f-range input[type='range']::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
  border: none;
}
.f-range input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border-radius: 50%;
  background: #141517;
  border: 3px solid #d2ff3f;
  box-shadow: 0 6px 16px rgba(20, 21, 23, .22);
  cursor: grab;
}
.f-range input[type='range']::-moz-range-track {
  height: 6px;
  background: transparent;
  border: none;
}
.f-range input[type='range']::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #141517;
  border: 3px solid #d2ff3f;
  box-shadow: 0 6px 16px rgba(20, 21, 23, .22);
  cursor: grab;
}
.f-range input[type='range']:focus {
  outline: none;
}
.f-range input[type='range']:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(210, 255, 63, .35);
}

.f-price-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.45rem;
  align-items: end;
  margin-bottom: 0.7rem;
}

.f-price-inputs label {
  display: grid;
  gap: 0.3rem;
}

.f-price-inputs label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.f-price-inputs input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 0.7rem 0.75rem;
  font: inherit;
  font-weight: 600;
}

.f-price-inputs input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 132, 101, 0.12);
  background: #fff;
}

.f-price-sep {
  color: var(--muted);
  padding-bottom: 0.75rem;
}

.f-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.f-chip {
  appearance: none;
  border: 1px solid rgba(28, 36, 52, 0.1);
  background: #f4f7f5;
  color: var(--muted);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.f-chip:hover {
  color: var(--ink);
  border-color: rgba(28, 132, 101, 0.25);
}

.f-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, #2fa37d, #145240);
  border-color: transparent;
}

.f-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 0.7rem 0.75rem;
  font: inherit;
  font-weight: 600;
}

.btn-reset-filters {
  width: 100%;
  border: 1px solid rgba(28, 132, 101, 0.2);
  border-radius: 12px;
  background: rgba(28, 132, 101, 0.06);
  color: var(--green-dark);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.btn-reset-filters:hover {
  background: rgba(28, 132, 101, 0.12);
  transform: translateY(-1px);
}

.filter-side-cta {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 36, 52, 0.08);
}
.filter-side-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem 0.55rem 0.55rem;
  border-radius: 16px;
  text-decoration: none;
  color: #141517;
  background: #f4efe4;
  border: 1px solid rgba(20, 21, 23, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.filter-side-phone:hover {
  transform: translateY(-1px);
  border-color: #d2ff3f;
  background: #fff;
}
.filter-side-phone-ico {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #d2ff3f;
  color: #141517;
}
.filter-side-phone-txt {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}
.filter-side-phone-txt strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  color: #141517;
}
.filter-side-phone-txt small {
  color: #6a6d70;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.filter-side-lead {
  width: 100%;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.catalog-count {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.catalog-count strong {
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: 0;
}

.catalog-active {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  background: var(--green-deep);
  color: #fff;
  border: none;
  cursor: pointer;
}

.active-chip span { opacity: 0.7; }

.p-grid-catalog {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.p-card[hidden] { display: none !important; }

/* ===== Modern catalog cards ===== */
.p-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
  box-shadow: 0 10px 26px rgba(20, 21, 23, 0.05);
}

.p-card:hover {
  border-color: rgba(210, 255, 63, 0.95);
  box-shadow: 0 18px 40px rgba(20, 21, 23, 0.1);
}

.p-card-media {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 45%),
    linear-gradient(160deg, #eef6f2, #e3ece7);
}

.p-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.p-card-media img {
  object-fit: contain;
  padding: 12% 14% 16%;
  mix-blend-mode: multiply;
}

.p-card-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pc-badge {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  background: var(--green-deep);
  color: #fff;
}

.pc-badge:nth-child(1):not(:only-child),
.p-card-badges .pc-badge[data-type="new"],
.pc-badge {
  background: var(--green-deep);
}

.p-card-tools {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.p-card:hover .p-card-tools,
.p-card:focus-within .p-card-tools {
  opacity: 1;
  transform: none;
}

.pc-tool {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.pc-tool:hover {
  color: var(--green);
  border-color: rgba(28,132,101,0.35);
  transform: scale(1.05);
}

.pc-tool.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.pc-tool.is-active[data-action="wish"] svg path {
  fill: currentColor;
}

.p-card-body {
  padding: 0.85rem 0.9rem 0.95rem;
  gap: 0.4rem;
}

.p-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.p-card-brand {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.p-card-title {
  font-size: 0.86rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}

.p-card-title a {
  color: inherit;
  text-decoration: none;
}

.p-card-title a:hover {
  color: var(--green);
}

h2.p-card-title { font-size: 0.86rem; }

.p-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pc-stars {
  color: #d4a017;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.pc-rating-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.p-card-meta {
  padding-top: 0.35rem;
  margin-top: 0.15rem;
}

.p-card-price {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.p-card-price small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.15rem;
}

.p-card-stock {
  font-size: 0.68rem;
}

.p-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 42px;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.45rem;
  align-items: stretch;
}

.pc-buy {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.4rem;
  border: none;
  border-radius: 12px;
  background: #d2ff3f;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.pc-buy:hover {
  background: #c6f52a;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(180, 210, 40, 0.35);
}

.pc-cart,
.pc-more {
  width: 42px;
  height: auto;
  min-height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  align-self: stretch;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.pc-cart {
  border: none;
  background: #141517;
  color: #d2ff3f;
}

.pc-cart:hover,
.pc-cart.is-added {
  background: #25272b;
  transform: translateY(-1px);
}

.pc-more {
  border: 1px solid rgba(20, 21, 23, 0.12);
  color: #141517;
  background: #fff;
}

.pc-more:hover {
  border-color: #141517;
  background: #141517;
  color: #d2ff3f;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 100;
  background: var(--green-deep);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  max-width: min(90vw, 420px);
  text-align: center;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1200px) {
  .p-grid-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .p-card-tools {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  :root { --header-h: calc(1.2rem + 0.7rem + 40px); }
}

@media (max-width: 560px) {
  :root { --header-h: calc(1.2rem + 0.7rem + 36px); }
  .app-icon-btn, .hu-btn.app-icon-btn { width: 36px; height: 36px; border-radius: 12px; }
  .app-call { width: 36px; height: 36px; }
  .menu-toggle { width: 36px; height: 36px; border-radius: 12px; }
}

.catalog-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border: 1px dashed var(--line);
}

.catalog-empty strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.4rem;
}

.catalog-empty p { color: var(--muted); margin: 0 0 1.25rem; }

.filter-backdrop {
  display: none;
}

@media (min-width: 1100px) {
  .catalog-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .btn-filter-mobile { display: inline-flex; }

  body.filters-open { overflow: hidden; }

  body.px-page .filter-sidebar {
    border-radius: 28px 28px 0 0;
    background: #f4efe4;
    padding: 0 1rem 1.4rem;
    box-shadow: 0 -18px 50px rgba(20, 21, 23, 0.22);
    border: none;
  }
  body.px-page .filter-sidebar-head h2 {
    color: #141517;
    letter-spacing: -0.04em;
  }

  .filter-sidebar {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: min(88vh, 720px);
    overflow: auto;
    z-index: 80;
    transform: translateY(108%);
    transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
    border: none;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -18px 50px rgba(20, 21, 23, 0.22);
    padding: 0 1rem 1.4rem;
    gap: 0.55rem;
    background: #f4efe4;
  }

  .filter-sidebar::before {
    content: '';
    display: block;
    width: 42px;
    height: 4px;
    margin: 0.7rem auto 0.35rem;
    border-radius: 99px;
    background: rgba(20, 21, 23, 0.16);
    flex: 0 0 auto;
  }

  .filter-sidebar.is-open { transform: translateY(0); }

  .filter-sidebar-head {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: 0 -0.25rem 0.35rem;
    padding: 0.35rem 0.35rem 0.75rem;
    background: #f4efe4;
  }

  .filter-sidebar-head h2 {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
    text-transform: none;
    color: #141517;
  }

  .filter-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #141517;
    color: #d2ff3f;
    font-size: 1.4rem;
  }

  .filter-divider { display: none; }

  .filter-block {
    background: #fff;
    border-radius: 18px;
    padding: 0 0.75rem;
  }

  .filter-block-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 0.15rem;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    letter-spacing: -0.03em;
    text-transform: none;
    color: #141517;
  }

  .filter-block-title::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #141517;
    border-bottom: 2px solid #141517;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
    flex: 0 0 auto;
  }

  .filter-block.is-open > .filter-block-title {
    padding-bottom: 0.45rem;
  }

  .filter-block.is-open > .filter-block-title::after {
    transform: rotate(-135deg);
  }

  .filter-block:not(.is-open) > :not(.filter-block-title) {
    display: none !important;
  }

  .filter-block.is-open {
    padding-bottom: 0.85rem;
  }

  .btn-reset-filters {
    margin-top: 0.4rem;
  }

  .filter-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 21, 23, 0.48);
    z-index: 70;
    backdrop-filter: blur(4px);
  }

  .p-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .p-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .p-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .p-card-actions {
    grid-template-columns: minmax(0, 1fr) 38px 38px;
    gap: 0.3rem;
  }
  .pc-cart,
  .pc-more {
    width: 38px;
    min-height: 38px;
    border-radius: 11px;
  }
  .p-card-body {
    padding: 0.65rem 0.55rem 0.7rem;
  }
  .p-card-title,
  h2.p-card-title,
  h3.p-card-title {
    font-size: 0.78rem;
    line-height: 1.25;
  }
  .p-card-price {
    font-size: 0.92rem;
  }
  .pc-buy {
    font-size: 0.6rem;
    padding: 0.35rem 0.28rem;
    border-radius: 11px;
  }
}

@media (max-width: 900px) {
  .pc-buy-more { display: none; }
}

.pc-badge-hit { background: var(--green-deep); }
.pc-badge-new { background: #1c6f84; }
.pc-badge-deal { background: #b45309; }

/* ===== Contacts page ===== */
.contacts-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7.5rem 0 3.5rem;
  isolation: isolate;
}
.contacts-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(28, 132, 101, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(47, 163, 125, 0.18), transparent 50%),
    linear-gradient(155deg, #0e1114 0%, #15191d 40%, #1a1f24 100%);
}
.contacts-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), transparent 35%, rgba(0,0,0,.35));
  pointer-events: none;
}
.crumbs-light { color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.crumbs-light a { color: #9ef0d0; }
.contacts-kicker {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #b8f5df;
}
.contacts-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 .85rem;
}
.contacts-lead {
  max-width: 46ch;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}
.contacts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.contacts-body { padding-top: 2.5rem; }
.contacts-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.5rem;
  align-items: start;
}
.contacts-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.c-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.2rem 1.15rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20,40,34,.05);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
a.c-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28,132,101,.35);
  box-shadow: 0 16px 36px rgba(20,40,34,.1);
}
.c-card-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: .35rem;
  background: var(--mint);
  color: var(--green-dark);
}
.c-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-card strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.3;
}
.c-card-hint {
  font-size: .82rem;
  color: var(--muted);
}
.contacts-aside {
  display: grid;
  gap: 1rem;
}
.contacts-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 12px 30px rgba(20,40,34,.06);
}
.contacts-form-card h2 {
  font-size: 1.25rem;
  margin: 0 0 .45rem;
}
.contacts-form-card > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: .92rem;
}
.contacts-form-card a { color: var(--green); font-weight: 600; }
.c-form {
  display: grid;
  gap: .75rem;
}
.c-form label {
  display: grid;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-form input,
.c-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: .75rem .85rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.c-form input:focus,
.c-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28,132,101,.12);
  background: #fff;
}
.c-form-note {
  margin: .25rem 0 0;
  padding: .75rem .85rem;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 600;
}
.contacts-map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(14,20,18,.72), rgba(14,20,18,.45)),
    linear-gradient(160deg, #1c8465, #0d2f26);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
}
.contacts-map-inner {
  padding: 1.5rem 1.35rem;
  display: grid;
  gap: .55rem;
  align-content: center;
  min-height: 220px;
}
.contacts-map-inner strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
}
.contacts-map-inner p {
  margin: 0;
  color: rgba(255,255,255,.78);
}
.contacts-help { padding-top: 0; }
.contacts-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.help-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
}
.help-item h3 {
  font-size: .98rem;
  margin: 0 0 .4rem;
}
.help-item p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .contacts-layout,
  .contacts-cards,
  .contacts-help-grid {
    grid-template-columns: 1fr;
  }
  .contacts-hero { padding-top: 6.5rem; }
}

/* Lead request modal */
body.lead-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 22, 18, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1);
}

.lead-modal.is-open .lead-dialog {
  transform: none;
}

.lead-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 12px;
  background: rgba(244, 247, 245, 0.95);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lead-close:hover {
  background: var(--mint);
  color: var(--green-dark);
}

.lead-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 520px;
}

.lead-aside {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.6rem;
  color: #fff;
  background:
    linear-gradient(155deg, #0d2f26 0%, #1c8465 52%, #145240 100%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-aside-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 224, 0, 0.35), transparent 70%);
  pointer-events: none;
}

.lead-kicker {
  position: relative;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.lead-aside h2,
.lead-aside-h {
  position: relative;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.lead-aside-text {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lead-perks {
  position: relative;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lead-perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.lead-perks span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--lime);
  flex-shrink: 0;
}

.lead-aside-contacts {
  position: relative;
  margin-top: auto;
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
}

.lead-aside-contacts a {
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.lead-aside-contacts a:hover {
  color: var(--lime);
}

.lead-main {
  padding: 2rem 1.6rem 1.5rem;
}

.lead-form {
  display: grid;
  gap: 0.85rem;
}

.lead-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.lead-chip {
  appearance: none;
  border: 1px solid rgba(28, 36, 52, 0.1);
  background: #f4f7f5;
  color: var(--muted);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.lead-chip:hover {
  color: var(--ink);
  border-color: rgba(28, 132, 101, 0.25);
}

.lead-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, #2fa37d, #145240);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(28, 132, 101, 0.22);
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lead-field {
  display: grid;
  gap: 0.35rem;
}

.lead-field > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-field input,
.lead-field textarea {
  width: 100%;
  border: 1px solid rgba(28, 36, 52, 0.12);
  border-radius: 14px;
  background: #f8faf9;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lead-field input:focus,
.lead-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(28, 132, 101, 0.45);
  box-shadow: 0 0 0 4px rgba(28, 132, 101, 0.12);
}

.lead-submit {
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #10241c;
  background: linear-gradient(135deg, #c8ef2a, #b8e000);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(184, 224, 0, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}

.lead-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(184, 224, 0, 0.38);
}

.lead-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.lead-success {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 360px;
  padding: 1rem 0.5rem;
}

.lead-success[hidden] {
  display: none !important;
}

.lead-success-ico {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--green-dark);
  background: linear-gradient(145deg, rgba(184, 224, 0, 0.35), rgba(28, 132, 101, 0.12));
  animation: leadPop 0.45s ease;
}

@keyframes leadPop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lead-success h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.4rem;
}

.lead-success p {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
}

.lead-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 820px) {
  .lead-layout {
    grid-template-columns: 1fr;
  }
  .lead-aside {
    min-height: auto;
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .lead-close {
    background: rgba(244, 247, 245, 0.95);
    color: var(--ink);
  }
  .lead-row {
    grid-template-columns: 1fr;
  }
  .lead-main {
    padding: 1.35rem 1.15rem 1.25rem;
  }
}

@media (max-width: 720px) {
  .app-lead span {
    display: none;
  }
  .app-lead {
    width: 40px;
    padding: 0;
    justify-content: center;
  }
}

/* Floating contact FAB */
.contact-fab {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.contact-fab-toggle {
  position: relative;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(145deg, #2fa37d, #145240);
  box-shadow: 0 14px 32px rgba(20, 82, 64, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  z-index: 2;
}

.contact-fab-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(20, 82, 64, 0.42);
  filter: brightness(1.05);
}

.contact-fab.is-open .contact-fab-toggle {
  transform: rotate(0deg);
  background: linear-gradient(145deg, #145240, #0f3d30);
}

.contact-fab-toggle-ico {
  display: grid;
  place-items: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-fab-toggle-ico.close {
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}

.contact-fab.is-open .contact-fab-toggle-ico.open {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.contact-fab.is-open .contact-fab-toggle-ico.close {
  opacity: 1;
  transform: none;
}

.contact-fab-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.75rem);
  display: flex;
  flex-direction: column-reverse;
  gap: 0.45rem;
  min-width: 252px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transform-origin: bottom left;
  pointer-events: none;
}

.contact-fab-panel[hidden] {
  display: none !important;
}

.contact-fab-panel.is-visible {
  pointer-events: auto;
}

.contact-fab-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 0.55rem;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(28, 132, 101, 0.14);
  box-shadow: 0 12px 28px rgba(13, 47, 38, 0.14);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 0.28s cubic-bezier(.2,.8,.2,1),
    transform 0.28s cubic-bezier(.2,.8,.2,1),
    background 0.15s ease;
  transition-delay: 0s;
}

.contact-fab-panel.is-visible .contact-fab-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(var(--i, 0) * 45ms);
}

.contact-fab-item:hover {
  background: #fff;
  transform: translateY(-2px) scale(1.01);
}

.contact-fab-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
}

.contact-fab-ico.phone { background: linear-gradient(145deg, #2fa37d, #145240); }
.contact-fab-ico.phone2 { background: linear-gradient(145deg, #3d9b78, #1c8465); }
.contact-fab-ico.viber { background: linear-gradient(145deg, #8f5db7, #6f3f96); }
.contact-fab-ico.tg { background: linear-gradient(145deg, #3aa0d9, #1d7fb3); }
.contact-fab-ico.mail { background: linear-gradient(145deg, #5b6b7c, #3d4a57); }
.contact-fab-ico.lead { background: linear-gradient(145deg, #c8ef2a, #9bc400); color: #10241c; }
.contact-fab-ico.brand {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.contact-fab-ico.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-fab-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.contact-fab-text strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-fab-text small {
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-fab-lead {
  border-top: none;
  margin-top: 0;
  padding-top: 0.55rem;
  border-radius: 16px;
}

@media (max-width: 960px) {
  .contact-fab {
    left: 0.85rem;
    bottom: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab-panel,
  .contact-fab-toggle,
  .contact-fab-toggle-ico,
  .contact-fab-item {
    transition: none !important;
  }
  .contact-fab-item {
    opacity: 1;
    transform: none;
  }
}

/* SEO landing pages */
.seo-page { padding-bottom: 2rem; }
.seo-hero {
  padding: 7rem 0 2.5rem;
  background:
    linear-gradient(135deg, rgba(28,132,101,.08), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.seo-hero-service {
  background:
    linear-gradient(145deg, #0a241e 0%, #0d2f26 50%, #145240 100%);
  color: #fff;
  border-bottom: none;
}
.seo-hero-service .crumbs a { color: rgba(255,255,255,.75); }
.seo-hero-service .crumbs span { color: rgba(255,255,255,.45); }
.seo-hero-service .seo-lead { color: rgba(255,255,255,.8); }
.seo-hero-service .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.seo-hero h1 {
  margin: .4rem 0 .85rem;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  max-width: 18ch;
}
.seo-lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
}
.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.seo-content {
  max-width: 72ch;
  margin-bottom: 1.75rem;
  color: var(--muted);
  line-height: 1.65;
}
.seo-content strong { color: var(--ink); }
.seo-grid { margin-bottom: 1.75rem; }
.seo-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 10px 24px rgba(13,47,38,.05);
}
.seo-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(28,132,101,.14);
}
.seo-cta-band strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  margin-bottom: .2rem;
}
.seo-cta-band span { color: var(--muted); font-size: .92rem; }
.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.seo-service-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 12px 28px rgba(13,47,38,.05);
}
.seo-service-card h2 {
  font-size: 1.1rem;
  margin: 0 0 .75rem;
}
.seo-service-card ol, .seo-service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: .4rem;
}
.seo-service-card p { margin: 0 0 .65rem; color: var(--muted); }
.seo-hero-service .seo-service-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
@media (max-width: 900px) {
  .seo-service-grid { grid-template-columns: 1fr; }
  .seo-hero { padding-top: 6rem; }
}

/* Full catalog shop */
.nav-dd-mega { position: static; }
.mega-menu {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1080px, calc(100vw - 2rem));
  min-width: min(1080px, calc(100vw - 2rem));
  top: calc(100% + 0.35rem);
  padding: 1rem 1.1rem 1.15rem;
  overflow: visible;
}
.nav-dd-mega .mega-menu::before {
  top: -2rem;
  height: 2rem;
}
.mega-head { margin-bottom: 0.75rem; }
.mega-all {
  display: inline-flex;
  font-weight: 700;
  color: #5c7410 !important;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  max-height: min(62vh, 520px);
  overflow: auto;
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.mega-col a {
  padding: 0.28rem 0.4rem !important;
  font-size: 0.82rem;
  color: var(--muted);
}
.mega-root {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
}
.mega-root img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--mint);
}
.mega-root strong { display: block; font-size: 0.86rem; }
.mega-root small { color: var(--muted); font-weight: 500; }
.mega-more { color: var(--green) !important; font-weight: 600; }

.cat-tree-wrap { font-size: 0.88rem; }
.cat-tree-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  font-weight: 800;
  margin-bottom: 0.35rem;
  background: #f4efe4;
}
.cat-tree-all small {
  font-weight: 700;
  color: #6a6d70;
}
.cat-tree-all.is-active,
.cat-tree-item.is-active > .cat-tree-row > a {
  background: var(--mint);
  color: var(--green-dark);
}
.cat-tree { list-style: none; margin: 0; padding: 0; }
.cat-tree .cat-tree {
  display: none;
  margin: 0.1rem 0 0.4rem 0.55rem;
  padding: 0.15rem 0 0.1rem 0.7rem;
  border-left: 2px solid rgba(20, 21, 23, 0.12);
}
.cat-tree-item.is-open > .cat-tree { display: block; }
.cat-tree-item {
  position: relative;
  margin-bottom: 0.15rem;
}
.cat-tree-row {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.cat-tree-item > .cat-tree-row > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.68rem 0.75rem 0.68rem 0.85rem;
  border-radius: 14px;
  color: #141517;
}
.cat-tree-item > .cat-tree-row > a:hover {
  background: rgba(210, 255, 63, 0.22);
}
.cat-tree-item > .cat-tree-row > a span {
  min-width: 0;
}
.cat-tree-item > .cat-tree-row > a small {
  color: #6a6d70;
  font-size: 0.72rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.cat-tree-tog {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 11px;
  background: #f4efe4;
  cursor: pointer;
  align-self: center;
}
.cat-tree-tog::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #141517;
  border-bottom: 2px solid #141517;
  transform: rotate(45deg);
  margin: 11px auto 0;
  transition: transform 0.18s ease;
}
.cat-tree-item.is-open > .cat-tree-row > .cat-tree-tog {
  background: #141517;
}
.cat-tree-item.is-open > .cat-tree-row > .cat-tree-tog::before {
  border-color: #d2ff3f;
  transform: rotate(-135deg);
  margin-top: 14px;
}
.cat-tree .cat-tree .cat-tree-row > a {
  padding: 0.42rem 0.5rem 0.42rem 0.1rem;
  border-radius: 10px;
  font-size: 0.92em;
  font-weight: 600;
  color: #3a3d42;
}
.cat-tree .cat-tree .cat-tree-row > a span::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 1px;
  margin-right: 0.4rem;
  background: #8b9096;
  vertical-align: middle;
  transform: translateY(-0.12em);
}

.catalog-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.pager-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.pager-btn.is-active,
.pager-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.catalog-loading, .catalog-empty, .cart-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

.home-cat-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.home-cat-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(13,47,38,.05);
  min-height: 128px;
  transition: transform .18s, box-shadow .18s;
}
.home-cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13,47,38,.1);
}
.home-cat-tile img, .home-cat-ph {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--mint);
}
.home-cat-tile strong { font-size: 0.95rem; }
.home-cat-tile small { color: var(--muted); }

.cart-drawer { position: fixed; inset: 0; z-index: 80; }
.cart-drawer[hidden] { display: none !important; }
.cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 20, 18, .45);
  opacity: 0;
  transition: opacity .2s;
}
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: #fff;
  color: #141517;
  color-scheme: light;
  display: flex;
  flex-direction: column;
  transform: translateX(24px);
  opacity: 0;
  transition: .22s ease;
  box-shadow: -18px 0 40px rgba(13,47,38,.18);
}
.cart-panel,
.cart-panel h2,
.cart-panel h3,
.cart-panel a,
.cart-panel strong {
  color: #141517;
}
.cart-drawer.is-open .cart-backdrop { opacity: 1; }
.cart-drawer.is-open .cart-panel { transform: none; opacity: 1; }
.cart-head, .cart-foot { padding: 1rem 1.15rem; border-bottom: 1px solid #e4e7ec; }
.cart-foot { border-bottom: 0; border-top: 1px solid #e4e7ec; display: grid; gap: 0.65rem; }
.cart-foot[hidden] { display: none !important; }
.cart-head { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.cart-head h2,
.cart-head p {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.cart-close {
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #141517;
}
.cart-body,
.cart-checkout,
.cart-done {
  flex: 1;
  overflow: auto;
  padding: 0.75rem 1.15rem 1.15rem;
}
.cart-body[hidden],
.cart-checkout[hidden],
.cart-done[hidden] { display: none !important; }
.cart-empty { margin: 1rem 0; color: #3d4654; }
.cart-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eceff2;
}
.cart-img img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; background: #f4efe4; }
.cart-info { display: grid; gap: 0.2rem; font-size: 0.88rem; min-width: 0; }
.cart-info a {
  font-weight: 650;
  text-decoration: none;
  line-height: 1.3;
}
.cart-info a:hover { color: #1a6b4a; }
.cart-meta { color: #3d4654; font-size: 0.8rem; }
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d8dde3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.cart-qty button {
  width: 28px;
  height: 32px;
  border: 0;
  background: #f6f7f8;
  color: #141517;
  font-size: 1.05rem;
  cursor: pointer;
}
.cart-qty button:hover { background: #eef6f2; }
.cart-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0;
  color: #141517;
}
.cart-del {
  border: 0;
  background: none;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #3d4654;
  width: 28px;
}
.cart-del:hover { color: #b42318; }
.cart-total {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: #141517;
}
.cart-note { margin: 0; font-size: 0.8rem; color: #3d4654; }
.cart-lead {
  background: var(--green);
  color: #fff !important;
  width: 100%;
  justify-content: center;
}
.cart-lead:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cart-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 0.85rem;
  cursor: pointer;
  color: #1a6b4a;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 650;
  font-size: 0.88rem;
}
.cart-checkout-lead {
  margin: 0 0 0.85rem;
  color: #3d4654;
  font-size: 0.88rem;
  line-height: 1.45;
}
.cart-checkout-sum {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: #f6f7f4;
  display: grid;
  gap: 0.35rem;
}
.cart-checkout-sum li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #3d4654;
}
.cart-checkout-sum li.is-total {
  padding-top: 0.35rem;
  border-top: 1px solid #e4e7ec;
  color: #141517;
  font-weight: 700;
}
.cart-form { display: grid; gap: 0.7rem; }
.cart-field { display: grid; gap: 0.28rem; }
.cart-field > span {
  font-size: 0.78rem;
  font-weight: 650;
  color: #3d4654;
}
.cart-field input,
.cart-field textarea {
  width: 100%;
  border: 1px solid #d8dde3;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: #141517;
  background: #fff;
}
.cart-field input:focus,
.cart-field textarea:focus {
  outline: 2px solid #d2ff3f;
  border-color: #141517;
}
.cart-done {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  text-align: center;
  padding-top: 1.5rem;
}
.cart-done h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.4rem;
}
.cart-done p {
  margin: 0;
  color: #3d4654;
  line-height: 1.5;
}
.cart-done-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d2ff3f;
  color: #141517;
}
@media (max-width: 400px) {
  .cart-row {
    grid-template-columns: 52px 1fr auto;
    grid-template-areas:
      "img info del"
      "img qty del";
  }
  .cart-img { grid-area: img; }
  .cart-info { grid-area: info; }
  .cart-qty { grid-area: qty; justify-self: start; }
  .cart-del { grid-area: del; align-self: start; }
}

.product-thumbs { display: flex; gap: 0.45rem; margin-top: 0.75rem; flex-wrap: wrap; }
.product-thumb {
  width: 64px; height: 64px; padding: 0; border-radius: 12px;
  border: 2px solid transparent; overflow: hidden; cursor: pointer; background: #fff;
}
.product-thumb.is-active { border-color: #d2ff3f; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-desc-html { color: var(--muted); line-height: 1.65; }
.product-desc-html p { margin: 0 0 0.75rem; }
.product-variants {
  margin: .85rem 0 1.1rem;
}
.product-variants-label {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6a6d70;
}
.product-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.product-variant {
  min-height: 2.4rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 23, .14);
  background: #fff;
  color: #141517;
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .15s;
}
.product-variant:hover:not(:disabled) {
  border-color: #9aa318;
  transform: translateY(-1px);
}
.product-variant.is-on {
  background: #141517;
  border-color: #141517;
  color: #d2ff3f;
}
.product-variant:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.product-cart-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.cab-variants { margin-top: .4rem; }
.cab-var-head,
.cab-var-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, .8fr) 72px 36px;
  gap: .45rem;
  align-items: center;
}
.cab-var-head {
  margin: .7rem 0 .35rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a6d70;
}
.cab-var-list { display: grid; gap: .45rem; margin-bottom: .7rem; }
.cab-var-row input[type="text"],
.cab-var-row select {
  width: 100%;
  border: 1px solid rgba(20, 21, 23, .12);
  border-radius: 12px;
  padding: .55rem .7rem;
  font: inherit;
  background: #fff;
}
.cab-var-del {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(20, 21, 23, .06);
  color: #141517;
  font-size: 1.2rem;
  cursor: pointer;
}
.cab-var-del:hover { background: rgba(198, 40, 40, .12); color: #c62828; }
@media (max-width: 720px) {
  .cab-var-head { display: none; }
  .cab-var-row {
    grid-template-columns: 1fr 1fr;
    padding: .7rem;
    border-radius: 14px;
    background: rgba(20, 21, 23, .03);
  }
  .cab-var-row input[name="var_label[]"] { grid-column: 1 / -1; }
  .cab-var-del { justify-self: end; }
}
.product-stock-pill.is-out { color: #9a4a12; }
.related-grid { margin-top: 1rem; }

@media (max-width: 1100px) {
  .mega-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-cat-mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .mega-menu { width: 100%; min-width: 0; left: 0; transform: none !important; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .home-cat-mosaic { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mega-grid, .home-cat-mosaic { grid-template-columns: 1fr; }
}

/* Photo lead form */
.lead-modal {
  padding: 0.7rem;
  background: rgba(5, 14, 12, 0.68);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
}
.lead-modal .lead-dialog {
  width: min(960px, 100%);
  max-height: min(88vh, 640px);
  border-radius: 26px;
  overflow: hidden;
  background: #eef3f0;
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lead-modal .lead-close {
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(13, 47, 38, 0.18);
  z-index: 6;
}
.lead-modal .lead-close:hover { background: #fff; color: var(--green-dark); }
.lead-modal .lead-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 0;
  max-height: min(88vh, 640px);
  overflow: hidden;
}
.lead-modal .lead-aside {
  position: relative;
  padding: 0;
  gap: 0;
  background: #081814;
  color: #fff;
  min-height: 100%;
  overflow: hidden;
}
.lead-modal .lead-aside-media { position: absolute; inset: 0; }
.lead-modal .lead-aside-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.15s ease, transform 7s ease;
}
.lead-modal .lead-aside-bg.is-on {
  opacity: 1;
  transform: scale(1);
}
.lead-modal .lead-aside-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 18, 0.22) 0%, rgba(6, 18, 16, 0.42) 38%, rgba(5, 16, 14, 0.94) 100%),
    linear-gradient(90deg, rgba(5, 16, 14, 0.28), transparent 46%);
}
.lead-modal .lead-aside-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem 1.25rem 1.1rem;
}
.lead-modal .lead-aside-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.lead-modal .lead-aside-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}
.lead-modal .lead-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lead-modal .lead-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8e000;
  box-shadow: 0 0 0 4px rgba(184, 224, 0, 0.22);
  animation: leadPulse 1.6s ease infinite;
}
@keyframes leadPulse {
  50% { box-shadow: 0 0 0 7px rgba(184, 224, 0, 0); }
}
.lead-modal .lead-kicker {
  margin: 0.45rem 0 0;
  color: #d6f08a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lead-modal .lead-aside h2,
.lead-modal .lead-aside-h {
  margin: 0;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 14ch;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.lead-modal .lead-aside-text {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.4;
}
.lead-modal .lead-polaroids,
.lead-modal .lead-swatches {
  display: none;
}
.lead-modal .lead-polaroid {
  width: 96px;
  margin: 0;
  padding: 0.34rem 0.34rem 0.55rem;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.25s ease;
}
.lead-modal .lead-polaroid.is-mid { z-index: 2; width: 108px; }
.lead-modal .lead-polaroid img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 7px;
  background: #eee;
}
.lead-modal .lead-polaroid figcaption {
  display: block;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.lead-modal .lead-polaroid:hover { transform: rotate(0deg) translateY(-6px); }
.lead-modal .lead-swatches span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 4px 10px rgba(0,0,0,.22);
}
.lead-modal .lead-aside-foot {
  margin-top: auto;
  display: grid;
  gap: 0.45rem;
}
.lead-modal .lead-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.lead-modal .lead-pills span {
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(184, 224, 0, 0.14);
  border: 1px solid rgba(184, 224, 0, 0.28);
  color: #eaf8b0;
  font-size: 0.7rem;
  font-weight: 700;
}
.lead-modal .lead-aside-phones {
  display: grid;
  gap: 0.2rem;
}
.lead-modal .lead-aside-foot a {
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0;
}
.lead-modal .lead-aside-foot a:hover { color: var(--lime); }
.lead-modal .lead-aside-foot small {
  color: rgba(255,255,255,.62);
  font-size: 0.78rem;
}
.lead-modal .lead-main {
  padding: 1.05rem 1.2rem 1rem;
  overflow: auto;
  background:
    radial-gradient(900px 240px at 100% -10%, rgba(184, 224, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #f7faf8, #eef3f0);
}
.lead-modal .lead-form {
  display: grid;
  gap: 0.52rem;
  padding: 0;
}
.lead-modal .lead-form[hidden] { display: none !important; }
.lead-modal .lead-main-head { margin: 0; }
.lead-modal .lead-form-kicker {
  margin: 0 0 0.12rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.lead-modal .lead-form-title {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.lead-modal .lead-form-lead {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.lead-modal .lead-topics {
  display: none;
}
.lead-modal .lead-chip {
  position: relative;
  display: block;
  height: 92px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #12241e;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(13, 47, 38, 0.08);
  isolation: isolate;
}
.lead-modal .lead-chip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.35s ease, filter 0.25s ease;
  filter: saturate(1.05);
}
.lead-modal .lead-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,18,16,.08) 20%, rgba(6,14,12,.78) 100%);
  z-index: 1;
}
.lead-modal .lead-chip span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.62rem;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  text-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.lead-modal .lead-chip:hover img { transform: scale(1.1); }
.lead-modal .lead-chip.is-active {
  box-shadow: 0 0 0 2px #b8e000, 0 12px 26px rgba(13,47,38,.16);
}
.lead-modal .lead-chip.is-active::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b8e000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2310241c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/12px no-repeat;
}
.lead-modal .lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.lead-modal .lead-field { display: grid; gap: 0.22rem; }
.lead-modal .lead-field > span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}
.lead-modal .lead-field input,
.lead-modal .lead-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(28, 36, 52, 0.08);
  border-radius: 12px;
  padding: 0.62rem 0.85rem;
  font: inherit;
  color: var(--ink);
  box-shadow: 0 6px 14px rgba(13,47,38,.04);
}
.lead-modal .lead-field textarea {
  min-height: 64px;
  resize: vertical;
}
.lead-modal .lead-field input:focus,
.lead-modal .lead-field textarea:focus {
  outline: none;
  border-color: rgba(28, 132, 101, 0.45);
  box-shadow: 0 0 0 4px rgba(28, 132, 101, 0.12);
}
.lead-modal .lead-drop {
  position: relative;
  display: block;
  cursor: pointer;
}
.lead-modal .lead-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.lead-modal .lead-drop-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62px;
  overflow: hidden;
  border-radius: 14px;
  border: 1.5px dashed rgba(184, 224, 0, 0.55);
  background: #10241c;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.lead-modal .lead-drop-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.05);
}
.lead-modal .lead-drop-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  text-align: left;
  color: #fff;
  width: 100%;
}
.lead-modal .lead-drop-text {
  display: grid;
  gap: 0.08rem;
}
.lead-modal .lead-drop-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #10241c;
  background: #b8e000;
  box-shadow: 0 8px 16px rgba(184, 224, 0, 0.3);
}
.lead-modal .lead-drop-frame strong { font-size: 0.86rem; }
.lead-modal .lead-drop-frame small { color: rgba(255,255,255,.78); font-size: 0.72rem; }
.lead-modal .lead-drop.is-over .lead-drop-frame,
.lead-modal .lead-drop:hover .lead-drop-frame {
  transform: translateY(-1px);
  border-color: #b8e000;
  box-shadow: 0 16px 32px rgba(13,47,38,.16);
}
.lead-modal .lead-previews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.lead-modal .lead-previews figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(13,47,38,.14);
}
.lead-modal .lead-previews img { width: 100%; height: 100%; object-fit: cover; }
.lead-modal .lead-preview-del {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 36, 28, 0.82);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.lead-modal .lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  border-radius: 14px;
  padding: 0.78rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.lead-modal .lead-note { margin: 0; text-align: center; }
.lead-modal .lead-success {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1rem 0.5rem;
}
.lead-modal .lead-success[hidden] { display: none !important; }
.lead-modal .lead-success-shot {
  position: relative;
  width: min(240px, 72%);
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(13,47,38,.2);
}
.lead-modal .lead-success-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead-modal .lead-success-shot .lead-success-ico {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: #10241c;
  background: #b8e000;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
.lead-modal .lead-success h3 { margin: 0.2rem 0 0; font-size: 1.45rem; }
.lead-modal .lead-success p { margin: 0; max-width: 36ch; color: var(--muted); }
.lead-modal .lead-success-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 900px) {
  .lead-modal {
    padding: 0;
    place-items: stretch;
    align-items: stretch;
  }
  .lead-modal .lead-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .lead-modal .lead-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }
  .lead-modal .lead-aside {
    min-height: 0;
    flex: 0 0 auto;
  }
  .lead-modal .lead-aside-inner {
    height: auto;
    padding: 0.7rem 3.4rem 0.65rem 1rem;
    gap: 0.12rem;
  }
  .lead-modal .lead-aside-logo,
  .lead-modal .lead-kicker,
  .lead-modal .lead-aside-text,
  .lead-modal .lead-aside-foot,
  .lead-modal .lead-polaroids,
  .lead-modal .lead-swatches,
  .lead-modal .lead-pills {
    display: none;
  }
  .lead-modal .lead-aside-top {
    padding-right: 0;
    justify-content: flex-start;
  }
  .lead-modal .lead-live {
    padding: 0.22rem 0.55rem;
    font-size: 0.64rem;
  }
  .lead-modal .lead-aside h2,
  .lead-modal .lead-aside-h {
    max-width: none;
    font-size: 1.12rem;
    line-height: 1.15;
  }
  .lead-modal .lead-close {
    top: 0.55rem;
    right: 0.55rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.96);
  }
  .lead-modal .lead-main {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0.65rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  }
  .lead-modal .lead-form {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lead-modal .lead-form-kicker,
  .lead-modal .lead-form-lead,
  .lead-modal .lead-form-title {
    display: none;
  }
  .lead-modal .lead-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.38rem;
  }
  .lead-modal .lead-field {
    gap: 0.12rem;
  }
  .lead-modal .lead-field > span {
    font-size: 0.62rem;
  }
  .lead-modal .lead-field input,
  .lead-modal .lead-field textarea {
    padding: 0.48rem 0.7rem;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: none;
  }
  .lead-modal .lead-field textarea {
    min-height: 44px;
    resize: none;
  }
  .lead-modal .lead-drop-frame {
    min-height: 44px;
    border-radius: 12px;
  }
  .lead-modal .lead-drop-copy {
    padding: 0.4rem 0.65rem;
    gap: 0.5rem;
  }
  .lead-modal .lead-drop-ico {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .lead-modal .lead-drop-frame strong { font-size: 0.78rem; }
  .lead-modal .lead-drop-frame small { font-size: 0.64rem; }
  .lead-modal .lead-submit {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    flex-shrink: 0;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    background: #d2ff3f;
    box-shadow: 0 -10px 20px rgba(238, 243, 240, 0.92);
  }
  .lead-modal .lead-note {
    flex-shrink: 0;
    font-size: 0.68rem;
  }
  .lead-modal .lead-success {
    min-height: 0;
    flex: 1;
  }
}
@media (max-width: 560px) {
  .lead-modal { padding: 0; }
  .lead-modal .lead-dialog { border-radius: 0; }
  .lead-modal .lead-row { grid-template-columns: 1fr 1fr; }
  .lead-modal .lead-previews { grid-template-columns: repeat(4, 1fr); }
  .lead-modal .lead-drop-copy { padding: 0.4rem 0.6rem; }
}

.nav-dd-info {
  min-width: 280px;
  padding: 0.5rem;
}
.nav-dd-info a {
  display: grid;
  gap: 0.12rem;
  padding: 0.7rem 0.85rem;
}
.nav-dd-info a strong {
  font-size: 0.84rem;
  font-weight: 700;
}
.nav-dd-info a small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  white-space: normal;
}
.nav-dd-info a:hover small { color: var(--green-dark); }

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
}
.about-hero-short { min-height: 340px; }
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,18,16,.25) 0%, rgba(6,16,14,.88) 100%),
    linear-gradient(90deg, rgba(6,16,14,.35), transparent 50%);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 2.6rem;
}
.about-hero .eyebrow,
.about-page .eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6f08a;
}
.about-page .section .eyebrow { color: var(--green); }
.about-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.about-lead {
  max-width: 48ch;
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
}
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.about-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}
.about-stats article {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 16px 36px rgba(13,47,38,.08);
}
.about-stats strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0;
}
.about-stats span { color: var(--muted); font-size: 0.88rem; }
.about-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.about-story-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.about-story-copy p { color: var(--muted); line-height: 1.65; }
.about-checks {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.about-checks li {
  display: flex;
  gap: 0.55rem;
  font-weight: 600;
}
.about-checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: var(--lime);
  flex-shrink: 0;
}
.about-story-media {
  position: relative;
  min-height: 340px;
}
.about-story-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(13,47,38,.16);
}
.about-story-card {
  position: absolute;
  left: -1rem;
  bottom: -0.6rem;
  width: 118px;
  margin: 0;
  padding: 0.35rem 0.35rem 0.55rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(13,47,38,.18);
  transform: rotate(var(--r, 0deg));
}
.about-story-card-2 { left: auto; right: 1rem; bottom: 1.2rem; }
.about-story-card img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}
.about-story-card figcaption {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.28rem;
}
.about-split-head { margin-bottom: 1.1rem; }
.about-split-head h2 { margin: 0 0 0.3rem; }
.about-split-head p { margin: 0; color: var(--muted); }
.about-cta { margin-bottom: 0.5rem; }
.reviews-grid,
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.review-card,
.blog-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 14px 32px rgba(13,47,38,.06);
}
.review-shot img,
.blog-card-shot img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.review-body,
.blog-card-body { padding: 1.05rem 1.15rem 1.2rem; }
.review-stars { color: #c9a227; letter-spacing: 0.08em; margin-bottom: 0.45rem; }
.review-body p { margin: 0 0 0.85rem; color: var(--ink); line-height: 1.55; }
.review-body footer { display: grid; gap: 0.1rem; }
.review-body footer span { color: var(--muted); font-size: 0.82rem; }
.blog-card-shot { position: relative; display: block; }
.blog-card-shot span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: #b8e000;
  color: #10241c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card-body time { color: var(--muted); font-size: 0.78rem; }
.blog-card-body h2 { margin: 0.25rem 0 0.55rem; font-size: 1.2rem; letter-spacing: -0.02em; }
.blog-card-body p { color: var(--muted); line-height: 1.6; }
.blog-more { color: var(--green); font-weight: 700; }
@media (max-width: 900px) {
  .about-stats,
  .about-story,
  .reviews-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .about-stats { margin-top: 0; }
  .about-story-media { min-height: 0; }
  .about-story-main { height: 240px; }
  .about-hero-inner { padding-top: 6.2rem; }
}

.ahero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 860px);
  color: #fff;
  background: #071411;
  isolation: isolate;
}
.ahero-media,
.ahero-slide,
.ahero-shade,
.ahero-grain {
  position: absolute;
  inset: 0;
}
.ahero-media { z-index: 0; }
.ahero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.ahero-slide.is-on { opacity: 1; }
.ahero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}
.ahero-slide.is-on img {
  animation: heroKen 22s ease-in-out infinite alternate;
}
.ahero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,16,14,.92) 0%, rgba(6,16,14,.62) 42%, rgba(6,16,14,.28) 100%),
    linear-gradient(180deg, rgba(6,16,14,.35) 0%, transparent 30%, rgba(6,16,14,.72) 100%);
}
.ahero-grain {
  z-index: 2;
  opacity: .16;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.4) .6px, transparent .6px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  animation: heroGrain 8s steps(2) infinite;
}
.ahero-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  opacity: .45;
}
.ahero-orb-a {
  width: 220px; height: 220px; left: 8%; top: 18%;
  background: rgba(184,224,0,.28);
  animation: aheroOrb 9s ease-in-out infinite;
}
.ahero-orb-b {
  width: 160px; height: 160px; right: 18%; top: 12%;
  background: rgba(31,79,122,.45);
  animation: aheroOrb 11s ease-in-out infinite reverse;
}
.ahero-orb-c {
  width: 120px; height: 120px; right: 8%; bottom: 22%;
  background: rgba(198,40,40,.32);
  animation: aheroOrb 8s ease-in-out infinite 1s;
}
@keyframes aheroOrb {
  50% { transform: translate3d(18px, -22px, 0) scale(1.08); }
}
.ahero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  padding: 7.2rem 0 5.5rem;
}
.ahero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .85rem;
  padding: .34rem .7rem;
  border-radius: 999px;
  background: rgba(184,224,0,.12);
  border: 1px solid rgba(184,224,0,.28);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e7f7a8;
  animation: heroRise .7s cubic-bezier(.2,.8,.2,1) both;
}
.ahero-kicker i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #b8e000;
  box-shadow: 0 0 0 4px rgba(184,224,0,.22);
  animation: leadPulse 1.6s ease infinite;
}
.ahero-copy h1 {
  margin: 0 0 .9rem;
  font-size: clamp(2.2rem, 5vw, 4.05rem);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 12ch;
  animation: heroRise .9s cubic-bezier(.2,.8,.2,1) .06s both;
}
.ahero-copy h1 em {
  display: block;
  font-style: normal;
  color: var(--lime);
  text-shadow: 0 0 32px rgba(184,224,0,.28);
  background: linear-gradient(90deg, #b8e000, #f3ff9a, #b8e000);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aheroShine 4.5s ease infinite, heroRise .95s cubic-bezier(.2,.8,.2,1) .1s both;
}
@keyframes aheroShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ahero-lead {
  max-width: 38ch;
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  animation: heroRise 1s cubic-bezier(.2,.8,.2,1) .14s both;
}
.ahero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  animation: heroRise 1.05s cubic-bezier(.2,.8,.2,1) .18s both;
}
.ahero .hero-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.ahero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  animation: heroRise 1.1s cubic-bezier(.2,.8,.2,1) .22s both;
}
.ahero-mini strong {
  display: block;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}
.ahero-lab {
  perspective: 900px;
  animation: heroRise 1.05s cubic-bezier(.2,.8,.2,1) .16s both;
}
.lab-card {
  position: relative;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255,255,255,.12), rgba(8,24,20,.72) 42%, rgba(8,20,18,.88));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: transform .18s ease;
}
.lab-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.lab-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #e7f7a8;
}
.lab-live i {
  width: 7px; height: 7px; border-radius: 50%; background: #b8e000;
  animation: leadPulse 1.6s ease infinite;
}
.lab-tag { color: rgba(255,255,255,.55); }
.lab-stage {
  position: relative;
  height: 196px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.12), transparent 42%),
    #0d221c;
  border: 1px solid rgba(255,255,255,.08);
}
.lab-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(184,224,0,.28);
  animation: aheroSpin 18s linear infinite;
}
@keyframes aheroSpin { to { transform: rotate(360deg); } }
.lab-panel {
  position: absolute;
  inset: 22% 18% 24%;
  border-radius: 16px 16px 22px 22px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.38), transparent 46%),
    var(--paint, #1f4f7a);
  box-shadow: inset 0 -18px 28px rgba(0,0,0,.25), 0 12px 24px rgba(0,0,0,.28);
  transition: background .5s ease;
}
.lab-panel::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%; top: 16%;
  height: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: heroSheen 3.2s ease-in-out infinite;
}
.lab-scan {
  position: absolute;
  left: 10%; right: 10%;
  height: 2px;
  top: 18%;
  background: linear-gradient(90deg, transparent, #b8e000, transparent);
  box-shadow: 0 0 16px rgba(184,224,0,.85);
  animation: heroScan 2.6s ease-in-out infinite;
  z-index: 2;
}
.lab-drop {
  position: absolute;
  width: 14px; height: 18px;
  right: 22%; top: 12%;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background: var(--paint, #1f4f7a);
  opacity: 0;
  animation: heroDrop 3.4s ease-in-out infinite;
  z-index: 3;
  transition: background .4s ease;
}
.lab-readout {
  position: absolute;
  left: .7rem; bottom: .55rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .62rem;
  letter-spacing: .18em;
  color: #b8e000;
}
.lab-formula {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .45rem;
  margin: .85rem 0 .7rem;
}
.lab-bar {
  display: grid;
  gap: .28rem;
  justify-items: center;
}
.lab-bar b {
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.lab-bar b::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--h, 40%);
  background: linear-gradient(180deg, #d6f08a, #b8e000);
  transition: height .55s cubic-bezier(.2,.8,.2,1);
}
.lab-bar em {
  font-style: normal;
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.lab-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .7rem;
}
.lab-meta strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  letter-spacing: .04em;
}
.lab-meta span { color: rgba(255,255,255,.68); font-size: .86rem; }
.lab-chips { display: flex; gap: .4rem; }
.lab-chip {
  width: 22px; height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  cursor: pointer;
}
.lab-chip.is-on {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b8e000;
}
.ahero-marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(6,16,14,.45);
  backdrop-filter: blur(8px);
}
.ahero-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: .55rem 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  animation: aheroMarquee 28s linear infinite;
}
.ahero-track span { white-space: nowrap; }
.ahero-track span::before {
  content: "●";
  color: #b8e000;
  margin-right: .7rem;
}
@keyframes aheroMarquee {
  to { transform: translateX(-50%); }
}
.about-stats-sec { padding-top: 0; }
.about-page .about-stats { margin-top: -1.4rem; }
.about-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: .7rem;
}
.about-mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #1a1c1f;
}
.about-mosaic .is-wide {
  grid-row: 1 / span 2;
}
.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-mosaic figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 11, 13, .22) 36%, rgba(10, 11, 13, .78) 100%);
}
.about-mosaic figure:hover img { transform: scale(1.06); }
.about-mosaic figcaption {
  position: absolute;
  z-index: 1;
  left: .7rem;
  right: .7rem;
  bottom: .65rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}
.about-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  counter-reset: none;
}
.about-steps li {
  padding: 1.2rem 1.15rem 1.3rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 14px 32px rgba(13,47,38,.05);
}
.about-steps strong {
  display: block;
  margin-bottom: .45rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .92rem;
  color: var(--green-dark);
}
.about-steps p { margin: 0; color: var(--muted); }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.about-values article {
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
}
.about-values h3 { margin: 0 0 .4rem; font-size: 1.08rem; }
.about-values p { margin: 0; color: var(--muted); }
.about-split-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.about-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .85rem;
}
.about-quotes blockquote {
  margin: 0;
  padding: 1.2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
}
.about-quotes p {
  margin: 0 0 .85rem;
  font-size: 1.02rem;
  line-height: 1.5;
}
.about-quotes cite {
  font-style: normal;
  color: var(--muted);
  font-size: .82rem;
}
.about-place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}
.about-place h2 { margin: 0 0 .7rem; }
.about-place p { color: var(--muted); line-height: 1.65; }
.about-place-meta {
  display: grid;
  gap: .25rem;
  margin: 1rem 0 1.1rem;
  font-weight: 700;
}
.about-place-meta a { color: var(--green-dark); }
.about-place-meta a.tel-num {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 500;
}
.about-place-shot {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}
.about-place-shot img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.about-place-shot span {
  position: absolute;
  left: 1rem; bottom: 1rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(8,22,18,.72);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  .ahero-slide.is-on img,
  .ahero-grain,
  .ahero-orb,
  .lab-ring,
  .lab-scan,
  .lab-drop,
  .lab-panel::before,
  .ahero-track,
  .ahero-copy h1 em { animation: none !important; }
}
@media (max-width: 960px) {
  .ahero { min-height: 0; }
  .ahero-grid,
  .about-mosaic,
  .about-steps,
  .about-values,
  .about-quotes,
  .about-place {
    grid-template-columns: 1fr;
  }
  .about-mosaic {
    grid-template-rows: 200px 160px 160px;
  }
  .about-mosaic .is-wide { grid-row: auto; height: 200px; }
  .ahero-copy h1 { max-width: none; }
  .ahero-grid { padding: 6.4rem 0 4.2rem; }
  .lab-card { transform: none !important; }
}

.reviews-page .rev-hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 680px);
  color: #fff;
  background: #071411;
}
.rev-hero-media,
.rev-hero-media img,
.rev-hero-shade { position: absolute; inset: 0; }
.rev-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease;
}
.rev-hero-media img.is-on {
  opacity: 1;
  animation: heroKen 22s ease-in-out infinite alternate;
}
.rev-hero-shade {
  background:
    linear-gradient(90deg, rgba(6,16,14,.9) 0%, rgba(6,16,14,.55) 55%, rgba(6,16,14,.35) 100%),
    linear-gradient(180deg, rgba(6,16,14,.3), rgba(6,16,14,.78));
}
.rev-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  padding: 7.2rem 0 5.2rem;
}
.rev-hero-copy h1 {
  margin: 0 0 .8rem;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  letter-spacing: -.035em;
  line-height: 1.05;
  max-width: 14ch;
}
.rev-hero-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.rev-hero .hero-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.rev-score {
  justify-self: end;
  width: min(280px, 100%);
  padding: 1.3rem 1.25rem 1.2rem;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.rev-score-num {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
  color: var(--lime);
  text-shadow: 0 0 28px rgba(184,224,0,.28);
}
.rev-score-stars {
  margin: .35rem 0 .45rem;
  color: #e8c547;
  letter-spacing: .12em;
  font-size: 1.15rem;
}
.rev-score p { margin: 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.rev-stats-sec { padding-top: 0; }
.reviews-page .about-stats { margin-top: -1.2rem; position: relative; z-index: 3; }
.rev-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.rev-toolbar h2 { margin: 0; }
.rev-filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.rev-filter {
  border: 1px solid rgba(28,36,52,.1);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: .45rem .8rem;
  font: inherit;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
}
.rev-filter.is-on {
  background: #10241c;
  color: #fff;
  border-color: transparent;
}
.reviews-page .reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.reviews-page .review-card {
  display: grid;
  overflow: hidden;
}
.reviews-page .review-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: .9fr 1.1fr;
}
.reviews-page .review-shot { position: relative; }
.reviews-page .review-shot img { height: 210px; }
.reviews-page .review-card.is-featured .review-shot img { height: 100%; min-height: 260px; }
.review-tag {
  position: absolute;
  left: .75rem; bottom: .75rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: #b8e000;
  color: #10241c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.reviews-page .review-body { display: grid; align-content: start; }
.reviews-page .review-body footer {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: .65rem;
  align-items: center;
}
.review-ava {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: #10241c;
  color: #b8e000;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .78rem;
  font-weight: 800;
}
.review-body footer small { display: block; color: var(--muted); font-size: .78rem; }
.review-ok {
  font-style: normal;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
}
.review-card.is-new { animation: heroRise .5s cubic-bezier(.2,.8,.2,1); }
.rev-empty { color: var(--muted); text-align: center; }
.rev-form-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.6rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: 28px;
  background:
    radial-gradient(700px 220px at 100% 0%, rgba(184,224,0,.12), transparent 55%),
    #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 22px 50px rgba(13,47,38,.06);
}
.rev-form-aside h2 {
  margin: 0 0 .6rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -.03em;
  max-width: 16ch;
}
.rev-form-aside p { color: var(--muted); line-height: 1.6; }
.rev-form { display: grid; gap: .75rem; }
.rev-form-head span,
.rev-field > span {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .35rem;
}
.rev-stars-pick { display: flex; gap: .15rem; }
.rev-star {
  border: 0;
  background: none;
  color: #d8dde4;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .1rem;
}
.rev-star.is-on { color: #e8c547; text-shadow: 0 0 12px rgba(232,197,71,.35); }
.rev-topics { display: flex; flex-wrap: wrap; gap: .4rem; }
.rev-topic {
  border: 1px solid rgba(28,36,52,.1);
  background: #f4f7f5;
  border-radius: 999px;
  padding: .42rem .75rem;
  font: inherit;
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
}
.rev-topic.is-on {
  background: #10241c;
  color: #fff;
  border-color: transparent;
}
.rev-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.rev-field input,
.rev-field textarea {
  width: 100%;
  border: 1px solid rgba(28,36,52,.08);
  border-radius: 16px;
  padding: .88rem 1rem;
  font: inherit;
  background: #f7faf8;
}
.rev-field input:focus,
.rev-field textarea:focus {
  outline: none;
  border-color: rgba(28,132,101,.45);
  box-shadow: 0 0 0 4px rgba(28,132,101,.12);
  background: #fff;
}
.rev-drop { position: relative; display: block; cursor: pointer; }
.rev-drop input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rev-drop-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 120px;
  overflow: hidden;
  border-radius: 18px;
  border: 1.5px dashed rgba(184,224,0,.55);
  background: #10241c;
  color: #fff;
  text-align: center;
}
.rev-drop-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.rev-drop-frame span { position: relative; z-index: 1; padding: .8rem; }
.rev-drop-frame small { display: block; color: rgba(255,255,255,.75); }
.rev-drop.is-over .rev-drop-frame { border-color: #b8e000; }
.rev-previews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
  margin-top: .55rem;
}
.rev-previews figure {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}
.rev-previews img { width: 100%; height: 100%; object-fit: cover; }
.rev-note { margin: 0; font-size: .78rem; color: var(--muted); text-align: center; }
.rev-success {
  padding: .85rem 1rem;
  border-radius: 16px;
  background: #e6fcf5;
  color: var(--green-dark);
  display: grid;
  gap: .15rem;
}
.rev-success[hidden] { display: none !important; }
@media (max-width: 900px) {
  .rev-hero-grid,
  .reviews-page .reviews-grid,
  .reviews-page .review-card.is-featured,
  .rev-form-layout,
  .rev-row,
  .rev-toolbar { grid-template-columns: 1fr; display: grid; }
  .rev-score { justify-self: stretch; width: auto; }
  .rev-hero-copy h1 { max-width: none; }
  .rev-hero-grid { padding: 6.3rem 0 4.2rem; }
  .reviews-page .review-card.is-featured .review-shot img { min-height: 180px; height: 180px; }
}

.ship-hero,
.faq-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071411;
}
.ship-hero { min-height: min(78vh, 680px); }
.faq-hero { min-height: min(62vh, 560px); }
.ship-hero-media,
.faq-hero-media,
.ship-hero-media img,
.faq-hero-media img,
.ship-hero-shade,
.faq-hero-shade { position: absolute; inset: 0; }
.ship-hero-media img,
.faq-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease;
}
.ship-hero-media img.is-on,
.faq-hero-media img.is-on {
  opacity: 1;
  animation: heroKen 22s ease-in-out infinite alternate;
}
.ship-hero-shade,
.faq-hero-shade {
  background:
    linear-gradient(90deg, rgba(6,16,14,.9) 0%, rgba(6,16,14,.55) 55%, rgba(6,16,14,.3) 100%),
    linear-gradient(180deg, rgba(6,16,14,.28), rgba(6,16,14,.8));
}
.ship-hero-grid,
.faq-hero-inner {
  position: relative;
  z-index: 2;
  padding: 7.2rem 0 3.4rem;
}
.ship-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.6rem;
  align-items: center;
  padding-bottom: 4.2rem;
}
.ship-hero h1,
.faq-hero h1 {
  margin: 0 0 .8rem;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -.035em;
  line-height: 1.05;
  max-width: 14ch;
}
.ship-hero .hero-btn-ghost,
.faq-hero .hero-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.ship-route-card {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.ship-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .85rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e7f7a8;
}
.ship-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #b8e000;
  animation: leadPulse 1.6s ease infinite;
}
.ship-path { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.ship-path li {
  display: grid;
  gap: .1rem;
  padding: .7rem .8rem;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  opacity: .55;
  transition: opacity .3s, background .3s;
}
.ship-path li.is-on {
  opacity: 1;
  background: rgba(184,224,0,.14);
}
.ship-path b { font-family: Inter, system-ui, -apple-system, sans-serif; letter-spacing: 0; }
.ship-path small { color: rgba(255,255,255,.65); }
.ship-route-line {
  height: 3px;
  margin-top: .9rem;
  border-radius: 99px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.ship-route-line span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: #b8e000;
  animation: shipPulse 2.4s ease infinite;
}
@keyframes shipPulse {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(220%); }
}
.ship-ways {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .9rem;
}
.ship-ways article {
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 16px 36px rgba(13,47,38,.06);
}
.ship-ways .is-accent {
  background: #10241c;
  color: #fff;
  border-color: transparent;
}
.ship-way-kicker {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.ship-ways .is-accent .ship-way-kicker { color: #d6f08a; }
.ship-ways strong {
  display: block;
  margin: .35rem 0 .15rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -.04em;
  color: var(--green-dark);
}
.ship-ways .is-accent strong { color: var(--lime); }
.ship-ways h3 { margin: 0 0 .45rem; }
.ship-ways p { margin: 0; color: var(--muted); }
.ship-ways .is-accent p { color: rgba(255,255,255,.75); }
.ship-steps { margin-top: 1rem; }
.ship-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.ship-cities span {
  padding: .45rem .8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  font-weight: 700;
  font-size: .86rem;
}
.ship-pickup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}
.faq-search {
  display: flex;
  align-items: center;
  gap: .55rem;
  max-width: 520px;
  margin-top: 1.2rem;
  padding: .2rem .2rem .2rem .9rem;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.faq-search-ico { color: #b8e000; font-size: 1.1rem; }
.faq-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  padding: .85rem .7rem;
}
.faq-search input::placeholder { color: rgba(255,255,255,.55); }
.faq-search input:focus { outline: none; }
.faq-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.faq-list { display: grid; gap: .55rem; }
.faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}
@media (prefers-reduced-motion: reduce) {
  .ship-hero-media img.is-on,
  .faq-hero-media img.is-on,
  .ship-route-line span { animation: none !important; }
}
@media (max-width: 900px) {
  .ship-hero-grid,
  .ship-ways,
  .ship-pickup { grid-template-columns: 1fr; }
  .ship-hero h1,
  .faq-hero h1 { max-width: none; }
  .ship-hero-grid,
  .faq-hero-inner { padding-top: 6.3rem; }
  .about-steps.ship-steps { grid-template-columns: 1fr; }
}

/* —— Blog layout + sidebar —— */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.4rem 1.6rem;
  align-items: start;
}
.blog-main { min-width: 0; }
.blog-feat {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.blog-feat-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(13,47,38,.14);
}
.blog-feat-card.is-lead { min-height: 340px; }
.blog-feat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .55s ease;
}
.blog-feat-card:hover img { transform: scale(1.1); }
.blog-feat-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,17,.08) 20%, rgba(7,20,17,.86) 100%);
}
.blog-feat-in {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.15rem 1.2rem 1.25rem;
  display: grid;
  gap: .35rem;
}
.blog-feat-in em {
  justify-self: start;
  padding: .22rem .58rem;
  border-radius: 999px;
  background: #b8e000;
  color: #10241c;
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-feat-in strong {
  font-size: 1.28rem;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.blog-feat-in small { color: rgba(255,255,255,.78); font-size: .82rem; }
.blog-card-body h2 a { color: inherit; text-decoration: none; }
.blog-card-body h2 a:hover { color: var(--green); }

.blog-side {
  position: sticky;
  top: 5.6rem;
  display: grid;
  gap: .85rem;
}
.b-side-studio {
  position: relative;
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 16px 36px rgba(13,47,38,.16);
}
.b-side-studio > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b-side-studio-in {
  position: relative;
  min-height: 250px;
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(7,20,17,.1) 10%, rgba(7,20,17,.9) 78%);
  gap: .35rem;
}
.b-side-studio-in strong { font-size: 1.12rem; letter-spacing: -.02em; }
.b-side-studio-in p { margin: 0 0 .45rem; color: rgba(255,255,255,.78); font-size: .86rem; }
.b-side-studio-in .btn { align-self: start; }
.b-side-card {
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 12px 28px rgba(13,47,38,.05);
}
.b-side-card h3 {
  margin: 0 0 .75rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.b-side-cats { list-style: none; margin: 0; padding: 0; display: grid; gap: .28rem; }
.b-side-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .48rem .55rem;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}
.b-side-cats a:hover { background: #f3f6f1; }
.b-side-cats small {
  min-width: 1.5rem;
  text-align: center;
  padding: .1rem .4rem;
  border-radius: 999px;
  background: #eef6d8;
  color: var(--green-dark);
  font-weight: 800;
}
.b-side-posts { display: grid; gap: .7rem; }
.b-mini {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.b-mini img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  background: #eee;
}
.b-mini em {
  display: block;
  font-style: normal;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
}
.b-mini strong {
  display: block;
  font-size: .88rem;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.b-swatches { display: flex; gap: .38rem; margin: .15rem 0 .55rem; }
.b-swatches span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 4px 10px rgba(0,0,0,.12);
}
.b-side-swatch p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.b-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.b-tags a,
.b-tags span {
  padding: .32rem .62rem;
  border-radius: 999px;
  background: #f3f6f1;
  color: var(--ink);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
}
.b-tags a:hover { background: #b8e000; color: #10241c; }
.b-toc { display: grid; gap: .15rem; }
.b-toc a {
  padding: .42rem .5rem;
  border-left: 2px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
}
.b-toc a:hover,
.b-toc a.is-on {
  color: var(--ink);
  border-left-color: #b8e000;
  background: #f7faef;
}
.b-author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .75rem;
  align-items: start;
}
.b-author img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: #10241c;
}
.b-author strong { display: block; font-size: .95rem; }
.b-author p { margin: .25rem 0 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }

.blog-post-hero {
  position: relative;
  min-height: 420px;
  color: #fff;
  overflow: hidden;
  background: #071411;
}
.blog-post-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,17,.35) 0%, rgba(7,20,17,.78) 70%, #071411 100%);
}
.blog-post-hero-in {
  position: relative;
  padding: 7.2rem 0 2.4rem;
  max-width: 820px;
}
.blog-post-hero h1 {
  margin: .2rem 0 .7rem;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  letter-spacing: -.03em;
  line-height: 1.15;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  margin-top: .85rem;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
}
.blog-article {
  padding: 1.35rem 1.45rem 1.6rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 14px 32px rgba(13,47,38,.06);
}
.blog-article h2 {
  margin: 1.4rem 0 .55rem;
  font-size: 1.28rem;
  letter-spacing: -.02em;
  scroll-margin-top: 6rem;
}
.blog-article p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 68ch;
}
.blog-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: .55rem;
  margin-bottom: 1.2rem;
}
.blog-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background: #eee;
}
.blog-gallery img:first-child { height: 220px; grid-row: span 1; }
.blog-article figure {
  margin: 1.1rem 0;
}
.blog-article figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  background: #eee;
}
.blog-article figcaption {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .82rem;
}
.blog-article-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(28,36,52,.08);
}
@media (max-width: 980px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-side { position: static; }
  .blog-feat { grid-template-columns: 1fr; }
  .blog-feat-card,
  .blog-feat-card.is-lead { min-height: 260px; }
  .blog-gallery { grid-template-columns: 1fr 1fr; }
  .blog-gallery img:first-child { grid-column: 1 / -1; }
}

/* Система цветоподбора */
.sys-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7.2rem 0 3.2rem;
}
.sys-hero-media { position: absolute; inset: 0; }
.sys-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sys-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6,18,16,.92) 0%, rgba(6,18,16,.55) 48%, rgba(6,18,16,.28) 100%),
    linear-gradient(180deg, rgba(6,18,16,.2), rgba(6,18,16,.55));
}
.sys-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
}
.sys-hero h1 {
  margin: 0 0 .75rem;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  letter-spacing: -.04em;
  max-width: 14ch;
}
.sys-hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 1.4rem 1.35rem;
  backdrop-filter: blur(12px);
}
.sys-hero-stat strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #d6f08a;
}
.sys-hero-stat > span {
  display: block;
  margin: .35rem 0 1rem;
  color: rgba(255,255,255,.72);
}
.sys-hero-stat ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.sys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.sys-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.15rem 1.1rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 12px 28px rgba(13,47,38,.05);
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: .35rem;
}
.sys-card h3 {
  margin: 0;
  font-size: .95rem;
  letter-spacing: -.02em;
}
.sys-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}
.sys-card b {
  margin-top: auto;
  padding-top: .7rem;
  font-size: 1.35rem;
  letter-spacing: -.03em;
  color: var(--green-dark);
}
.sys-card-swatch {
  width: 100%;
  height: 38px;
  border-radius: 12px;
  margin-bottom: .35rem;
}
.sys-card-metal .sys-card-swatch {
  background: linear-gradient(90deg, #9aa3ad, #e8edf1 40%, #7b848e 70%, #cfd5db);
}
.sys-card-cmetal .sys-card-swatch {
  background: linear-gradient(90deg, #8a3a22, #d4a05a 45%, #c46b3a 80%, #f0d09a);
}
.sys-card-pearl .sys-card-swatch {
  background: linear-gradient(90deg, #c9b8d9, #f4f0ea 35%, #9ec4e8 70%, #e9d5c3);
}
.sys-card-xiral .sys-card-swatch {
  background: linear-gradient(90deg, #5b2d8c, #1c8465 40%, #d4e84a 70%, #c62828);
}
.sys-card-solid .sys-card-swatch {
  background: linear-gradient(90deg, #1a1c1f, #1f4f7a 40%, #c62828 70%, #e0a82e);
}
.sys-card-clear .sys-card-swatch {
  background: linear-gradient(90deg, rgba(28,132,101,.15), #f3f7f5 50%, rgba(184,224,0,.35));
  border: 1px solid rgba(28,36,52,.08);
}
.sys-card-toner .sys-card-swatch {
  background: linear-gradient(90deg, #7a1f3a, #2f5f9e 50%, #1c8465);
}
.sys-card-spec .sys-card-swatch {
  background: linear-gradient(90deg, #10241c, #1c8465 55%, #b8e000);
}
.sys-mix-sec { background: #f4f7f5; }
.sys-mix {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.sys-mix h2 { max-width: 16ch; }
.sys-mix > div > p {
  color: var(--muted);
  max-width: 46ch;
}
.sys-mix-notes {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.sys-mix-notes li {
  padding-left: 1rem;
  position: relative;
  font-size: .92rem;
}
.sys-mix-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.sys-mix-card {
  display: grid;
  gap: .75rem;
  padding: 1.3rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28,36,52,.08);
  box-shadow: 0 18px 40px rgba(13,47,38,.08);
}
.sys-mix-card label { display: grid; gap: .32rem; }
.sys-mix-card label span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sys-mix-card select {
  width: 100%;
  border: 1px solid rgba(28,36,52,.12);
  border-radius: 14px;
  background: #f8faf9;
  padding: .85rem .95rem;
  font: inherit;
  color: var(--ink);
}
.sys-mix-out {
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(28,132,101,.08);
  border: 1px solid rgba(28,132,101,.16);
  display: grid;
  gap: .2rem;
}
.sys-mix-out small {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}
.sys-mix-out strong { font-size: 1.05rem; }
.sys-mix-out span { color: var(--muted); font-size: .88rem; }
.sys-mix-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.sys-cta-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
@media (max-width: 980px) {
  .sys-hero-grid,
  .sys-mix,
  .sys-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sys-hero { padding: 6.4rem 0 2.4rem; }
  .sys-hero-grid,
  .sys-mix,
  .sys-grid { grid-template-columns: 1fr; }
}

/* Сотрудничество — отдельный визуальный язык */
body.px-page {
  background: #1c1d20;
  color: #f3eee4;
}
body.px-page .site-header {
  background: transparent;
}
.px {
  --px-lime: #d2ff3f;
  --px-ink: #141517;
  --px-dark: #25272b;
  --px-darker: #141517;
  --px-cream: #faf7f1;
  --px-muted: rgba(244, 239, 228, .64);
  --px-line: rgba(210, 255, 63, .18);
  overflow: hidden;
}
.px-hero {
  position: relative;
  isolation: isolate;
  padding: .35rem 0 1.5rem;
}
.px-glow {
  position: absolute;
  z-index: 0;
  width: 42rem;
  height: 42rem;
  left: 0;
  top: 0;
  margin: -21rem 0 0 -21rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(210,255,63,.1), transparent 62%);
  opacity: .75;
  will-change: transform;
}
.px-hero-top,
.px-hero-main {
  position: relative;
  z-index: 1;
}
.px-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .15rem 0 .7rem;
}
.px-crumbs {
  display: flex;
  gap: .45rem;
  font-size: .82rem;
  color: rgba(244,239,228,.5);
}
.px-crumbs a { color: var(--px-lime); }
.px-live {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: .32rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--px-line);
  background: rgba(210,255,63,.08);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--px-lime);
}
.px-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--px-lime);
  box-shadow: 0 0 0 4px rgba(210,255,63,.18);
  animation: leadPulse 1.6s ease infinite;
}
.px-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .78fr);
  gap: 1.4rem 2.2rem;
  align-items: center;
  padding-bottom: 0;
}
.px-index {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(210,255,63,.7);
}
.px-hero-copy h1 {
  margin: 0 0 .7rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.95rem, 4.4vw, 4.05rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .94;
  max-width: 13ch;
  color: #fff;
}
.px-hero-copy h1 span {
  display: block;
  color: var(--px-lime);
}
.px-lead {
  max-width: 42ch;
  margin: 0 0 1.05rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--px-muted);
}
.px-lead a {
  color: var(--px-lime);
  font-weight: 700;
}
.px-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0;
  color: rgba(244,239,228,.5);
}
.px-hero .crumbs a { color: var(--px-lime); }
.px-hero-cta,
.px-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.px-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: .62rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.px-btn:hover { transform: translateY(-2px); }
.px-btn-lime {
  background: var(--px-lime);
  color: var(--px-ink);
}
.px-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(244,239,228,.22);
}
.px-btn-ghost:hover { border-color: var(--px-lime); color: var(--px-lime); }
.px-btn-dark {
  background: var(--px-ink);
  color: var(--px-lime);
}
.px-btn-line {
  background: transparent;
  color: var(--px-ink);
  border-color: rgba(18,19,22,.22);
}
.px-shot {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  max-height: 280px;
  background: #222428;
  box-shadow: 0 24px 56px rgba(0,0,0,.32);
}
.px-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
.px-shot.is-scene img {
  object-position: 78% center;
  filter: saturate(1.06) contrast(1.06);
}
.px-shot.is-scene .px-swatches { display: none; }
.px-shot.is-lab img {
  object-position: center 58%;
  filter: saturate(1.06) contrast(1.06);
}
.px-shot figcaption {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .55rem .8rem;
  border-radius: 12px;
  background: rgba(14,15,17,.78);
  backdrop-filter: blur(12px);
  color: #fff;
}
.px-shot figcaption strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
}
.px-shot figcaption span {
  font-size: .8rem;
  color: rgba(244,239,228,.7);
}
.px-swatches {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: flex;
  gap: .3rem;
  margin: 0;
  padding: .3rem;
  list-style: none;
  border-radius: 999px;
  background: rgba(14,15,17,.58);
  backdrop-filter: blur(10px);
}
.px-swatches li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.px-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.px-stats > * {
  display: grid;
  justify-items: start;
  gap: .35rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 22px;
  background: var(--px-dark);
  color: #f4efe4;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(20,21,23,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.px-stats > *:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(20,21,23,.14);
}
.px-stats > *.is-accent {
  background: var(--px-lime);
  color: var(--px-ink);
}
.px-stats-ico {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  margin-bottom: .25rem;
  border-radius: 12px;
  background: rgba(210,255,63,.14);
}
.px-stats > *.is-accent .px-stats-ico {
  background: rgba(20,21,23,.12);
}
.px-stats-ico svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--px-lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.px-stats > *.is-accent .px-stats-ico svg {
  stroke: var(--px-ink);
}
.px-stats b {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
}
.px-stats b.tel-num {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 1.02rem;
}
.px-stats > * > span:last-child {
  color: rgba(244,239,228,.62);
  font-size: .88rem;
  line-height: 1.35;
}
.px-stats > *.is-accent > span:last-child {
  color: rgba(20,21,23,.62);
}
.px-light {
  background: var(--px-cream);
  color: var(--px-ink);
  padding: 1.4rem 0 0;
}
.px-marquee {
  overflow: hidden;
  margin-top: .85rem;
  border-top: 1px solid rgba(20,21,23,.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.px-marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: .65rem 0 .8rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3a3d42;
  animation: pxMarquee 28s linear infinite;
}
.px-marquee-track span + span::before {
  content: '·';
  margin-right: 2.4rem;
  color: #9aa318;
}
@keyframes pxMarquee {
  to { transform: translateX(-50%); }
}
.px-kicker {
  margin: 0 0 .7rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--px-lime);
}
.px-kicker-dark { color: #3a3d38; }
.px-risk {
  padding: 3.2rem 0 2.4rem;
}
.px-risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.px-risk-head {
  grid-column: 1 / -1;
  margin-bottom: .6rem;
}
.px-risk-head h2,
.px-pillars-head h2,
.px-cta h2 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.045em;
  line-height: 1;
}
.px-risk-card {
  padding: 1.6rem 1.5rem 1.45rem;
  border-radius: 28px;
  background: var(--px-dark);
  color: #f4efe4;
}
.px-risk-card span {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .9rem;
  color: var(--px-lime);
}
.px-risk-card h3 {
  margin: .55rem 0 .7rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.03em;
  color: #fff;
}
.px-risk-card p {
  margin: 0;
  color: rgba(244,239,228,.7);
  line-height: 1.6;
}
.px-risk-note {
  grid-column: 1 / -1;
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: var(--px-lime);
  color: var(--px-ink);
}
.px-risk-note p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 70ch;
}
.px-pillars {
  color: var(--px-ink);
  padding: 2.2rem 0 3.2rem;
}
.px-pillars-head { margin-bottom: 1.8rem; }
.px-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.px-tile {
  padding: 1.45rem 1.4rem 1.35rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(18,19,22,.08);
  box-shadow: 0 18px 40px rgba(18,19,22,.05);
  transition: transform .22s ease, box-shadow .22s ease;
}
.px-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(18,19,22,.1);
}
.px-tile header p {
  margin: .15rem 0 .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #6a6d70;
}
.px-tile header b {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .82rem;
  color: #6d8a12;
}
.px-tile h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -.04em;
}
.px-tile > p {
  margin: .85rem 0 0;
  color: #55585c;
  line-height: 1.6;
}
.px-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
  margin-top: 1.1rem;
}
.px-split strong {
  display: block;
  margin-bottom: .3rem;
  font-size: .88rem;
}
.px-split p {
  margin: 0;
  color: #5c5f64;
  line-height: 1.55;
}
.px-tile-1 { grid-column: 1 / span 7; background: var(--px-dark); color: #f4efe4; }
.px-tile-1 header p,
.px-tile-1 header b { color: var(--px-lime); }
.px-tile-1 h3 { color: #fff; }
.px-tile-1 .px-split p { color: rgba(244,239,228,.7); }
.px-tile-2 { grid-column: 8 / span 5; }
.px-tile-3 { grid-column: 1 / span 6; }
.px-tile-4 { grid-column: 7 / span 6; }
.px-tile-5 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 1.2rem 2rem;
  align-items: center;
  background: var(--px-lime);
  border: none;
}
.px-tile-5 header {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.px-tile-5 header b { color: var(--px-ink); }
.px-tile-5 header p { color: #3a3d38; }
.px-tile-5 > p { margin: 0; color: var(--px-ink); font-size: 1.05rem; }
.px-who { padding: 0 0 4.5rem; }
.px-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.px-who-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 2rem 1.7rem 1.6rem;
  border-radius: 32px;
}
.px-who-card span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.px-who-card h2 {
  margin: .7rem 0 1rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -.07em;
  line-height: .85;
}
.px-who-card p {
  max-width: 36ch;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.px-who-card.is-sto {
  background: var(--px-dark);
  color: #f4efe4;
}
.px-who-card.is-sto span { color: var(--px-lime); }
.px-who-card.is-shop {
  background: var(--px-lime);
  color: var(--px-ink);
}
.px-philo {
  padding: 5.5rem 0 5rem;
  background: var(--px-darker);
}
.px-philo blockquote { margin: 0; }
.px-philo-lead {
  margin: 0 0 1.8rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .95;
  color: var(--px-lime);
  max-width: 14ch;
}
.px-philo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 3rem;
}
.px-philo-body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--px-muted);
}
.px-cta {
  background: var(--px-lime);
  color: var(--px-ink);
  padding: 3.4rem 0 3.6rem;
}
.px-cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}
.px-cta p:not(.px-kicker) {
  max-width: 46ch;
  margin: .8rem 0 0;
  font-size: 1.05rem;
}
@media (max-width: 1100px) {
  .px-hero-main,
  .px-who-grid,
  .px-philo-body,
  .px-tile-5,
  .px-split { grid-template-columns: 1fr; }
  .px-stats { grid-template-columns: 1fr 1fr; }
  .px-hero-copy h1 { max-width: none; }
  .px-shot {
    width: 100%;
    max-width: none;
    max-height: none;
    justify-self: stretch;
  }
  .px-tile-1,
  .px-tile-2,
  .px-tile-3,
  .px-tile-4 { grid-column: 1 / -1; }
  .px-cta-grid { flex-direction: column; align-items: stretch; }
}
@media (max-width: 720px) {
  .px-hero-top { flex-direction: column; align-items: flex-start; }
  .px-stats { grid-template-columns: 1fr; }
  .px-risk-grid { grid-template-columns: 1fr; }
  .px-pillars { padding: 2.2rem 0 2.8rem; }
  .px-who-card { min-height: 0; }
  .px-marquee-track { animation-duration: 22s; }
}
@media (prefers-reduced-motion: reduce) {
  .px-marquee-track,
  .px-live i,
  .px-glow { animation: none; }
}

body.px-page .site-footer {
  background: #141517;
  border-top: none;
}

/* Контакты — тот же визуальный язык */
.cx-body { padding: 2.4rem 0 1.2rem; }
.cx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .85fr);
  gap: 1rem;
  align-items: stretch;
}
.cx-form-card,
.cx-map {
  padding: 1.6rem 1.5rem 1.5rem;
  border-radius: 28px;
}
.cx-form-card {
  background: #fff;
  box-shadow: 0 16px 36px rgba(20,21,23,.06);
}
.cx-form-card h2,
.cx-map h2,
.cx-help h2 {
  margin: 0 0 .55rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.04em;
}
.cx-form-card > p {
  margin: 0 0 1.2rem;
  color: #5c5f64;
}
.cx-form-card a { color: #5a6b12; font-weight: 700; }
.cx-form {
  display: grid;
  gap: .75rem;
}
.cx-form label {
  display: grid;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a6d70;
}
.cx-form input,
.cx-form textarea {
  width: 100%;
  border: 1px solid rgba(20,21,23,.1);
  border-radius: 14px;
  background: var(--px-cream);
  padding: .75rem .9rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--px-ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.cx-form input:focus,
.cx-form textarea:focus {
  border-color: #9aa318;
  box-shadow: 0 0 0 3px rgba(210,255,63,.28);
  background: #fff;
}
.cx-form .px-btn { justify-self: start; margin-top: .2rem; }
.cx-form-note {
  margin: .15rem 0 0;
  padding: .8rem .9rem;
  border-radius: 14px;
  background: var(--px-lime);
  color: var(--px-ink);
  font-size: .9rem;
  font-weight: 600;
}
.cx-map {
  display: grid;
  align-content: start;
  min-height: 100%;
  background: var(--px-dark);
  color: #f4efe4;
}
.cx-map h2 { color: #fff; }
.cx-map p {
  margin: 0 0 1rem;
  color: rgba(244,239,228,.7);
  line-height: 1.55;
}
.cx-map-meta {
  margin-bottom: 1.3rem !important;
  font-size: .9rem;
}
.cx-map .px-btn { justify-self: start; }
.cx-map-live {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 451px;
  background: #cfd3c4;
  box-shadow: 0 16px 36px rgba(20, 21, 23, .08);
}
.cx-grid > .cx-map-live {
  grid-column: 1 / -1;
}
.cx-map-live iframe,
.cx-map-live > div,
.cx-map-live > ymaps {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}
.cx-map-live.is-place,
.hx-map-live {
  min-height: 100%;
  height: 100%;
}
.pk-body .cx-map-live {
  margin: 1rem 0 0;
}
.cx-help { padding: 1rem 0 4.2rem; }
.cx-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.cx-help-grid article {
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20,21,23,.05);
}
.cx-help-grid article.is-accent {
  background: var(--px-lime);
}
.cx-help-grid b {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .82rem;
  color: #6d8a12;
}
.cx-help-grid article.is-accent b { color: var(--px-ink); }
.cx-help-grid h3 {
  margin: .4rem 0 .45rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -.03em;
  color: var(--px-ink);
}
.cx-help-grid p {
  margin: 0;
  color: #5c5f64;
  font-size: .92rem;
  line-height: 1.5;
}
.cx-help-grid article.is-accent h3 { color: var(--px-ink); }
.cx-help-grid article.is-accent p { color: rgba(20,21,23,.7); }
@media (max-width: 1100px) {
  .cx-grid,
  .cx-help-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .cx-grid,
  .cx-help-grid { grid-template-columns: 1fr; }
}

/* Подбор краски */
.pk-body { padding: 2.4rem 0 3.6rem; }
.pk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pk-card {
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20,21,23,.06);
}
.pk-card h2 {
  margin: 0 0 1rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.04em;
}
.pk-card ol,
.pk-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}
.pk-card li {
  padding-left: 1.7rem;
  position: relative;
  color: #5c5f64;
  line-height: 1.45;
}
.pk-card ol { counter-reset: pk; }
.pk-card ol li { counter-increment: pk; }
.pk-card ol li::before {
  content: counter(pk, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: #6d8a12;
}
.pk-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--px-lime);
}
.pk-card.is-dark {
  background: var(--px-dark);
  color: #f4efe4;
}
.pk-card.is-dark h2 { color: #fff; }
.pk-card.is-dark li { color: rgba(244,239,228,.72); }
.pk-card.is-accent {
  background: var(--px-lime);
  color: var(--px-ink);
}
.pk-card.is-accent p {
  margin: 0 0 .85rem;
  line-height: 1.55;
}
.pk-card.is-accent p:last-child { margin-bottom: 0; }
.pk-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
  background: var(--px-dark);
  color: #f4efe4;
}
.pk-note p {
  margin: 0;
  max-width: 70ch;
  line-height: 1.6;
  color: rgba(244,239,228,.78);
}
.pk-note strong { color: var(--px-lime); }
@media (max-width: 1100px) {
  .pk-grid { grid-template-columns: 1fr; }
  .pk-note { flex-direction: column; align-items: flex-start; }
}

.catalog-page.px { overflow: visible; }
.catalog-page .px-hero-copy h1 { max-width: 16ch; }
.catalog-page .px-light {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(42rem 42rem at 6% 4%, rgba(210, 255, 63, 0.13), transparent 58%),
    radial-gradient(34rem 34rem at 98% 12%, rgba(20, 21, 23, 0.035), transparent 60%),
    radial-gradient(46rem 46rem at 86% 86%, rgba(210, 255, 63, 0.09), transparent 62%),
    radial-gradient(30rem 30rem at 8% 78%, rgba(20, 21, 23, 0.03), transparent 58%),
    #fcfbf8;
}
.catalog-page .px-light::before {
  content: '';
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 86px,
      rgba(20, 21, 23, 0.018) 86px 87px
    );
}
.catalog-page .px-light::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: min(78vw, 740px);
  aspect-ratio: 1;
  left: -22%;
  top: 16%;
  border-radius: 50%;
  border: 88px solid rgba(210, 255, 63, 0.055);
  box-shadow:
    72vw 8vh 0 -40px rgba(20, 21, 23, 0.028),
    58vw 52vh 0 0 transparent,
    58vw 52vh 0 90px rgba(210, 255, 63, 0.04);
}
.catalog-page .px-light > * {
  position: relative;
  z-index: 1;
}
.cat-deliv { margin: 0; }
@media (max-width: 900px) {
  .catalog-page .px-hero {
    background: transparent;
    padding: 0.05rem 0 0.55rem;
  }
  .catalog-page .px-glow,
  .catalog-page .px-live,
  .catalog-page .px-index,
  .catalog-page .px-lead,
  .catalog-page .px-shot,
  .catalog-page .cat-deliv {
    display: none !important;
  }
  .catalog-page .px-hero-top {
    display: flex;
    padding: 0.05rem 0 0.3rem;
  }
  .catalog-page .px-crumbs {
    flex-wrap: wrap;
    font-size: 0.78rem;
  }
  .catalog-page .px-hero-copy h1 {
    display: block;
    margin: 0;
    max-width: none;
    font-size: clamp(1.45rem, 6.8vw, 1.95rem);
    line-height: 0.98;
  }
  .catalog-page .px-hero-copy h1 span,
  .catalog-page .px-hero-cta {
    display: none;
  }
  .catalog-page .px-hero-main {
    display: block;
    padding: 0;
    gap: 0;
  }
  .catalog-page .px-light {
    padding-top: 0.35rem;
  }
  body.px-page .catalog-page .catalog-section {
    padding-top: 0.55rem;
  }
  body.px-page .catalog-toolbar .btn-filter-mobile {
    margin-left: auto;
    background: #141517;
    color: #d2ff3f;
    border: 0;
    border-radius: 999px;
    padding: 0.42rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
  }
}
body.px-page .catalog-page .catalog-section {
  padding: 1.15rem 0 4rem;
}
body.px-page .btn-filter-mobile {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(244,239,228,.22);
}
body.px-page .filter-sidebar {
  border-radius: 22px;
  border: 1px solid rgba(20,21,23,.06);
  box-shadow: 0 16px 36px rgba(20,21,23,.06);
  padding: 1.15rem 1rem 1.2rem;
  gap: .95rem;
}
body.px-page .filter-sidebar-head h2,
body.px-page .filter-sidebar-head .filter-side-h,
body.px-page .filter-block-title {
  color: #3a3d38;
  letter-spacing: .12em;
}
body.px-page .f-search-wrap {
  border-radius: 14px;
  background: #f4efe4;
  border-color: rgba(20,21,23,.08);
}
body.px-page .f-search-wrap:focus-within {
  border-color: #b8c428;
  box-shadow: 0 0 0 3px rgba(210,255,63,.32);
}
body.px-page .f-search-icon { color: #6d8a12; }
body.px-page .f-check:hover { background: rgba(210,255,63,.14); }
body.px-page .f-box {
  border-color: rgba(20,21,23,.22);
  border-radius: 6px;
}
body.px-page .f-check input:checked + .f-box {
  background: #141517;
  border-color: #d2ff3f;
}
body.px-page .f-check input:checked + .f-box::after {
  border-color: #d2ff3f;
}
body.px-page .f-price-inputs input,
body.px-page .f-select {
  border-radius: 14px;
  background: #f4efe4;
  border-color: rgba(20,21,23,.08);
}
body.px-page .f-price-inputs input:focus,
body.px-page .f-select:focus {
  outline: none;
  border-color: #b8c428;
  box-shadow: 0 0 0 3px rgba(210,255,63,.28);
  background: #fff;
}
body.px-page .btn-reset-filters {
  border: none;
  border-radius: 999px;
  background: #141517;
  color: #d2ff3f;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: -.02em;
}
body.px-page .btn-reset-filters:hover {
  background: #25272b;
  transform: translateY(-2px);
}
body.px-page .filter-side-cta {
  border-top-color: rgba(20, 21, 23, 0.08);
}
body.px-page .filter-side-lead {
  background: #141517;
  color: #d2ff3f;
}
body.px-page .cat-tree-all.is-active,
body.px-page .cat-tree-item.is-active > .cat-tree-row > a {
  background: var(--px-lime);
  color: var(--px-ink);
}
body.px-page .cat-tree .cat-tree {
  border-left-color: rgba(20, 21, 23, 0.14);
}
body.px-page .cat-tree-tog {
  background: #ece8de;
}
body.px-page .cat-tree-item.is-open > .cat-tree-row > .cat-tree-tog {
  background: #141517;
}
body.px-page .p-card {
  border-radius: 22px;
  border: 1px solid rgba(20, 21, 23, 0.07);
  box-shadow: 0 12px 28px rgba(20, 21, 23, 0.05);
  background: #fff;
}
body.px-page .p-card:hover {
  border-color: var(--px-lime);
  box-shadow: 0 20px 44px rgba(20, 21, 23, 0.12);
}
body.px-page .p-card-media {
  background:
    radial-gradient(circle at 30% 18%, #fff 0%, transparent 48%),
    linear-gradient(165deg, #f7f4ec, #ece8de);
}
body.px-page .pc-badge {
  background: #141517;
  color: #d2ff3f;
  border-radius: 8px;
}
body.px-page .p-card-title a:hover {
  color: #5c7410;
}
body.px-page .p-card-cat {
  color: #6d8a12;
}
body.px-page .pc-tool:hover {
  color: #141517;
  border-color: #d2ff3f;
  background: #d2ff3f;
}
body.px-page .pc-tool.is-active {
  background: #141517;
  border-color: #141517;
  color: #d2ff3f;
}

/* Система цветоподбора */
.sx-page .px-hero-copy h1 { max-width: 14ch; }
.sx-parts {
  padding: 2.4rem 0 3.2rem;
}
.sx-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.sx-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, .06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .15rem;
  box-shadow: 0 10px 24px rgba(20, 21, 23, .04);
}
.sx-card h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3a3d38;
}
.sx-card b {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.05em;
  color: var(--px-ink);
}
.sx-swatch {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(20,21,23,.08), 0 8px 16px rgba(20,21,23,.12);
}
.sx-card-metal .sx-swatch {
  background: linear-gradient(145deg, #f4f6f8, #9aa3ad 45%, #e8ebef 70%, #6f7780);
}
.sx-card-cmetal .sx-swatch {
  background: linear-gradient(145deg, #ffe7a3, #d48a2a 48%, #8a3b12);
}
.sx-card-pearl .sx-swatch {
  background: conic-gradient(from 210deg, #f7c4de, #c9e7ff, #e7d4ff, #fff1c9, #f7c4de);
}
.sx-card-xiral .sx-swatch {
  background: conic-gradient(from 120deg, #7cffb2, #ff5ad5, #6ad0ff, #ffe36a, #7cffb2);
}
.sx-card-solid .sx-swatch {
  background: conic-gradient(#141517 0 90deg, #c62828 0 180deg, #1f4f7a 0 270deg, #f4efe4 0);
}
.sx-card-clear .sx-swatch {
  background: radial-gradient(circle at 30% 30%, #fff, rgba(210,255,63,.35) 42%, rgba(20,21,23,.12));
}
.sx-card-toner .sx-swatch {
  background: conic-gradient(#e11d48, #f59e0b, #16a34a, #2563eb, #e11d48);
}
.sx-card-spec .sx-swatch {
  background: linear-gradient(145deg, #d2ff3f, #141517);
}
.sx-more {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
}
.sx-more p {
  margin: 0;
  color: #5c5f64;
  max-width: 46ch;
}
.sx-mix-sec {
  background: #141517;
  color: #f4efe4;
  padding: 3.4rem 0 3.6rem;
}
.sx-mix {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .9fr);
  gap: 1.4rem 2.4rem;
  align-items: start;
}
.sx-mix-copy h2 {
  margin: 0 0 .8rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  letter-spacing: -.045em;
  line-height: 1;
  max-width: 14ch;
}
.sx-mix-copy > p {
  margin: 0 0 1.1rem;
  max-width: 46ch;
  color: rgba(244,239,228,.68);
  line-height: 1.55;
}
.sx-mix-brands {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.sx-mix-brands li {
  padding: .28rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(210,255,63,.22);
  color: var(--px-lime);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.sx-mix-links {
  display: grid;
  gap: .45rem;
}
.sx-mix-links a {
  color: rgba(244,239,228,.78);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(210,255,63,.25);
  width: fit-content;
}
.sx-mix-links a:hover { color: var(--px-lime); }
.sx-mix-card {
  display: grid;
  gap: .75rem;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 24px;
  background: #f4efe4;
  color: var(--px-ink);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.sx-mix-card label { display: grid; gap: .32rem; }
.sx-mix-card label[hidden],
.sx-mix-out[hidden] { display: none !important; }
.sx-mix-card label span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6a6d70;
}
.sx-mix-card select,
.sx-mix-card input {
  width: 100%;
  border: 1px solid rgba(20,21,23,.1);
  border-radius: 14px;
  background: #fff;
  padding: .8rem .95rem;
  font: inherit;
  color: var(--px-ink);
}
.sx-mix-card select:focus,
.sx-mix-card input:focus {
  outline: none;
  border-color: #b8c428;
  box-shadow: 0 0 0 3px rgba(210,255,63,.32);
}
.sx-mix-out {
  padding: .9rem 1rem;
  border-radius: 14px;
  background: #141517;
  color: #f4efe4;
  display: grid;
  gap: .2rem;
}
.sx-mix-out small {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--px-lime);
}
.sx-mix-out span { color: rgba(244,239,228,.62); font-size: .88rem; }
.sx-mix-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.sx-mix-actions .px-btn { min-height: 2.55rem; }
@media (max-width: 1100px) {
  .sx-grid { grid-template-columns: 1fr 1fr; }
  .sx-mix { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sx-card { min-height: 140px; }
  .sx-more { flex-direction: column; align-items: flex-start; }
}

/* Главная — тот же язык, что каталог и контакты */
.home-page.px {
  overflow: visible;
  background: #fdfcf9;
}
.home-page .hx-hero {
  padding-top: calc(var(--header-h) + 0.45rem);
  padding-bottom: 2.2rem;
  overflow: hidden;
}
.hx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hx-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 46%;
  filter: saturate(1.08) contrast(1.06);
}
.hx-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 15, 17, .92) 0%, rgba(14, 15, 17, .72) 38%, rgba(14, 15, 17, .28) 68%, rgba(14, 15, 17, .45) 100%),
    linear-gradient(180deg, rgba(14, 15, 17, .28) 0%, transparent 36%, rgba(14, 15, 17, .55) 100%);
}
.home-page .hx-hero .px-glow {
  z-index: 1;
  background: radial-gradient(circle, rgba(210, 255, 63, .18), transparent 64%);
}
.home-page .px-hero-copy h1 { max-width: 11ch; }
.hx-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  margin-top: 1.35rem;
  color: rgba(244, 239, 228, .7);
  font-size: .88rem;
}
.hx-mini strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.05;
}
.hx-phone {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1.15rem;
  padding: .55rem .9rem .55rem .55rem;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background: rgba(20, 21, 23, .45);
  border: 1px solid rgba(210, 255, 63, .28);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.hx-phone:hover {
  transform: translateY(-2px);
  border-color: #d2ff3f;
  background: rgba(20, 21, 23, .7);
}
.hx-phone-ico {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d2ff3f;
  color: #141517;
}
.hx-phone-ico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hx-phone-txt {
  display: grid;
  gap: .08rem;
  padding-right: .25rem;
}
.hx-phone-txt a {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  color: #fff;
  text-decoration: none;
}
.hx-phone-txt a:hover {
  color: #d2ff3f;
}
.hx-phone-txt small {
  color: rgba(210, 255, 63, .85);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hx-match {
  padding: 1rem 1rem 1.1rem;
  border-radius: 24px;
  background: #141517;
  border: 1px solid rgba(210, 255, 63, .18);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .32);
}
.hx-match .hero-match-label {
  color: var(--px-lime);
  margin-bottom: .65rem;
}
.hx-match .hero-match-stage {
  height: 168px;
  background:
    linear-gradient(160deg, rgba(210, 255, 63, .08), transparent 50%),
    #1c1d20;
  border-color: rgba(210, 255, 63, .16);
}
.hx-match .hero-match-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .6rem;
  margin: .75rem 0 .55rem;
}
.hx-match .hero-match-code {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
}
.hx-match .hero-match-name {
  font-size: .82rem;
  color: rgba(244, 239, 228, .62);
}
.hx-match .hero-chip.is-active {
  outline: 2px solid #d2ff3f;
  outline-offset: 2px;
}
.home-page .px-light {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.2rem 0 0;
  background:
    radial-gradient(48rem 48rem at 8% 0%, rgba(210, 255, 63, 0.09), transparent 58%),
    radial-gradient(36rem 36rem at 96% 14%, rgba(20, 21, 23, 0.025), transparent 62%),
    radial-gradient(52rem 52rem at 90% 68%, rgba(210, 255, 63, 0.06), transparent 64%),
    #fdfcf9;
  color: var(--px-ink);
}
.home-page .px-light::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 92px,
      rgba(20, 21, 23, 0.02) 92px 93px
    );
}
.home-page .px-light::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: min(82vw, 780px);
  aspect-ratio: 1;
  left: -24%;
  top: 8%;
  border-radius: 50%;
  border: 96px solid rgba(210, 255, 63, 0.05);
  box-shadow:
    74vw 12vh 0 -48px rgba(20, 21, 23, 0.03),
    52vw 58vh 0 0 transparent,
    52vw 58vh 0 110px rgba(210, 255, 63, 0.038),
    8vw 88vh 0 -20px rgba(20, 21, 23, 0.022);
}
.home-page .px-light > * {
  position: relative;
  z-index: 1;
}
.hx-stats { margin-bottom: .4rem; }
.hx-block { padding: 2.4rem 0 1.2rem; }
.hx-block-tight { padding-top: 1.2rem; }
.hx-block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1.35rem;
}
.hx-block-head h2 {
  margin: 0 0 .5rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--px-ink);
}
.hx-block-head p {
  margin: 0;
  max-width: 46ch;
  color: #5c5f64;
  line-height: 1.5;
}
.hx-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  flex-shrink: 0;
}
.hx-cats-block { padding-bottom: 1.6rem; }
.hx-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(188px, auto);
  gap: .85rem;
}
.hx-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  overflow: hidden;
  text-decoration: none;
  color: var(--px-ink);
  background: #fff;
  border: 1px solid rgba(20, 21, 23, .07);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(20, 21, 23, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hx-cat:hover {
  transform: translateY(-4px);
  border-color: #d2ff3f;
  box-shadow: 0 22px 44px rgba(20, 21, 23, .12);
}
.hx-cat.is-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  min-height: 0;
  background: #141517;
  color: #f3eee4;
  border-color: #141517;
}
.hx-cat.is-wide { grid-column: 1 / 3; }
.hx-cat.is-wide.has-scene {
  min-height: 248px;
}
.hx-cat.is-wide.has-scene .hx-cat-scene { object-position: 80% center; }
.hx-cat-no {
  position: absolute;
  z-index: 2;
  top: .75rem;
  left: .75rem;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: #d2ff3f;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.hx-cat-shot {
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 1.6rem 1rem .2rem;
}
.hx-cat.is-hero .hx-cat-shot {
  margin: 3rem 1rem 0;
  padding: 1.2rem 1.4rem .4rem;
  background: #ece8de;
  border-radius: 18px;
}
.hx-cat-shot img {
  max-width: 78%;
  max-height: 118px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .45s ease;
}
.hx-cat.is-hero .hx-cat-shot img {
  max-width: 72%;
  max-height: 220px;
}
.hx-cat:hover .hx-cat-shot img { transform: scale(1.08) rotate(-3deg); }
.hx-cat-ph {
  width: 42%;
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, #d2ff3f, transparent 62%),
    repeating-linear-gradient(-18deg, rgba(20, 21, 23, .08) 0 8px, transparent 8px 16px);
}
.hx-cat-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .15rem;
  padding: .55rem 1rem 1rem;
}
.hx-cat-meta strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--px-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hx-cat-meta small {
  color: #6d8a12;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hx-cat.is-hero .hx-cat-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem 1.15rem;
}
.hx-cat.is-hero .hx-cat-meta strong {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  letter-spacing: -.045em;
  color: #d2ff3f;
  max-width: 12ch;
}
.hx-cat.is-hero .hx-cat-meta small {
  color: rgba(243, 238, 228, .72);
  text-align: right;
  font-size: .8rem;
}
.hx-cat::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: .7rem;
  right: .7rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 21, 23, .06);
  color: #141517;
  font-size: .9rem;
  font-weight: 800;
  opacity: .55;
  transition: opacity .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.hx-cat:hover::after {
  opacity: 1;
  background: #141517;
  color: #d2ff3f;
  transform: translateX(2px);
}
.hx-cat.is-hero::after {
  background: #d2ff3f;
  color: #141517;
  opacity: 1;
}
.hx-cat.is-hero:hover::after {
  background: #d2ff3f;
  color: #141517;
  transform: translateX(2px);
}
.hx-cat-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  transform: scale(1.04);
  transition: transform .55s ease;
}
.hx-cat.has-scene {
  color: #f3eee4;
  background: #141517;
  border-color: rgba(20, 21, 23, .35);
  min-height: 228px;
}
.hx-cat.has-scene:hover {
  border-color: #d2ff3f;
  box-shadow: 0 22px 44px rgba(20, 21, 23, .18);
}
.hx-cat.has-scene:hover .hx-cat-scene { transform: scale(1.1); }
.hx-cat.has-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(10, 11, 13, .86) 0%, rgba(10, 11, 13, .52) 34%, rgba(10, 11, 13, .12) 58%, transparent 76%),
    linear-gradient(180deg, rgba(10, 11, 13, .22) 0%, transparent 32%, rgba(10, 11, 13, .42) 72%, rgba(10, 11, 13, .82) 100%);
}
.hx-cat.has-scene .hx-cat-no { z-index: 3; }
.hx-cat.has-scene .hx-cat-meta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: .7rem 1rem 1rem;
  max-width: 72%;
}
.hx-cat.has-scene .hx-cat-meta strong {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
}
.hx-cat.has-scene .hx-cat-meta small {
  color: #d2ff3f;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
}
.hx-cat.has-scene::after {
  z-index: 3;
  background: #d2ff3f;
  color: #141517;
  opacity: 1;
}
.hx-cat.has-scene:hover::after {
  background: #d2ff3f;
  color: #141517;
  transform: translateX(2px);
}
.hx-cat.is-hero.has-scene {
  min-height: 0;
}
.hx-cat.is-hero.has-scene .hx-cat-scene { object-position: 78% center; }
.hx-cat.is-hero.has-scene .hx-cat-meta {
  display: grid;
  justify-content: start;
  align-content: end;
  gap: .28rem;
  max-width: 58%;
  padding: 1.15rem 1.25rem 1.2rem;
}
.hx-cat.is-hero.has-scene .hx-cat-meta strong {
  color: #d2ff3f;
  max-width: 12ch;
}
.hx-cat.is-hero.has-scene .hx-cat-meta small {
  color: rgba(243, 238, 228, .86);
  text-align: left;
}
@media (max-width: 980px) {
  .hx-cats {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(168px, auto);
  }
  .hx-cat.is-hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }
  .hx-cat.is-wide { grid-column: 1 / -1; }
  .hx-cat.is-hero .hx-cat-shot img { max-height: 168px; }
  .hx-cat.is-hero.has-scene { min-height: 300px; }
  .hx-cat.is-hero.has-scene .hx-cat-meta { max-width: 70%; }
}
@media (max-width: 640px) {
  .hx-cat.is-hero .hx-cat-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hx-cat.is-hero .hx-cat-meta small { text-align: left; }
  .hx-cat.has-scene .hx-cat-meta,
  .hx-cat.is-hero.has-scene .hx-cat-meta { max-width: 78%; }
  .hx-cat.has-scene { min-height: 176px; }
}
@media (prefers-reduced-motion: reduce) {
  .hx-cat,
  .hx-cat-shot img,
  .hx-cat-scene,
  .hx-cat::after { transition: none; }
  .hx-cat:hover { transform: none; }
  .hx-cat:hover .hx-cat-shot img,
  .hx-cat:hover .hx-cat-scene,
  .hx-cat:hover::after { transform: none; }
}
.home-page .home-cat-tabs {
  background: rgba(20, 21, 23, .04);
  border: 0;
  box-shadow: none;
  border-radius: 18px;
}
.home-page .home-cat-tab {
  color: #5c5f64;
}
.home-page .home-cat-tab:hover {
  color: var(--px-ink);
  background: #fff;
}
.home-page .home-cat-tab.is-active {
  background: #141517;
  color: #d2ff3f;
  border-color: #141517;
}
.home-page .home-cat-tab.is-active span { color: #d2ff3f; }
.home-page .home-cat-tab-link { color: #5c7410; }
.hx-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 21, 23, .05);
}
.hx-foot strong {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  margin-bottom: .2rem;
}
.hx-foot span { color: #5c5f64; font-size: .92rem; }
.hx-service {
  margin-top: 1.4rem;
  padding: 2.8rem 0 3rem;
  background: #141517;
  color: #f4efe4;
}
.hx-service-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1.6rem 2rem;
  align-items: start;
}
.hx-service h2 {
  margin: 0 0 .7rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  letter-spacing: -.045em;
  line-height: 1;
  color: #fff;
}
.hx-service > .wrap > div > p,
.hx-service-grid > div > p {
  margin: 0 0 1.1rem;
  max-width: 42ch;
  color: rgba(244, 239, 228, .64);
  line-height: 1.5;
}
.hx-swatches {
  display: flex;
  gap: .35rem;
  margin: 0 0 1.2rem;
}
.hx-swatches span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.hx-points { grid-template-columns: 1fr 1fr; }
.hx-points article { min-height: 0; }
.hx-points h3 { color: var(--px-ink); }
.hx-promo { margin: 1.4rem 0 0; }
.hx-contacts { padding: 2.4rem 0 1.2rem; }
.hx-contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 1rem;
  align-items: stretch;
  min-width: 0;
}
.hx-contact-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  min-width: 0;
}
.hx-contact-stats > * {
  min-width: 0;
}
.hx-contact-stats b {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(.95rem, 2.6vw, 1.2rem);
}
.hx-contact-stats b.tel-num {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  font-size: clamp(.9rem, 2.2vw, 1.02rem);
}
.hx-map {
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  min-height: 100%;
}
.hx-map .hx-block-actions { margin-top: .4rem; }
@media (max-width: 980px) {
  .hx-service-grid,
  .hx-contacts-grid,
  .hx-block-head {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hx-block-head { align-items: start; }
  .hx-block-head .px-btn { justify-self: start; max-width: 100%; }
  .hx-foot { flex-direction: column; align-items: flex-start; }
  .home-page .px-hero-main { grid-template-columns: 1fr; }
  .hx-match { max-width: 420px; }
}
@media (max-width: 720px) {
  .home-page .hx-contact-stats,
  .hx-contact-stats { grid-template-columns: 1fr; }
  .hx-map .hx-block-actions { width: 100%; }
  .hx-map .px-btn { flex: 1 1 auto; justify-content: center; }
  .home-page .hx-match { display: none; }
  .home-page .hx-mini {
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 1rem 1.35rem;
  }
  .home-page .hx-mini span { min-width: 4.5rem; }
  .home-page .hx-phone {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1.2rem;
    padding: .65rem .85rem .65rem .65rem;
    gap: .7rem;
    box-sizing: border-box;
  }
  .home-page .hx-phone-txt {
    justify-items: center;
    min-width: 0;
    padding-right: 0;
  }
  .home-page .hx-phone-txt a {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: clamp(.88rem, 4.1vw, 1.02rem);
    letter-spacing: 0;
    white-space: nowrap;
  }
  .home-page .hx-phone-txt small {
    letter-spacing: .04em;
  }
}
@media (max-width: 640px) {
  .hx-stats { grid-template-columns: 1fr; }
  .hx-points { grid-template-columns: 1fr 1fr; }
  .hx-contact-stats { grid-template-columns: 1fr; }
  .home-page .hx-hero { padding-bottom: 1.4rem; }
  .hx-mini { gap: .85rem 1.1rem; }
  .hx-block-head .px-btn {
    width: 100%;
    justify-content: center;
  }
}

.hx-blog { padding-bottom: 0.4rem; overflow: hidden; }
.hx-blog-tools {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}
.hx-blog-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20, 21, 23, .14);
  background: #fff;
  color: #141517;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, opacity .18s;
}
.hx-blog-btn:hover:not(:disabled) {
  background: #141517;
  color: #d2ff3f;
  border-color: #141517;
}
.hx-blog-btn:disabled { opacity: .35; cursor: default; }
.hx-blog-viewport { margin-top: .2rem; }
.hx-blog-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(1.25rem, calc((100vw - min(var(--max), calc(100vw - 2.5rem))) / 2));
  padding: .15rem max(1.25rem, calc((100vw - min(var(--max), calc(100vw - 2.5rem))) / 2)) 1.1rem;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.hx-blog-track::-webkit-scrollbar { display: none; }
.hx-blog-track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.hx-blog-track:focus { outline: none; }
.home-page .hx-blog-card,
.home-page .hx-blog-card strong,
.home-page .hx-blog-more {
  color: #141517;
}
.hx-blog-card {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #141517;
  border: 1px solid rgba(20, 21, 23, .07);
  box-shadow: 0 14px 32px rgba(20, 21, 23, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hx-blog-card.is-lead { flex-basis: min(420px, 86vw); }
.hx-blog-card:hover {
  transform: translateY(-4px);
  border-color: #d2ff3f;
  box-shadow: 0 22px 44px rgba(20, 21, 23, .12);
}
.hx-blog-shot {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ece8de;
}
.hx-blog-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.hx-blog-card:hover .hx-blog-shot img { transform: scale(1.06); }
.hx-blog-shot em {
  position: absolute;
  left: .75rem;
  top: .75rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: #d2ff3f;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hx-blog-body {
  display: grid;
  align-content: start;
  gap: .4rem;
  padding: 1rem 1.05rem 1.1rem;
}
.hx-blog-body time {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6d8a12;
}
.hx-blog-body strong {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.hx-blog-card.is-lead .hx-blog-body strong { font-size: 1.28rem; }
.hx-blog-lead {
  color: #5c5f64;
  font-size: .88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hx-blog-more {
  margin-top: .25rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #141517;
}
.hx-blog-card:hover .hx-blog-more { color: #5c7410; }
.hx-blog-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(20, 21, 23, .1);
  overflow: hidden;
  margin: 0 0 .4rem;
}
.hx-blog-progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: #141517;
  transition: transform .2s ease;
}
@media (max-width: 980px) {
  .hx-blog-tools { width: 100%; }
  .hx-blog-tools .px-btn { margin-left: auto; }
}
@media (max-width: 640px) {
  .hx-blog-card,
  .hx-blog-card.is-lead { flex-basis: min(86vw, 340px); }
}

.hx-faq { padding: 2.6rem 0 1.4rem; }
.hx-faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  gap: 1.6rem 2.2rem;
  align-items: start;
}
.hx-faq-grid h2 {
  margin: 0 0 .7rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--px-ink);
}
.hx-faq-grid > div:first-child > p:not(.px-kicker) {
  margin: 0 0 1.1rem;
  max-width: 42ch;
  color: #5c5f64;
  line-height: 1.5;
}
.hx-faq-list { display: grid; gap: .55rem; }
.home-page .hx-faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, .08);
  overflow: hidden;
  color: var(--px-ink);
  box-shadow: 0 10px 24px rgba(20, 21, 23, .04);
}
.home-page .hx-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.3;
  color: var(--px-ink);
}
.home-page .hx-faq-item summary::-webkit-details-marker { display: none; }
.home-page .hx-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d2ff3f;
  color: #141517;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}
.home-page .hx-faq-item[open] summary::after { content: "–"; }
.home-page .hx-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: #5c5f64;
  line-height: 1.6;
  max-width: 70ch;
}
.hx-seo {
  padding: 1.6rem 0 4rem;
  border-top: 1px solid rgba(20, 21, 23, .08);
}
.hx-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
  gap: 1.6rem 2rem;
  align-items: start;
}
.hx-seo h2 {
  margin: 0 0 1.1rem;
  max-width: 22ch;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--px-ink);
}
.hx-seo-body {
  display: grid;
  gap: .85rem 2rem;
  max-width: 78ch;
}
.hx-seo-shot {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ece8de;
  box-shadow: 0 18px 40px rgba(20, 21, 23, .1);
  aspect-ratio: 3 / 4;
}
.hx-seo-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hx-seo-body h3 {
  margin: .55rem 0 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -.03em;
  color: var(--px-ink);
}
.hx-seo-body p {
  margin: 0;
  color: #5c5f64;
  line-height: 1.65;
  font-size: .98rem;
}
.hx-seo-body a {
  color: #3d4e0c;
  font-weight: 700;
  text-underline-offset: 3px;
}
.hx-seo-body a:hover { color: #141517; }
.hx-seo-body strong { color: var(--px-ink); }
@media (max-width: 980px) {
  .hx-faq-grid { grid-template-columns: 1fr; }
  .hx-seo-grid { grid-template-columns: 1fr; }
  .hx-seo-shot { max-width: 420px; aspect-ratio: 16 / 11; }
}

.sp-intro {
  padding: 2.4rem 0 0;
}
.sp-intro h2 {
  margin: 0 0 .85rem;
  max-width: 18ch;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--px-ink);
}
.sp-intro p:last-child {
  margin: 0;
  max-width: 68ch;
  color: #5c5f64;
  line-height: 1.65;
  font-size: 1.02rem;
}
.sp-docs { padding: 1.6rem 0 1.2rem; }
.sp-docs-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: .85rem;
  align-items: stretch;
}
.sp-doc {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 24px;
  text-decoration: none;
  color: var(--px-ink);
  background: #fff;
  border: 1px solid rgba(20, 21, 23, .07);
  box-shadow: 0 12px 28px rgba(20, 21, 23, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sp-doc:hover {
  transform: translateY(-4px);
  border-color: #d2ff3f;
  box-shadow: 0 22px 44px rgba(20, 21, 23, .12);
}
.sp-doc.is-hero {
  background: #141517;
  color: #f3eee4;
  border-color: #141517;
}
.sp-doc-no {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: #d2ff3f;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.sp-doc-kind {
  align-self: flex-end;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6d8a12;
}
.sp-doc.is-hero .sp-doc-kind { color: rgba(243, 238, 228, .55); }
.sp-doc h3 {
  margin: 2.2rem 0 .35rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -.035em;
  line-height: 1.1;
  color: inherit;
}
.sp-doc.is-hero h3 { color: #d2ff3f; }
.sp-doc b {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .92rem;
  margin-bottom: .7rem;
}
.sp-doc p {
  margin: 0 0 auto;
  color: #5c5f64;
  line-height: 1.55;
  font-size: .95rem;
}
.sp-doc.is-hero p { color: rgba(243, 238, 228, .68); }
.sp-doc-cta {
  margin-top: 1.2rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: .88rem;
}
.sp-doc.is-hero .sp-doc-cta { color: #d2ff3f; }
.sp-body { padding: 1.2rem 0 3.2rem; }
.sp-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: 1.4rem 2rem;
  align-items: start;
}
.sp-body h2 {
  margin: 0 0 .85rem;
  max-width: 16ch;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--px-ink);
}
.sp-body article p {
  margin: 0 0 .85rem;
  color: #5c5f64;
  line-height: 1.65;
}
.sp-body article a {
  color: #3d4e0c;
  font-weight: 700;
}
.sp-body aside {
  display: grid;
  gap: .45rem;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 22px;
  background: #141517;
  color: #f3eee4;
}
.sp-body aside h3 {
  margin: 0 0 .35rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: -.03em;
  color: #d2ff3f;
}
.sp-body aside a {
  color: rgba(243, 238, 228, .82);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.sp-body aside a:hover { color: #d2ff3f; }
@media (max-width: 980px) {
  .sp-docs-grid,
  .sp-body-grid { grid-template-columns: 1fr; }
}

.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: .9rem 1.2rem;
  flex-wrap: wrap;
}
.footer-login {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: #d2ff3f;
  color: #141517 !important;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
}
.footer-login:hover { filter: brightness(1.05); }

.cab-login-grid { align-items: start; }
.cab-login {
  display: grid;
  gap: .75rem;
  padding: 1.4rem 1.35rem 1.45rem;
  border-radius: 24px;
  background: #f4efe4;
  color: #141517;
  box-shadow: 0 24px 56px rgba(0,0,0,.28);
}
.cab-login h2 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: -.04em;
}
.cab-login label { display: grid; gap: .3rem; font-size: .82rem; font-weight: 700; }
.cab-login input {
  border: 1px solid rgba(20,21,23,.14);
  border-radius: 14px;
  padding: .75rem .85rem;
  font: inherit;
  background: #fff;
}
.cab-login .px-btn { margin-top: .35rem; justify-content: center; }
.cab-error {
  margin: 0;
  padding: .65rem .75rem;
  border-radius: 12px;
  background: #fde8e4;
  color: #8a2b1a;
  font-size: .88rem;
}

.cab-body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  background: #f4efe4;
  color: #141517;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}
.cab-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.3rem 1.05rem 1.4rem;
  background: #141517;
  color: #f3eee4;
}
.cab-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #d2ff3f;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 800;
}
.cab-logo img { width: 36px; height: 36px; object-fit: contain; }
.cab-side-top { display: contents; }
.cab-nav-toggle { display: none; }
.cab-side nav { display: grid; gap: .25rem; }
.cab-side nav a {
  padding: .7rem .8rem;
  border-radius: 12px;
  color: rgba(243,238,228,.78);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.cab-side nav a:hover,
.cab-side nav a.is-on { background: rgba(210,255,63,.12); color: #d2ff3f; }
.cab-side-foot { margin-top: auto; display: grid; gap: .35rem; }
.cab-side-foot a { color: rgba(243,238,228,.55); text-decoration: none; font-size: .85rem; }
.cab-side-foot a:hover { color: #d2ff3f; }
.cab-main { padding: 1.6rem 1.6rem 3rem; }
.cab-head { margin-bottom: 1.2rem; }
.cab-head-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}
.cab-head p { margin: 0 0 .35rem; color: #5c5f64; font-size: .85rem; font-weight: 700; }
.cab-head h1 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: -.04em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.cab-head h1 small { color: #6d8a12; font-size: .55em; }
.cab-head a { color: #3d4e0c; font-weight: 700; }
.cab-flash {
  padding: .7rem .9rem;
  border-radius: 12px;
  background: #d2ff3f;
  color: #141517;
  font-weight: 700;
}
.cab-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.cab-stats article {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20,21,23,.05);
}
.cab-stats article.is-lime { background: #141517; color: #d2ff3f; }
.cab-stats b {
  display: block;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
}
.cab-stats span { color: #5c5f64; font-size: .82rem; }
.cab-stats article.is-lime span { color: rgba(243,238,228,.6); }
.cab-block-h {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  margin: .4rem 0 .75rem;
}
.cab-stats-views {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.cab-views-grid {
  margin-bottom: 1.4rem;
}
.cab-views-grid section {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20,21,23,.05);
}
.cab-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cab-two h2 { font-family: Inter, system-ui, -apple-system, sans-serif; font-size: 1.15rem; margin: 0 0 .7rem; }
.cab-bars { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.cab-bars li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem .7rem;
  font-size: .88rem;
}
.cab-bars span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cab-bars a { color: inherit; text-decoration: none; font-weight: 650; }
.cab-bars a:hover { color: #5a7a12; }
.cab-bars b small {
  display: block;
  font-weight: 500;
  color: #5c5f64;
  font-size: .72rem;
}
.cab-bars i {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 99px;
  background: rgba(20,21,23,.08);
  position: relative;
}
.cab-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 0);
  border-radius: inherit;
  background: #d2ff3f;
}
.cab-search { display: flex; gap: .5rem; margin-bottom: 1rem; }
.cab-search input {
  flex: 1;
  border: 1px solid rgba(20,21,23,.12);
  border-radius: 14px;
  padding: .75rem .9rem;
  font: inherit;
}
.cab-table-wrap { overflow: auto; background: #fff; border-radius: 18px; box-shadow: 0 10px 24px rgba(20,21,23,.05); }
.cab-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.cab-table th, .cab-table td { padding: .75rem .9rem; text-align: left; border-bottom: 1px solid rgba(20,21,23,.06); vertical-align: top; }
.cab-table th { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: #5c5f64; }
.cab-table a { color: #141517; font-weight: 700; text-decoration: none; }
.cab-table small { display: block; color: #5c5f64; font-weight: 500; margin-top: .15rem; }
.cab-pager { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1rem; }
.cab-pager a {
  min-width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #141517;
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
}
.cab-pager a.is-on { background: #141517; color: #d2ff3f; }
.cab-form, .cab-leads { display: grid; gap: .8rem; max-width: 760px; }
.cab-form label, .cab-login label { display: grid; gap: .3rem; font-size: .82rem; font-weight: 700; }
.cab-form input, .cab-form textarea {
  border: 1px solid rgba(20,21,23,.12);
  border-radius: 14px;
  padding: .75rem .85rem;
  font: inherit;
  background: #fff;
}
.cab-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
@media (min-width: 900px) {
  .cab-product-fields .cab-form-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.cab-checks { display: flex; gap: 1rem; font-size: .9rem; }
.cab-checks label { display: flex; align-items: center; gap: .4rem; font-weight: 700; }
.cab-form-actions { margin-top: .4rem; }
.cab-danger { margin-top: 2rem; }
.cab-danger button {
  border: 0;
  background: transparent;
  color: #8a2b1a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cab-leads { max-width: 720px; }
.cab-leads article {
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(20,21,23,.05);
}
.cab-leads header { display: flex; justify-content: space-between; gap: 1rem; }
.cab-leads time { color: #5c5f64; font-size: .8rem; }
.cab-lead-page { color: #5c5f64; font-size: .86rem; }
.cab-lead-page a { color: inherit; }
.cab-lead-photos {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .35rem 0 .2rem;
}
.cab-lead-photos a {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #ece8e0;
}
.cab-lead-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cab-leads button {
  border: 0;
  background: none;
  color: #8a2b1a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cab-empty { color: #5c5f64; }

.cab-prod-tools {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  padding: .45rem 0 .75rem;
  background: #f4efe4;
}
.cab-prod-tools input[type="search"],
.cab-prod-tools select {
  border: 1px solid rgba(20,21,23,.1);
  border-radius: 12px;
  background: #fff;
  padding: .7rem .85rem;
  font: inherit;
  min-width: 0;
}
.cab-prod-tools input[type="search"] { flex: 1 1 240px; }
.cab-prod-tools select { flex: 0 1 240px; }
.cab-select-all {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: #3d3f44;
  white-space: nowrap;
}
.cab-bulk-del {
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: #fde8e4;
  color: #8a2b1a;
  font: inherit;
  font-weight: 700;
  padding: .65rem 1rem;
  cursor: pointer;
}
.cab-bulk-del:hover { background: #f8d2ca; }
.cab-prod-grid {
  display: grid;
  gap: .4rem;
}
.cab-prod-grid:not(:has(.cab-prod:not([hidden])))::after {
  content: 'Ничего не найдено. Сбросьте поиск или раздел.';
  display: block;
  padding: 1.4rem .4rem;
  color: #5c5f64;
}
.cab-prod {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border-radius: 16px;
  padding: .45rem .7rem .45rem .55rem;
  box-shadow: 0 8px 20px rgba(20,21,23,.04);
}
.cab-prod[hidden] { display: none !important; }
.cab-prod-check { display: grid; place-items: center; padding: .3rem; }
.cab-prod-check input { width: 1.05rem; height: 1.05rem; accent-color: #141517; }
.cab-prod-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4efe4;
}
.cab-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cab-prod-meta { min-width: 0; }
.cab-prod-meta a {
  display: block;
  color: #141517;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.25;
}
.cab-prod-meta a:hover { color: #5c7410; }
.cab-prod-meta small {
  display: block;
  color: #6a6d70;
  margin-top: .15rem;
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cab-prod-meta b {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin-top: .2rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0;
}
.cab-var-badge {
  display: inline-flex;
  align-items: center;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: rgba(210, 255, 63, .35);
  color: #2a2a2a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cab-prod.is-variable .cab-prod-meta b {
  color: #141517;
}
.cab-prod-meta em {
  margin-left: .45rem;
  font-style: normal;
  color: #6a6d70;
  font-size: .78rem;
  font-weight: 700;
}
.cab-prod-edit {
  color: #141517;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: #d2ff3f;
  white-space: nowrap;
}
.cab-prod-edit:hover { transform: translateY(-1px); }

.cab-product-form { max-width: none; }
.cab-product-form h2 {
  margin: 0 0 .7rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
}
.cab-product-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.cab-photo-card,
.cab-product-fields section {
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: 0 10px 24px rgba(20,21,23,.05);
}
.cab-product-fields { display: grid; gap: .9rem; }
.cab-photo {
  display: grid;
  gap: .7rem;
  justify-items: start;
}
.cab-photo img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  background: #f4efe4;
}
.cab-photo-pick {
  display: inline-flex;
  cursor: pointer;
}
.cab-photo-pick input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cab-photo-pick span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: #141517;
  color: #d2ff3f;
  font-weight: 700;
}
.cab-hint { margin: .7rem 0 0; color: #6a6d70; font-size: .8rem; line-height: 1.4; }
.cab-cat-box {
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: .15rem;
  padding: .2rem;
  border: 1px solid rgba(20,21,23,.06);
  border-radius: 12px;
  background: #faf8f3;
}
.cab-cat-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .45rem;
  align-items: center;
  padding: .4rem .55rem .4rem calc(.55rem + var(--d) * 14px);
  border-radius: 8px;
  font-weight: 600;
}
.cab-cat-item:hover { background: rgba(210,255,63,.28); }
.cab-cat-item small { color: #6a6d70; font-size: .75rem; }
.cab-blog-body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88rem;
  line-height: 1.5;
  min-height: 22rem;
}

.cab-media-up {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: end;
}
.cab-media-up label,
.cab-media-file {
  display: grid;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
}
.cab-media-up select,
.cab-media-up input[type="file"] {
  width: 100%;
  border: 1px solid rgba(20,21,23,.1);
  border-radius: 12px;
  background: #faf8f3;
  padding: .65rem .75rem;
  font: inherit;
}
.cab-media-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
  position: sticky;
  top: 0;
  z-index: 4;
  background: #f4efe4;
  padding: .4rem 0 .75rem;
}
.cab-media-tools input[type="search"] {
  flex: 1 1 220px;
  border: 1px solid rgba(20,21,23,.1);
  border-radius: 12px;
  background: #fff;
  padding: .7rem .85rem;
  font: inherit;
}
.cab-media-folders {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.cab-media-folders a {
  padding: .45rem .7rem;
  border-radius: 999px;
  background: #fff;
  color: #141517;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
}
.cab-media-folders a.is-on { background: #141517; color: #d2ff3f; }
.cab-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .7rem;
}
.cab-media-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(20,21,23,.04);
  display: grid;
  grid-template-rows: 140px auto;
}
.cab-media-card[hidden] { display: none !important; }
.cab-media-check {
  position: absolute;
  top: .45rem;
  left: .45rem;
  z-index: 2;
  background: rgba(255,255,255,.9);
  border-radius: 6px;
  padding: .15rem;
}
.cab-media-shot {
  border: 0;
  padding: 0;
  background: #f4efe4;
  cursor: zoom-in;
  overflow: hidden;
}
.cab-media-shot img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.cab-media-filecard {
  display: grid;
  place-items: center;
  height: 140px;
  background: #141517;
  color: #d2ff3f;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 800;
  text-decoration: none;
}
.cab-media-meta { padding: .55rem .65rem .7rem; }
.cab-media-meta strong {
  display: block;
  font-size: .78rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cab-media-meta small { color: #6a6d70; font-size: .72rem; }
.cab-media-acts { display: flex; gap: .45rem; margin-top: .4rem; }
.cab-media-copy,
.cab-media-del {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.cab-media-copy { color: #3d4e0c; }
.cab-media-del { color: #8a2b1a; }
.cab-media-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,21,23,.78);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.cab-media-lightbox[hidden] { display: none !important; }
.cab-media-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.cab-media-light-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #d2ff3f;
  color: #141517;
  font-size: 1.6rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .cab-media-up { grid-template-columns: 1fr; }
}

.cab-tax-card {
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.05rem 1.15rem;
  box-shadow: 0 10px 24px rgba(20,21,23,.05);
  margin-bottom: 1rem;
}
.cab-tax-card h2,
.cab-tax-edit h2 {
  margin: 0 0 .75rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
}
.cab-tax-create,
.cab-brand-create,
.cab-tax-edit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  align-items: end;
}
.cab-brand-create { grid-template-columns: minmax(0, 1fr) auto; }
.cab-tax-span { grid-column: 1 / -1; }
.cab-tax-create label,
.cab-brand-create label,
.cab-tax-edit label {
  display: grid;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
}
.cab-tax-create input,
.cab-tax-create select,
.cab-tax-create textarea,
.cab-brand-create input,
.cab-tax-edit input,
.cab-tax-edit select,
.cab-tax-edit textarea {
  width: 100%;
  border: 1px solid rgba(20,21,23,.1);
  border-radius: 12px;
  background: #faf8f3;
  padding: .7rem .8rem;
  font: inherit;
}
.cab-tax-list,
.cab-brand-list { display: grid; gap: .4rem; }
.cab-tax-row {
  background: #fff;
  border-radius: 16px;
  padding: .65rem .8rem;
  box-shadow: 0 8px 20px rgba(20,21,23,.04);
}
.cab-tax-main {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  align-items: center;
  padding-left: calc(var(--d, 0) * 1.1rem);
}
.cab-tax-main strong { display: block; }
.cab-tax-main small { display: block; color: #6a6d70; margin-top: .15rem; font-size: .78rem; }
.cab-tax-acts {
  display: flex;
  gap: .55rem;
  align-items: center;
  flex: 0 0 auto;
}
.cab-tax-acts a {
  color: #141517;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: #d2ff3f;
}
.cab-tax-acts form { margin: 0; }
.cab-tax-acts button {
  border: 0;
  background: none;
  color: #8a2b1a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: .4rem .2rem;
}
.cab-tax-edit {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(20,21,23,.06);
}
@media (max-width: 900px) {
  .cab-tax-create, .cab-tax-edit { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .cab-product-grid { grid-template-columns: 1fr; }
  .cab-prod {
    grid-template-columns: auto 52px minmax(0, 1fr);
  }
  .cab-prod-edit { display: none; }
  .cab-body { grid-template-columns: 1fr; }
  .cab-side {
    position: sticky;
    top: 0;
    z-index: 30;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: .7rem .9rem .75rem;
  }
  .cab-side-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
  }
  .cab-logo span { font-size: 1.05rem; }
  .cab-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .4rem .85rem;
    border: 0;
    border-radius: 999px;
    background: #d2ff3f;
    color: #141517;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
  }
  .cab-side nav,
  .cab-side-foot { display: none; }
  .cab-side.is-open nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem;
    margin-top: .75rem;
  }
  .cab-side.is-open .cab-side-foot {
    display: flex;
    gap: 1rem;
    margin: .65rem 0 0;
  }
  .cab-side nav a {
    padding: .58rem .7rem;
    font-size: .86rem;
    background: rgba(255,255,255,.04);
  }
  .cab-stats,
  .cab-stats-views {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }
  .cab-stats article {
    padding: .75rem .8rem .7rem;
    border-radius: 14px;
  }
  .cab-stats b { font-size: 1.15rem; }
  .cab-stats span { font-size: .75rem; }
  .cab-two,
  .cab-form-row { grid-template-columns: 1fr; }
  .cab-main { padding: 1rem .9rem 2.2rem; }
  .cab-head-row {
    flex-direction: column;
    align-items: stretch;
    gap: .7rem;
  }
  .cab-head h1 { font-size: 1.55rem; }
  .cab-prod-tools {
    position: static;
    padding: 0 0 .7rem;
  }
  .cab-prod-tools input[type="search"],
  .cab-prod-tools select,
  .cab-bulk-del {
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
  }
  .cab-search { flex-wrap: wrap; }
  .cab-leads header { flex-wrap: wrap; }
  .cab-checks { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .cab-stats,
  .cab-stats-views { grid-template-columns: 1fr 1fr; }
  .cab-two,
  .cab-form-row { grid-template-columns: 1fr; }
  .cab-main { padding: .9rem .8rem 2.2rem; }
}

.faq-list-h {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -.03em;
}

/* Единый шрифт Inter на всём сайте */
html, body,
button, input, select, textarea,
.px-btn, .btn,
h1, h2, h3, h4, h5, h6 {
  font-family: Inter, system-ui, -apple-system, sans-serif !important;
}


/* ——— MIX система (/mix_system) ——— */
.mix-sys .mix-map {
  padding: 3.5rem 0 2.5rem;
}
.mix-map-title {
  margin: 0.35rem 0 1.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.mix-map-stage {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 340px) 1fr;
  gap: 1.25rem 1.5rem;
  align-items: center;
}
.mix-map-col {
  display: grid;
  gap: 0.75rem;
}
.mix-map-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
  text-decoration: none;
  color: #141517;
  box-shadow: 0 10px 24px rgba(20, 21, 23, 0.04);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.mix-map-item:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 21, 23, 0.16);
  box-shadow: 0 14px 28px rgba(20, 21, 23, 0.08);
}
.mix-map-name {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.mix-map-item strong {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 21, 23, 0.06);
}
.mix-tone-spec strong { background: rgba(210, 255, 63, 0.35); }
.mix-tone-toner strong { background: rgba(230, 120, 60, 0.18); }
.mix-tone-xiral strong { background: rgba(120, 80, 200, 0.16); }
.mix-tone-pearl strong { background: rgba(180, 140, 220, 0.2); }
.mix-tone-cmetal strong { background: rgba(60, 140, 200, 0.16); }
.mix-tone-metal strong { background: rgba(140, 150, 160, 0.25); }
.mix-tone-solid strong { background: rgba(40, 40, 40, 0.1); }
.mix-tone-clear strong { background: rgba(120, 190, 220, 0.2); }
.mix-map-visual {
  margin: 0;
  text-align: center;
}
.mix-map-visual img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: inline-block;
}
.mix-map-more {
  margin-top: 1.75rem;
  text-align: center;
}

.mix-conv-sec {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
.mix-conv-head {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}
.mix-conv-head h2 {
  margin: 0.3rem 0 0.7rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  text-transform: lowercase;
}
.mix-conv-head h2::first-letter {
  text-transform: uppercase;
}
.mix-conv-head p {
  margin: 0;
  color: var(--muted, #6b7280);
  line-height: 1.55;
}

#color-mix-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
#color-mix {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 21, 23, 0.06);
  border: 1px solid rgba(20, 21, 23, 0.06);
}
#color-mix thead {
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5e5;
}
#color-mix th,
#color-mix td {
  padding: 12px 14px;
  vertical-align: middle;
  box-sizing: border-box;
}
#color-mix th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
  color: #3a3a3a;
}
#color-mix th:nth-child(1),
#color-mix td:nth-child(1),
#color-mix th:nth-child(2),
#color-mix td:nth-child(2),
#color-mix th:nth-child(3),
#color-mix td:nth-child(3) { width: 28%; }
#color-mix th:nth-child(4),
#color-mix td:nth-child(4) { width: 16%; }
#color-mix select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
#color-mix select:focus {
  border-color: #afcb1f;
  outline: none;
}
#color-mix td:last-child {
  color: #7a9a12;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
#color-mix .no-mix { color: #b42318; font-weight: 700; }
#color-mix .mix-buy-link {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
}
#color-mix .mix-buy-link a { color: #141517; text-decoration: underline; }
.mix-result-message {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
}
.mix-result-message b,
.mix-result-message a {
  color: #7a9a12;
}

.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.mix-catalog-sec {
  padding: 3.25rem 0 4rem;
  background: #fff;
  color: #141517;
}
.mix-catalog-head {
  text-align: center;
  margin-bottom: 2rem;
  color: #141517;
}
.mix-catalog-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #141517;
}
.mix-catalog-found {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}
.mix-catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
}
.mix-catalog-side {
  position: sticky;
  top: 5.5rem;
}
.mix-catalog-filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.mix-catalog-filters button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #141517;
  padding: 0.28rem 0;
  margin: 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s, font-weight 0.15s;
}
.mix-catalog-filters button:hover {
  color: #000;
}
.mix-catalog-filters button.is-on {
  font-weight: 800;
  color: #141517;
}
.mix-catalog-main {
  min-width: 0;
}
.mix-catalog-search {
  position: relative;
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 0 1.25rem auto;
}
.mix-catalog-search input {
  width: 100%;
  padding: 0.65rem 2.4rem 0.65rem 0.9rem;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
}
.mix-catalog-search input:focus {
  outline: none;
  border-color: #afcb1f;
}
.mix-catalog-search svg {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8a8f98;
  pointer-events: none;
}
.mix-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1rem;
}
.mix-cat-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.mix-cat-card.is-hit .mix-cat-img {
  outline: 2px solid #afcb1f;
  outline-offset: 2px;
}
.mix-cat-card:hover {
  transform: none;
  box-shadow: none;
}
.mix-cat-card:hover .mix-cat-img img {
  transform: scale(1.03);
}
.mix-cat-img {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
}
.mix-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.mix-cat-ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-weight: 800;
  font-size: 1.4rem;
  color: #8a8f98;
}
.mix-cat-body {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0 0;
}
.mix-cat-body h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.mix-cat-type {
  font-size: 0.88rem;
  font-weight: 700;
  color: #141517;
}
.mix-cat-body p {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #3a3a3a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  font-weight: 400;
}
.mix-cat-part,
.mix-cat-btn {
  display: none;
}
.mix-catalog-more {
  margin-top: 1.75rem;
  text-align: center;
}
.mix-cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #6b7280;
}

@media (max-width: 960px) {
  .mix-map-stage {
    grid-template-columns: 1fr;
  }
  .mix-map-visual { order: -1; }
  .mix-map-visual img { max-width: 260px; }
  .mix-catalog-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .mix-catalog-side {
    position: static;
  }
  .mix-catalog-filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }
  .mix-catalog-filters button {
    font-size: 0.86rem;
  }
  .mix-catalog-search {
    margin: 0 0 1rem;
    max-width: none;
  }
  .mix-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #color-mix, #color-mix thead, #color-mix tbody, #color-mix tr, #color-mix th, #color-mix td {
    display: block;
    width: 100% !important;
  }
  #color-mix thead { display: none; }
  #color-mix td {
    padding: 0.55rem 0.85rem;
  }
  #color-mix td:last-child {
    text-align: left;
    padding-bottom: 1rem;
  }
}
@media (max-width: 560px) {
  .mix-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.65rem;
  }
  .mix-cat-body h3 {
    font-size: 0.95rem;
  }
  .mix-cat-type {
    font-size: 0.78rem;
  }
  .mix-cat-body p {
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
  }
}


/* ——— Rumix (/rumix) ——— */
.rumix-video-sec {
  padding: 3.2rem 0 2.5rem;
  background: #f3f3f3;
}
.rumix-video-head {
  margin-bottom: 1.25rem;
}
.rumix-video-head h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: #141517;
}
.rumix-video {
  border-radius: 18px;
  overflow: hidden;
  background: #0b0c0d;
  box-shadow: 0 20px 48px rgba(20, 21, 23, 0.14);
  border: 1px solid rgba(20, 21, 23, 0.08);
}
.rumix-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.rumix-about {
  padding: 3.5rem 0;
  background: #fff;
  color: #141517;
}
.rumix-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem 2.5rem;
  align-items: start;
}
.rumix-about-copy h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: #141517;
  max-width: 22ch;
}
.rumix-about-copy > p {
  margin: 0 0 0.95rem;
  line-height: 1.6;
  color: #3a3f46;
  max-width: 62ch;
}
.rumix-scopes {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.rumix-scopes li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 650;
  color: #141517;
}
.rumix-scopes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #d2ff3f;
  box-shadow: 0 0 0 3px rgba(210, 255, 63, 0.25);
}
.rumix-result {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f6f7f8;
  border: 1px solid rgba(20, 21, 23, 0.06);
}
.rumix-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.rumix-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 21, 23, 0.05);
}
.rumix-aside-shot {
  margin: 0 0 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 21, 23, 0.08);
  background: #111;
}
.rumix-aside-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.rumix-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: center;
}
.rumix-logos img {
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  background: #f6f7f8;
  border-radius: 12px;
  padding: 0.75rem;
  border: 1px solid rgba(20, 21, 23, 0.06);
}

.rumix-pillars {
  padding: 3.2rem 0 3.6rem;
  background: #141517;
  color: #f4efe4;
}
.rumix-pillars-head {
  margin-bottom: 1.5rem;
}
.rumix-pillars-head h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: #fff;
}
.rumix-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.rumix-pillar {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.rumix-pillar-n {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #d2ff3f;
  margin-bottom: 0.65rem;
}
.rumix-pillar h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  color: #fff;
}
.rumix-pillar p {
  margin: 0;
  line-height: 1.55;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .rumix-about-grid,
  .rumix-pillars-grid {
    grid-template-columns: 1fr;
  }
  .rumix-logos {
    max-width: 360px;
  }
}


/* ——— Digital (/digital) ——— */
.dig-tg {
  background: #141517;
  color: #f4efe4;
  padding: 1.1rem 0;
}
.dig-tg-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}
.dig-tg-row p {
  margin: 0;
  font-size: 1rem;
}
.dig-tg-row a {
  color: #d2ff3f;
  text-decoration: none;
}
.dig-tg-row .px-btn {
  flex-shrink: 0;
}

.dig-quick {
  padding: 2rem 0 1rem;
  background: #f3f3f3;
}
.dig-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.dig-quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.06);
  text-decoration: none;
  color: #141517;
  box-shadow: 0 10px 22px rgba(20, 21, 23, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
}
.dig-quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 21, 23, 0.08);
}
.dig-quick-card strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.dig-quick-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7280;
}

.dig-soft {
  padding: 3rem 0 2.5rem;
  background: #fff;
  color: #141517;
}
.dig-sec-head {
  margin-bottom: 1.4rem;
}
.dig-sec-head h2,
.dig-formula h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  color: #141517;
}
.dig-sec-head-light h2 {
  color: #fff;
}
.dig-soft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.dig-soft-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(20, 21, 23, 0.08);
  background: #f7f7f8;
}
.dig-soft-img {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.06);
  display: grid;
  place-items: center;
  min-height: 120px;
}
.dig-soft-img img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
}
.dig-soft-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #6b7280;
}
.dig-soft-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  color: #141517;
}
.dig-soft-body p {
  margin: 0 0 0.9rem;
  color: #3a3f46;
  line-height: 1.5;
  font-size: 0.92rem;
}
.dig-soft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dig-formula {
  padding: 3rem 0;
  background: #f3f3f3;
  color: #141517;
}
.dig-formula-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1.5rem 2rem;
  align-items: start;
}
.dig-formula-lead {
  margin: 0.85rem 0 0.9rem;
  max-width: 54ch;
  line-height: 1.55;
  color: #3a3f46;
}
.dig-formula-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.dig-formula-list li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 650;
}
.dig-formula-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #d2ff3f;
  box-shadow: 0 0 0 3px rgba(210, 255, 63, 0.25);
}
.dig-portal-card {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 18px;
  background: #141517;
  color: #f4efe4;
  display: grid;
  gap: 0.65rem;
}
.dig-portal-card .dig-soft-kicker { color: rgba(244, 239, 228, 0.55); }
.dig-portal-card h3 { margin: 0; color: #fff; font-size: 1.25rem; }
.dig-portal-card p { margin: 0; color: rgba(244, 239, 228, 0.72); line-height: 1.5; font-size: 0.92rem; }
.dig-portal-card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem;
}
.dig-portal-card .px-btn { justify-self: start; margin-top: 0.25rem; }

.dig-videos {
  padding: 3.2rem 0 3.6rem;
  background: #141517;
  color: #f4efe4;
}
.dig-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.dig-video-card h3 {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #fff;
  font-weight: 700;
}
.dig-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dig-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 960px) {
  .dig-quick-grid,
  .dig-soft-grid,
  .dig-formula-grid,
  .dig-video-grid {
    grid-template-columns: 1fr;
  }
  .dig-soft-card {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 701px) and (max-width: 960px) {
  .dig-quick-grid,
  .dig-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nav-city { display: none; }

/* —— City picker (80 cities) —— */
.city-dd {
  position: relative;
  flex: 0 0 auto;
  z-index: 80;
}
.city-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 11.5rem;
  height: 40px;
  padding: 0 0.7rem 0 0.6rem;
  border: 1px solid rgba(20, 21, 23, 0.1);
  border-radius: 12px;
  background: #2a2a2a;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.city-trigger:hover,
.city-dd.is-open .city-trigger {
  background: #141517;
  border-color: rgba(20, 21, 23, 0.2);
}
.city-trigger.is-active {
  background: #2a2a2a;
}
.city-ico,
.city-caret {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.city-caret {
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.city-dd.is-open .city-caret {
  transform: rotate(180deg);
}
.city-trigger-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.city-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(420px, calc(100vw - 1.5rem));
  max-height: min(70vh, 520px);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
  box-shadow: 0 18px 40px rgba(20, 21, 23, 0.16);
  z-index: 120;
  overflow: hidden;
}
.city-panel[hidden] {
  display: none !important;
}
.city-panel-head strong {
  display: block;
  font-size: 0.92rem;
  color: #141517;
}
.city-panel-head p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.35;
}
.city-search input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  background: #f8faf9;
  color: #141517;
}
.city-search input:focus {
  outline: 2px solid rgba(61, 92, 74, 0.35);
  outline-offset: 1px;
  background: #fff;
}
.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  overflow: auto;
  max-height: 340px;
  padding-right: 0.15rem;
  -webkit-overflow-scrolling: touch;
}
.city-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  text-decoration: none;
  color: #141517;
  line-height: 1.25;
}
.city-item strong {
  font-size: 0.86rem;
  font-weight: 600;
}
.city-item small {
  font-size: 0.72rem;
  color: #6b7280;
}
.city-item:hover,
.city-item.is-on {
  background: rgba(61, 92, 74, 0.1);
}
.city-all {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem;
  border-radius: 10px;
  background: #f3f4f6;
  color: #141517;
  text-decoration: none;
}
.city-all:hover { background: #e8e8e8; }

@media (max-width: 960px) {
  .app-actions > .city-dd { display: none; }
  .nav-city {
    display: block;
    margin: 0 0 0.35rem;
  }
  .nav-city .city-dd { width: 100%; }
  .nav-city .city-trigger {
    width: 100%;
    max-width: none;
    height: 46px;
    justify-content: flex-start;
    padding: 0 0.85rem;
  }
  .nav-city .city-trigger-txt {
    max-width: none;
  }
  .nav-city .city-caret { margin-left: auto; }
  .nav-city .city-panel {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-height: min(52vh, 420px);
    margin-top: 0.45rem;
    box-shadow: none;
  }
  .city-trigger {
    max-width: 9.5rem;
    height: 38px;
    padding: 0 0.55rem;
    font-size: 0.72rem;
  }
  .city-panel {
    position: fixed;
    top: calc(var(--header-h, 72px) + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    max-height: calc(100vh - var(--header-h, 72px) - 1.5rem);
  }
  .city-list {
    grid-template-columns: 1fr;
    max-height: min(55vh, 360px);
  }
}
@media (max-width: 520px) {
  .city-trigger-txt {
    max-width: 6.4rem;
  }
}

/* —— Подбор краски SEO —— */
.pk-seo { padding: 2.2rem 0 0.4rem; }
.pk-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 1.4rem 1.8rem;
  align-items: start;
}
.pk-seo-copy h2 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: #141517;
}
.pk-seo-copy h3 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1.05rem;
  color: #141517;
}
.pk-seo-copy p {
  margin: 0 0 0.85rem;
  color: #4b5563;
  line-height: 1.55;
  font-size: 0.95rem;
}
.pk-seo-copy a {
  color: #2a2a2a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pk-seo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.pk-seo-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.45;
}
.pk-seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2a2a2a;
}
.pk-seo-aside {
  display: grid;
  gap: 0.65rem;
}
.pk-seo-aside article {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
}
.pk-seo-aside strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
  color: #141517;
}
.pk-seo-aside p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #6b7280;
}
.pk-reviews { padding: 1.2rem 0 2.4rem; }
.pk-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.pk-reviews-head h2 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #141517;
}
.pk-reviews-head p {
  margin: 0;
  max-width: 36rem;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.45;
}
.pk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.pk-review {
  margin: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
  box-shadow: 0 10px 28px rgba(20, 21, 23, 0.04);
}
.pk-review-stars {
  margin-bottom: 0.55rem;
  color: #2a2a2a;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}
.pk-review p {
  margin: 0 0 0.9rem;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.5;
}
.pk-review cite {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-style: normal;
}
.pk-review cite strong {
  font-size: 0.88rem;
  color: #141517;
}
.pk-review cite span {
  font-size: 0.78rem;
  color: #6b7280;
}
@media (max-width: 960px) {
  .pk-seo-grid,
  .pk-reviews-grid {
    grid-template-columns: 1fr;
  }
  .pk-reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Подбор краски: popular + consult —— */
.pk-page .px-crumbs-light,
.pk-page .px-crumbs-light a,
.pk-page .px-crumbs-light span {
  color: rgba(244, 239, 228, 0.72);
}
.pk-page .px-crumbs-light a:hover { color: #d2ff3f; }
.pk-page .hx-hero .px-hero-copy h1 { max-width: 12ch; }

.pk-popular { padding: 2rem 0 1rem; }
.pk-popular-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.pk-popular-head h2 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #141517;
}
.pk-popular-head p {
  margin: 0;
  max-width: 38rem;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pk-consult {
  padding: 2.4rem 0 2.8rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(210, 255, 63, 0.12), transparent 55%),
    linear-gradient(180deg, #141517 0%, #1c1e22 100%);
}
.pk-consult-wrap {
  display: flex;
  justify-content: center;
}
.pk-consult-card {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 1.8rem;
  padding: 1.6rem 1.5rem 1.55rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: #f4efe4;
}
.pk-consult-copy .px-kicker { color: #d2ff3f; }
.pk-consult-copy h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  color: #fff;
}
.pk-consult-copy > p {
  margin: 0 0 1rem;
  color: rgba(244, 239, 228, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}
.pk-consult-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.pk-consult-points li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(244, 239, 228, 0.82);
  font-size: 0.9rem;
}
.pk-consult-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d2ff3f;
}
.pk-consult-form {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}
.pk-consult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.pk-field {
  display: grid;
  gap: 0.35rem;
}
.pk-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(244, 239, 228, 0.65);
}
.pk-field input,
.pk-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
}
.pk-field input::placeholder,
.pk-field textarea::placeholder {
  color: rgba(244, 239, 228, 0.35);
}
.pk-field input:focus,
.pk-field textarea:focus {
  outline: 2px solid rgba(210, 255, 63, 0.45);
  outline-offset: 1px;
  border-color: transparent;
}
.pk-drop {
  display: block;
  cursor: pointer;
}
.pk-drop input { display: none; }
.pk-drop-inner {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(210, 255, 63, 0.35);
  background: rgba(210, 255, 63, 0.06);
  transition: background 0.15s, border-color 0.15s;
}
.pk-drop.is-drag .pk-drop-inner,
.pk-drop:hover .pk-drop-inner {
  background: rgba(210, 255, 63, 0.12);
  border-color: rgba(210, 255, 63, 0.55);
}
.pk-drop-inner strong {
  font-size: 0.88rem;
  color: #fff;
}
.pk-drop-inner small {
  font-size: 0.78rem;
  color: rgba(244, 239, 228, 0.55);
}
.pk-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pk-previews img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pk-consult-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.15rem;
}
.pk-consult-note {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(244, 239, 228, 0.45);
  text-align: center;
}
.pk-consult-ok {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  background: rgba(210, 255, 63, 0.1);
  border: 1px solid rgba(210, 255, 63, 0.28);
  text-align: center;
}
.pk-consult-ok strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #d2ff3f;
  font-size: 1.05rem;
}
.pk-consult-ok p {
  margin: 0;
  color: rgba(244, 239, 228, 0.8);
  font-size: 0.9rem;
  line-height: 1.45;
}
.pk-consult-ok a { color: #d2ff3f; }

@media (max-width: 900px) {
  .pk-consult-card,
  .pk-consult-row,
  .pk-popular-head {
    grid-template-columns: 1fr;
  }
  .pk-popular-head {
    display: grid;
    align-items: start;
  }
  .pk-consult-card {
    padding: 1.25rem 1.1rem;
  }
}

/* —— Подбор краски: videos —— */
.pk-videos {
  padding: 1.2rem 0 2.6rem;
}
.pk-videos-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.pk-videos-head h2 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: #141517;
}
.pk-videos-head p {
  margin: 0;
  max-width: 38rem;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.45;
}
.pk-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}
.pk-video-card h3 {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #141517;
  font-weight: 700;
}
.pk-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #141517;
  border: 1px solid rgba(20, 21, 23, 0.08);
}
.pk-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 900px) {
  .pk-videos-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .pk-video-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .pk-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— City hub + podbor stubs —— */
.cities-hub-hero .px-hero-main { grid-template-columns: 1fr; }
.cities-hub-sec { padding: 2.2rem 0 3rem; }
.cities-hub-head { margin-bottom: 1.25rem; max-width: 42rem; }
.cities-hub-head h2 {
  margin: 0.3rem 0 0.5rem;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #141517;
}
.cities-hub-head p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cities-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.cities-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(20, 21, 23, 0.1);
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cities-tab small {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
}
.cities-tab.is-on,
.cities-tab:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}
.cities-tab.is-on small,
.cities-tab:hover small { color: rgba(255,255,255,0.7); }
.cities-panel-label {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: #6b7280;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.cities-card {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
}
.cities-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: #141517;
}
.cities-card p {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.cities-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
}
.cities-card-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a2a2a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cities-card-links a:hover { color: #141517; }

.pk-stub-body { padding: 2rem 0 2.6rem; }
.pk-stub-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}
.pk-stub-card {
  padding: 1.25rem 1.3rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 21, 23, 0.08);
}
.pk-stub-card h2 {
  margin: 0.3rem 0 0.7rem;
  font-size: 1.35rem;
  color: #141517;
}
.pk-stub-card p {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.5;
  font-size: 0.95rem;
}
.pk-stub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pk-stub-card.is-dark {
  background: #141517;
  border-color: transparent;
  color: #f4efe4;
}
.pk-stub-card.is-dark h2 { color: #fff; }
.pk-stub-card.is-dark ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.pk-stub-card.is-dark a {
  color: #d2ff3f;
  font-weight: 600;
  text-decoration: none;
}
.pk-stub-card.is-dark a:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .cities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .cities-grid,
  .pk-stub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cities-grid,
  .pk-stub-grid { grid-template-columns: 1fr; }
  .cities-tablist { gap: 0.35rem; }
}
