.agbis-eco {
  --eco-canvas: #eee6da;
  --eco-surface: #fff;
  --eco-text: #13233d;
  --eco-muted: #66758c;
  --eco-line: #d9ccbd;
  --eco-blue: #216ec8;
  --eco-blue-dark: #174f94;
  --eco-blue-soft: #eaf3ff;
  --eco-red: #e5232e;
  --eco-shadow: 0 22px 70px rgba(22, 48, 79, 0.12);
  color: var(--eco-text);
  font-family: inherit;
  margin: 72px auto;
  max-width: 1440px;
  padding: 0 24px;
  position: relative;
}

.agbis-eco *,
.agbis-eco *::before,
.agbis-eco *::after { box-sizing: border-box; }
.agbis-eco button,
.agbis-eco input,
.agbis-eco a { font: inherit; }
.agbis-eco button { color: inherit; }
.agbis-eco [hidden] { display: none !important; }

.agbis-eco__sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.agbis-eco__loading {
  background: var(--eco-surface);
  border: 1px solid var(--eco-line);
  border-radius: 28px;
  display: grid;
  gap: 16px;
  min-height: min(70vw, 760px);
  overflow: hidden;
  padding: 34px;
}

.agbis-eco__loading-kicker,
.agbis-eco__loading-line,
.agbis-eco__loading-map {
  animation: agbis-eco-pulse 1.6s ease-in-out infinite alternate;
  background: linear-gradient(90deg, #eadfd2 0%, #f7f0e7 50%, #eadfd2 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  color: transparent;
  display: block;
}
.agbis-eco__loading-kicker { height: 16px; width: 150px; }
.agbis-eco__loading-line { height: 44px; width: min(520px, 80%); }
.agbis-eco__loading-map { border-radius: 20px; height: 100%; min-height: 420px; }

@keyframes agbis-eco-pulse {
  from { background-position: 0 0; opacity: 0.72; }
  to { background-position: 100% 0; opacity: 1; }
}

.agbis-eco__header {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  margin-bottom: 28px;
  position: relative;
  z-index: 20;
}
.agbis-eco__eyebrow {
  color: var(--eco-blue);
  display: block;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.agbis-eco__title {
  color: var(--eco-text);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin: 0;
}
.agbis-eco__intro {
  color: var(--eco-muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 760px;
}

.agbis-eco__search-wrap { position: relative; }
.agbis-eco__search-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.agbis-eco__search-control {
  align-items: center;
  background: var(--eco-surface);
  border: 1px solid #cfd8e4;
  border-radius: 14px;
  display: flex;
  min-height: 50px;
  padding: 0 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.agbis-eco__search-control:focus-within { border-color: var(--eco-blue); box-shadow: 0 0 0 4px rgba(33, 110, 200, 0.14); }
.agbis-eco__search-control svg { fill: none; height: 21px; margin-right: 10px; stroke: var(--eco-muted); stroke-linecap: round; stroke-width: 1.8; width: 21px; }
.agbis-eco__search { background: transparent; border: 0; color: var(--eco-text); flex: 1; font-size: 16px; min-width: 0; outline: none; }
.agbis-eco__search::placeholder { color: #96a2b3; }
.agbis-eco__search-results {
  background: var(--eco-surface);
  border: 1px solid var(--eco-line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(28, 53, 84, 0.18);
  left: 0;
  max-height: 370px;
  overflow: auto;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
}
.agbis-eco__search-result {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 12px;
  text-align: left;
  width: 100%;
}
.agbis-eco__search-result:hover,
.agbis-eco__search-result:focus-visible { background: var(--eco-blue-soft); outline: none; }
.agbis-eco__search-result strong { font-size: 14px; }
.agbis-eco__search-result span { color: var(--eco-muted); font-size: 12px; margin-left: 12px; text-align: right; }
.agbis-eco__search-empty { color: var(--eco-muted); font-size: 14px; margin: 0; padding: 18px 12px; text-align: center; }

.agbis-eco__filters {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: thin;
}
.agbis-eco__filter {
  align-items: center;
  background: transparent;
  border: 1px solid var(--eco-line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 40px;
  padding: 7px 13px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.agbis-eco__filter:hover { border-color: #aebdce; }
.agbis-eco__filter:focus-visible { box-shadow: 0 0 0 3px rgba(33, 110, 200, 0.2); outline: none; }
.agbis-eco__filter[aria-pressed="true"] { background: var(--eco-text); border-color: var(--eco-text); color: #fff; }
.agbis-eco__filter-count { align-items: center; background: rgba(117, 135, 158, 0.14); border-radius: 999px; display: inline-flex; font-size: 11px; height: 22px; justify-content: center; min-width: 22px; padding: 0 6px; }
.agbis-eco__filter[aria-pressed="true"] .agbis-eco__filter-count { background: rgba(255, 255, 255, 0.18); }

.agbis-eco__stage {
  background: var(--eco-surface);
  border: 1px solid var(--eco-line);
  border-radius: 28px;
  box-shadow: var(--eco-shadow);
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.agbis-eco__visual {
  aspect-ratio: 21 / 9;
  background: var(--eco-canvas);
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.agbis-eco__canvas,
.agbis-eco__canvas-element { height: 100%; inset: 0; position: absolute; width: 100%; }
.agbis-eco__canvas-element { cursor: grab; display: block; outline: none; touch-action: pan-y; }

.agbis-eco__zone-labels { inset: 0; pointer-events: none; position: absolute; z-index: 5; }
.agbis-eco__zone-label {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(173, 190, 207, 0.88);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(35, 62, 91, 0.13);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  left: 0;
  max-width: 180px;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: auto;
  position: absolute;
  top: 0;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, opacity 280ms ease;
  white-space: nowrap;
}
.agbis-eco--scene-ready .agbis-eco__zone-label { opacity: 1; }
.agbis-eco__zone-label:hover,
.agbis-eco__zone-label:focus-visible { background: var(--eco-red); border-color: var(--eco-red); color: #fff; outline: none; }

.agbis-eco__scene-loading,
.agbis-eco__scene-error {
  align-items: center;
  background: rgba(245, 247, 250, 0.92);
  color: var(--eco-muted);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 12px;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-align: center;
  z-index: 8;
}
.agbis-eco__scene-error strong { color: var(--eco-text); font-size: 18px; }
.agbis-eco__scene-spinner { animation: agbis-eco-spin 0.9s linear infinite; border: 3px solid #dce5ed; border-radius: 50%; border-top-color: var(--eco-blue); height: 34px; width: 34px; }
.agbis-eco__scene-loading-copy { color: var(--eco-text); font-size: 16px; font-weight: 800; }
.agbis-eco__scene-loading-detail { color: var(--eco-muted); font-size: 12px; }
.agbis-eco__scene-loading-progress { background: #e7edf2; border-radius: 999px; display: block; height: 5px; overflow: hidden; width: min(240px, 62%); }
.agbis-eco__scene-loading-progress i { background: linear-gradient(90deg, #2f75ad, #83cdec); border-radius: inherit; display: block; height: 100%; min-width: 8%; transition: width 220ms ease; width: 8%; }
@keyframes agbis-eco-spin { to { transform: rotate(360deg); } }

.agbis-eco__scene-tooltip {
  background: var(--eco-text);
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  max-width: 220px;
  padding: 8px 10px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, calc(-100% - 14px));
  z-index: 12;
}
.agbis-eco__speech-bubble {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 52, 72, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(46, 38, 31, 0.16);
  color: #1f3448;
  font-size: 12px;
  font-weight: 750;
  left: 0;
  line-height: 1.35;
  max-width: 220px;
  opacity: 0;
  padding: 10px 13px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity 360ms ease;
  will-change: opacity, transform;
  width: max-content;
  z-index: 13;
}
.agbis-eco__speech-bubble::after {
  background: #fff;
  border-bottom: 1px solid rgba(31, 52, 72, 0.2);
  border-right: 1px solid rgba(31, 52, 72, 0.2);
  bottom: -6px;
  content: '';
  height: 11px;
  left: 62%;
  position: absolute;
  transform: rotate(45deg);
  width: 11px;
}
.agbis-eco__speech-bubble.is-visible { opacity: 1; }
.agbis-eco__speech-bubble[hidden] { display: none !important; }
.agbis-eco__hint {
  align-items: center;
  background: transparent;
  border: 0;

  bottom: 18px;
  color: #52637a;
  display: flex;
  height: 32px;
  justify-content: center;
  left: 18px;
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 32px;
  z-index: 6;
}
.agbis-eco__hint::after {
  content: none;
}
.agbis-eco__hint svg {
  animation: agbis-eco-drag-hand 2.6s cubic-bezier(0.55, 0, 0.3, 1) 2 forwards;
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}
@keyframes agbis-eco-drag-hand {
  0%, 16%, 100% { transform: translateX(0) rotate(0); }
  44% { transform: translateX(7px) rotate(3deg); }
  72% { transform: translateX(-4px) rotate(-2deg); }
}
.agbis-eco__scene-controls {
  align-items: center;
  bottom: 18px;
  display: flex;
  gap: 6px;
  position: absolute;
  right: 18px;
  z-index: 9;
}
.agbis-eco__scene-controls button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 11px;
}
.agbis-eco__scene-controls button:hover { border-color: var(--eco-blue); color: var(--eco-blue); }
.agbis-eco__scene-controls button:focus-visible { box-shadow: 0 0 0 3px rgba(33, 110, 200, 0.22); outline: none; }
.agbis-eco__scene-controls .agbis-eco__reset { font-size: 12px; font-weight: 700; width: auto; }

.agbis-eco__panel { background: var(--eco-surface); display: none; min-width: 0; padding: 32px clamp(28px, 4vw, 60px) 44px; }
.agbis-eco__stage.is-selected { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.9fr); min-height: 540px; }
.agbis-eco__stage.is-selected .agbis-eco__visual { aspect-ratio: auto; min-height: 540px; }
.agbis-eco__stage.is-selected .agbis-eco__panel { display: flex; flex-direction: column; }
.agbis-eco__stage.is-selected .agbis-eco__hint { display: none; }
.agbis-eco__back {
  align-items: center;
  align-self: flex-start;
  background: transparent;
  border: 0;
  color: var(--eco-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 650;
  gap: 5px;
  margin: 0 0 42px;
  padding: 6px 0;
}
.agbis-eco__back:hover { color: var(--eco-blue); }
.agbis-eco__back:focus-visible { border-radius: 6px; box-shadow: 0 0 0 3px rgba(33, 110, 200, 0.2); outline: none; }
.agbis-eco__back svg,
.agbis-eco__more svg,
.agbis-eco__directory-toggle svg { fill: none; height: 20px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 20px; }
.agbis-eco__panel-content { margin: auto 0; }
.agbis-eco__product-type { color: var(--eco-blue); display: block; font-size: 12px; font-weight: 750; letter-spacing: 0.08em; margin-bottom: 14px; text-transform: uppercase; }
.agbis-eco__product-title { color: var(--eco-text); font-size: clamp(32px, 3.2vw, 48px); letter-spacing: -0.035em; line-height: 1.05; margin: 0; outline: none; }
.agbis-eco__product-description { color: #43546d; font-size: 17px; line-height: 1.6; margin: 20px 0 26px; }
.agbis-eco__more { align-items: center; background: var(--eco-blue); border-radius: 12px; color: #fff; display: inline-flex; font-weight: 700; gap: 8px; justify-content: center; min-height: 48px; padding: 12px 18px; text-decoration: none; transition: background-color 160ms ease, transform 160ms ease; }
.agbis-eco__more:hover { background: var(--eco-blue-dark); color: #fff; transform: translateY(-1px); }
.agbis-eco__more:focus-visible { box-shadow: 0 0 0 4px rgba(33, 110, 200, 0.2); outline: none; }
.agbis-eco__related { border-top: 1px solid var(--eco-line); margin-top: 34px; padding-top: 25px; }
.agbis-eco__related h4 { font-size: 14px; margin: 0 0 12px; }
.agbis-eco__related-list { display: flex; flex-wrap: wrap; gap: 8px; }
.agbis-eco__related-chip { background: transparent; border: 1px solid #b9c8da; border-radius: 10px; cursor: pointer; font-size: 13px; padding: 9px 11px; transition: background-color 150ms ease, border-color 150ms ease; }
.agbis-eco__related-chip:hover,
.agbis-eco__related-chip:focus-visible { background: var(--eco-blue-soft); border-color: var(--eco-blue); outline: none; }

.agbis-eco__directory { border-bottom: 1px solid var(--eco-line); margin-top: 18px; }
.agbis-eco__directory-toggle { align-items: center; background: transparent; border: 0; cursor: pointer; display: flex; font-weight: 700; gap: 9px; min-height: 48px; padding: 8px 4px; }
.agbis-eco__directory-toggle:focus-visible { border-radius: 8px; box-shadow: 0 0 0 3px rgba(33, 110, 200, 0.2); outline: none; }
.agbis-eco__directory-total { align-items: center; background: #edf1f6; border-radius: 999px; color: var(--eco-muted); display: inline-flex; font-size: 12px; height: 24px; justify-content: center; min-width: 24px; padding: 0 7px; }
.agbis-eco__directory-toggle svg { margin-left: 3px; transition: transform 180ms ease; }
.agbis-eco__directory-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.agbis-eco__directory-list { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 10px 0 26px; }
.agbis-eco__directory-card { background: var(--eco-surface); border: 1px solid var(--eco-line); border-radius: 14px; cursor: pointer; display: flex; flex-direction: column; min-height: 150px; padding: 17px; text-align: left; transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.agbis-eco__directory-card:hover,
.agbis-eco__directory-card:focus-visible { border-color: #aebfd3; box-shadow: 0 10px 26px rgba(24, 48, 77, 0.09); outline: none; transform: translateY(-2px); }
.agbis-eco__directory-card strong { font-size: 16px; margin-bottom: 7px; }
.agbis-eco__directory-card > span:last-child { color: var(--eco-muted); font-size: 13px; line-height: 1.45; }
.agbis-eco__directory-type { color: var(--eco-blue); font-size: 10px; font-weight: 750; letter-spacing: 0.06em; margin-bottom: 8px; text-transform: uppercase; }

.agbis-eco__desktop-only {
  align-items: center;
  background: #f7f3ed;
  border: 1px solid #d9ccbd;
  border-radius: 24px;
  display: grid;
  gap: 30px;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 280px;
  padding: 42px 48px;
}
.agbis-eco__desktop-only-icon {
  align-items: center;
  background: #fff;
  border: 1px solid #d9ccbd;
  border-radius: 22px;
  color: #355c78;
  display: flex;
  height: 104px;
  justify-content: center;
  width: 104px;
}
.agbis-eco__desktop-only-icon svg {
  fill: none;
  height: 66px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 66px;
}
.agbis-eco__desktop-only-cursor { fill: #e5232e; stroke: #fff; stroke-width: 1.6; }
.agbis-eco__desktop-only-copy { max-width: 620px; }
.agbis-eco__desktop-only-copy > span {
  color: #66758c;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
  text-transform: uppercase;
}
.agbis-eco__desktop-only h2 {
  color: #13233d;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.08;
  margin: 0 0 13px;
}
.agbis-eco__desktop-only p {
  color: #66758c;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .agbis-eco--desktop-only { margin: 36px auto; padding: 0 18px; }
  .agbis-eco__desktop-only { grid-template-columns: 92px minmax(0, 1fr); padding: 34px; }
  .agbis-eco__desktop-only-icon { border-radius: 18px; height: 84px; width: 84px; }
  .agbis-eco__desktop-only-icon svg { height: 54px; width: 54px; }
}

@media (max-width: 560px) {
  .agbis-eco__desktop-only { gap: 22px; grid-template-columns: 1fr; padding: 30px 24px; }
}

@media (max-width: 1080px) {
  .agbis-eco__header { align-items: start; grid-template-columns: 1fr; }
  .agbis-eco__search-wrap { max-width: 580px; }
  .agbis-eco__stage.is-selected { grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr); }
  .agbis-eco__directory-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agbis-eco__zone-label { font-size: 10px; max-width: 145px; }
}

@media (max-width: 760px) {
  .agbis-eco { margin: 44px auto; padding: 0 14px; }
  .agbis-eco__header { gap: 24px; margin-bottom: 20px; }
  .agbis-eco__eyebrow { font-size: 11px; }
  .agbis-eco__intro { font-size: 16px; }
  .agbis-eco__filters { margin-left: -4px; margin-right: -4px; }
  .agbis-eco__filter { min-height: 38px; }
  .agbis-eco__stage { border-radius: 20px; }
  .agbis-eco__visual { aspect-ratio: 4 / 5; min-height: 560px; }
  .agbis-eco__zone-label { font-size: 9px; max-width: 120px; padding: 5px 7px; white-space: normal; }
  .agbis-eco__hint span { display: none; }
  .agbis-eco__stage.is-selected { display: flex; flex-direction: column; min-height: 0; }
  .agbis-eco__stage.is-selected .agbis-eco__visual { aspect-ratio: 5 / 4; min-height: 420px; }
  .agbis-eco__panel { padding: 22px 22px 30px; }
  .agbis-eco__back { margin-bottom: 28px; }
  .agbis-eco__product-title { font-size: 34px; }
  .agbis-eco__product-description { font-size: 16px; }
  .agbis-eco__more { width: 100%; }
  .agbis-eco__directory-list { grid-template-columns: 1fr; }
  .agbis-eco__directory-card { min-height: 0; }
  .agbis-eco__scene-controls .agbis-eco__reset { display: none; }
}

@media (max-width: 460px) {
  .agbis-eco__title { font-size: 34px; }
  .agbis-eco__search-control { min-height: 48px; }
  .agbis-eco__visual { min-height: 510px; }
  .agbis-eco__hint { bottom: 12px; left: 12px; }
  .agbis-eco__scene-controls { bottom: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .agbis-eco *,
  .agbis-eco *::before,
  .agbis-eco *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}



/* Изоляция от глобальных стилей сайта */
.agbis-eco {
  isolation: isolate;
  line-height: normal;
}

.agbis-eco button,
.agbis-eco a,
.agbis-eco input {
  font-family: inherit !important;
  text-transform: none !important;
}

.agbis-eco button {
  box-shadow: none !important;
}

.agbis-eco-page {
  padding-top: 76px;
}

/* Фильтры по мотивам тегов блога */
.agbis-eco .agbis-eco__filter {
  min-height: 32px;
  padding: 5px 12px;
  border: 0 !important;
  border-radius: 999px !important;
  color: #252c38 !important;
  background: #f4f5f7 !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2 !important;
}

.agbis-eco .agbis-eco__filter:hover,
.agbis-eco .agbis-eco__filter:focus-visible,
.agbis-eco .agbis-eco__filter[aria-pressed="true"] {
  color: #fff !important;
  background: #252c38 !important;
}

.agbis-eco .agbis-eco__filter-count {
  background: rgba(37, 44, 56, 0.08) !important;
}

.agbis-eco .agbis-eco__filter[aria-pressed="true"] .agbis-eco__filter-count {
  background: rgba(255, 255, 255, 0.18) !important;
}

/* Поиск в стилистике блога */
.agbis-eco .agbis-eco__search-control {
  min-height: 46px;
  border: 1px solid #e6e9ee !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.agbis-eco .agbis-eco__search-control:focus-within {
  border-color: #252c38 !important;
  box-shadow: inset 0 0 0 1px #252c38 !important;
}

.agbis-eco .agbis-eco__search-result {
  color: #252c38 !important;
  background: transparent !important;
}

.agbis-eco .agbis-eco__search-result:hover,
.agbis-eco .agbis-eco__search-result:focus-visible {
  color: #252c38 !important;
  background: #f4f5f7 !important;
}

/* Подписи зон и панель раздела */
.agbis-eco .agbis-eco__zone-label {
  color: #252c38 !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.agbis-eco .agbis-eco__zone-label:hover,
.agbis-eco .agbis-eco__zone-label:focus-visible,
.agbis-eco .agbis-eco__zone-label[aria-pressed="true"] {
  color: #fff !important;
  border-color: #252c38 !important;
  background: #252c38 !important;
}

.agbis-eco__zone-panel {
  position: absolute;
  z-index: 11;
  top: 18px;
  left: 18px;
  width: min(540px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(207, 216, 228, 0.96);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 45px rgba(22, 48, 79, 0.14);
}

.agbis-eco__zone-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.agbis-eco__zone-panel-title {
  font-size: 15px;
  font-weight: 700;
}

.agbis-eco .agbis-eco__zone-panel-head button {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #252c38 !important;
  background: #f4f5f7 !important;
  font-size: 21px;
  line-height: 1 !important;
}

.agbis-eco .agbis-eco__zone-panel-head button:hover,
.agbis-eco .agbis-eco__zone-panel-head button:focus-visible {
  color: #fff !important;
  background: #252c38 !important;
}

.agbis-eco__zone-products {
  display: flex;
  max-height: 160px;
  flex-wrap: wrap;
  gap: 6px;
  overflow: auto;
}

.agbis-eco .agbis-eco__zone-products button,
.agbis-eco .agbis-eco__related-chip {
  min-height: 28px;
  padding: 5px 10px;
  border: 0 !important;
  border-radius: 999px !important;
  color: #252c38 !important;
  background: #f4f5f7 !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2 !important;
}

.agbis-eco .agbis-eco__zone-products button:hover,
.agbis-eco .agbis-eco__zone-products button:focus-visible,
.agbis-eco .agbis-eco__related-chip:hover,
.agbis-eco .agbis-eco__related-chip:focus-visible {
  color: #fff !important;
  background: #252c38 !important;
  outline: none;
}

/* Служебные кнопки карты */
.agbis-eco .agbis-eco__scene-controls button {
  color: #252c38 !important;
  border: 1px solid #e0e4e9 !important;
  background: #fff !important;
}

.agbis-eco .agbis-eco__scene-controls button:hover,
.agbis-eco .agbis-eco__scene-controls button:focus-visible {
  color: #fff !important;
  border-color: #252c38 !important;
  background: #252c38 !important;
}

.agbis-eco .agbis-eco__back,
.agbis-eco .agbis-eco__directory-toggle {
  color: #252c38 !important;
  background: transparent !important;
}

.agbis-eco .agbis-eco__back:hover,
.agbis-eco .agbis-eco__back:focus-visible,
.agbis-eco .agbis-eco__directory-toggle:hover,
.agbis-eco .agbis-eco__directory-toggle:focus-visible {
  color: #252c38 !important;
  background: transparent !important;
}

/* Основная кнопка — штатный стиль сайта */
.agbis-eco .agbis-eco__more.btn-agbis {
  display: inline-flex !important;
  width: auto;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px !important;
  border: 1px solid #d20220 !important;
  border-radius: 40px !important;
  color: #fff !important;
  background: #d20220 !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2 !important;
}

.agbis-eco .agbis-eco__more.btn-agbis:hover,
.agbis-eco .agbis-eco__more.btn-agbis:focus-visible {
  color: #fff !important;
  border-color: #f10f30 !important;
  background: #f10f30 !important;
}

.agbis-eco .agbis-eco__directory-card {
  color: #252c38 !important;
  background: #fff !important;
}

.agbis-eco .agbis-eco__directory-card:hover,
.agbis-eco .agbis-eco__directory-card:focus-visible {
  color: #252c38 !important;
  background: #fff !important;
}

@media (max-width: 760px) {
  .agbis-eco-page { padding-top: 64px; }
  .agbis-eco__zone-panel { top: 12px; left: 12px; width: calc(100% - 24px); padding: 13px; }
  .agbis-eco__zone-products { max-height: 126px; }
  .agbis-eco .agbis-eco__more.btn-agbis { width: 100%; min-height: 48px; }
}


.agbis-eco__header,
.agbis-eco__heading,
.agbis-eco__title,
.agbis-eco__intro {
  min-width: 0;
  max-width: 100%;
}

.agbis-eco__title {
  white-space: normal !important;
  overflow-wrap: break-word;
}

@media (max-width: 460px) {
  .agbis-eco__title {
    font-size: 27px;
    line-height: 1.12;
  }
}

/* Final seamless map direction */
.agbis-eco {
  --eco-canvas: #eee6da;
  --eco-surface: #fff;
  --eco-shadow: none;
}

.agbis-eco__stage {
  background: #eee6da;
  border: 1px solid #d8e1e8;
  border-radius: 24px;
  box-shadow: none;
}

.agbis-eco__visual,
.agbis-eco__canvas,
.agbis-eco__canvas-element {
  background: #eee6da;
}

.agbis-eco__filters {
  gap: 8px;
  scrollbar-width: none;
}
.agbis-eco__filters::-webkit-scrollbar { display: none; }
.agbis-eco .agbis-eco__filter {
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  min-height: 38px;
  padding: 0 15px !important;
  white-space: nowrap;
}

.agbis-eco__zone-label {
  align-items: center;
  background: rgba(251, 247, 240, 0.97) !important;
  border: 1px solid #d4c4b3 !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 18px rgba(91, 68, 49, 0.14) !important;
  color: #1f3448 !important;
  display: inline-flex;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  max-width: 170px;
  opacity: 0 !important;
  padding: 6px 9px !important;
  pointer-events: none !important;
  transition: opacity 260ms ease !important;
  white-space: normal !important;
  width: max-content;
}
.agbis-eco--scene-ready .agbis-eco__zone-label { opacity: 0 !important; }
.agbis-eco--scene-ready .agbis-eco__zone-label.is-visible { opacity: 1 !important; }

.agbis-eco__scene-loading,
.agbis-eco__scene-error { background: rgba(248, 242, 233, 0.96); }

.agbis-eco__zone-panel {
  background: rgba(248, 242, 233, 0.96);
  border-color: #dce5ed;
  box-shadow: 0 12px 34px rgba(24, 48, 70, 0.09);
  max-width: min(440px, calc(100% - 28px));
  padding: 14px;
}
.agbis-eco__zone-panel-title {
  font-size: 12px;
  font-weight: 800;
}
.agbis-eco .agbis-eco__zone-products button {
  align-items: center;
  display: inline-flex;
  font-size: 10.5px !important;
  font-weight: 750 !important;
  line-height: 1.15 !important;
  min-height: 28px;
  padding: 6px 9px !important;
  width: max-content;
}

.agbis-eco__scene-tooltip {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  padding: 6px 9px;
  width: max-content;
}

.agbis-eco__panel { border-left: 1px solid #e1e8ee; }
.agbis-eco__hint { box-shadow: none; }

@media (max-width: 760px) {
  .agbis-eco__stage { border-radius: 18px; }
  .agbis-eco__panel { border-left: 0; border-top: 1px solid #e1e8ee; }
  .agbis-eco__zone-panel { max-width: calc(100% - 24px); }
}
.agbis-eco {
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
}
.agbis-eco__filters {
  max-width: 100%;
  overscroll-behavior-inline: contain;
}
@media (max-width: 460px) {
  .agbis-eco__title { font-size: 26px; }
  .agbis-eco__intro { font-size: 15px; }
}@media (max-width: 460px) {
  .agbis-eco { padding-left: 14px !important; padding-right: 28px !important; }
  .agbis-eco__header,
  .agbis-eco__heading,
  .agbis-eco__search-wrap,
  .agbis-eco__search-control { width: 100%; }
  .agbis-eco__intro { overflow-wrap: anywhere; white-space: normal !important; }
}
/* Navigation and overflow cleanup */
.agbis-eco {
  overflow: visible;
}
.agbis-eco__filters {
  flex-wrap: wrap;
  overflow: visible;
  overscroll-behavior: auto;
}
.agbis-eco__zone-products {
  max-height: none;
  overflow: visible;
}
.agbis-eco__panel-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
  width: 100%;
}
.agbis-eco__panel-nav .agbis-eco__back {
  margin: 0;
}
.agbis-eco__solution-switcher {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}
.agbis-eco .agbis-eco__solution-switcher button {
  align-items: center;
  background: #fff !important;
  border: 1px solid #d5dde7 !important;
  border-radius: 50% !important;
  color: #252c38 !important;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0 !important;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
  width: 38px;
}
.agbis-eco .agbis-eco__solution-switcher button:hover,
.agbis-eco .agbis-eco__solution-switcher button:focus-visible {
  background: #252c38 !important;
  border-color: #252c38 !important;
  color: #fff !important;
  outline: none;
  transform: translateY(-1px);
}
.agbis-eco .agbis-eco__solution-switcher button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}
.agbis-eco__solution-switcher svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}
@media (max-width: 760px) {
  .agbis-eco__panel-nav { margin-bottom: 28px; }
}
/* Stable spacing when the component is embedded between homepage sections. */
.agbis-eco,
.agbis-eco.agbis-eco--desktop-only {
  margin-bottom: 80px;
  margin-top: 80px;
}