﻿:root {
  --e-global-color-primary: #40a2e3;
  --zs-primary: #ef2b2d;
  --zs-primary-dark: #b91f24;
  --zs-secondary: #333333;
  --zs-text: #4d4d4d;
  --zs-muted: #7d7d7d;
  --zs-border: #e8e8e8;
  --zs-bg: #ffffff;
  --zs-soft: #f5f7fa;
  --zs-shell: 1440px;
  --zs-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --zs-header-offset: 116px;
  --zs-font-body: "Poppins", Arial, Helvetica, sans-serif;
  --zs-font-heading: "Poppins", Arial, Helvetica, sans-serif;
  --zs-font-accent: "Roboto Slab", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--zs-font-body);
  color: var(--zs-text);
  background: #fff;
  overflow-x: hidden;
}

.zs-page {
  width: 100%;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--zs-font-heading);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.zs-shell {
  width: min(calc(100% - 48px), var(--zs-shell));
  margin: 0 auto;
}

.zs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 24px;
  border: 0;
  border-radius: 2px;
  background: #ef2b2d;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.zs-btn:hover {
  background: var(--zs-primary-dark);
  transform: translateY(-1px);
}

.zs-btn-light,
.zs-btn-outline-light {
  background: #ef2b2d;
  color: #fff;
}

.zs-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.zs-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}

.zs-topbar {
  background: #ef2b2d;
  max-height: 52px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.24s ease,
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.zs-topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
}

.zs-topbar-text {
  flex: 1 1 auto;
  padding: 10px 0 10px 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: center;
}

.zs-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}

.zs-search-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.zs-search-form {
  position: absolute;
  top: 7px;
  right: max(16px, calc((100vw - var(--zs-shell)) / 2) - 8px);
  z-index: 2;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.zs-search-form.is-open {
  width: 220px;
  opacity: 1;
}

.zs-search-form input {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: #fff;
  color: var(--zs-secondary);
  padding: 0 14px;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.zs-search-form input:focus,
.zs-search-form input:focus-visible,
.zs-search-form input:active {
  border-color: rgba(255, 255, 255, 0.9);
  outline: 0;
  box-shadow: none;
}

.zs-navbar {
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.zs-header.is-scrolled .zs-navbar {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.zs-header.is-topbar-hidden .zs-topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

.zs-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px 0;
}

.zs-logo-title {
  flex: 0 0 13%;
  max-width: 13%;
  font-size: 0;
}

.zs-logo-title img {
  width: 100%;
  height: auto;
}

.zs-nav {
  flex: 0 0 74%;
  max-width: 74%;
}

.zs-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zs-menu > li {
  position: relative;
}

.zs-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  color: var(--zs-secondary);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.zs-menu > li > a:hover,
.zs-menu > li > a.is-active,
.zs-menu > li:hover > a {
  color: var(--zs-primary);
}

.zs-menu > li.zs-has-submenu > a::after,
.zs-menu > li.zs-has-mega > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.zs-submenu,
.zs-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transform: translate(-50%, 14px);
  transform-origin: top center;
}

.zs-submenu {
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--zs-border);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.zs-submenu li {
  position: relative;
}

.zs-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  font-size: 14px;
  background: #fff;
  color: var(--zs-secondary);
  border-bottom: 1px solid var(--zs-border);
}

.zs-submenu li:last-child > a {
  border-bottom: 0;
}

.zs-submenu a:hover,
.zs-submenu li:hover > a {
  color: var(--zs-primary);
}

.zs-submenu .zs-submenu {
  top: 0;
  left: 100%;
  transform: translate(4px, 0);
}

.zs-has-submenu:hover > .zs-submenu,
.zs-has-mega:hover > .zs-mega-panel,
.zs-submenu .zs-has-submenu:hover > .zs-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.zs-submenu .zs-has-submenu:hover > .zs-submenu {
  transform: translate(0, 0);
}

.zs-submenu-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.5;
}

.zs-submenu li:hover > a .zs-submenu-arrow {
  opacity: 1;
}

.zs-mega-panel {
  width: auto;
  min-width: min(680px, 92vw);
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.zs-mega-panel-sm {
  width: min(700px, 92vw);
}

.zs-mega-grid {
  display: grid;
  gap: 40px;
  padding: 32px 48px;
}

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

.zs-mega-grid-outdoors {
  grid-template-columns: 1fr 1fr 170px;
}

.zs-mega-col h2,
.zs-mega-heart h2 {
  margin-bottom: 14px;
  color: var(--zs-secondary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.zs-mega-col h2 {
  white-space: nowrap;
}

.zs-mega-col h2 a:hover {
  color: var(--zs-primary);
}

.zs-mega-col li + li {
  margin-top: 10px;
}

.zs-mega-col li a {
  color: var(--zs-secondary);
  font-size: 14px;
  line-height: 1.45;
  text-transform: none;
  white-space: nowrap;
}

.zs-mega-col li a:hover {
  color: var(--zs-primary);
}

.zs-mega-heart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.zs-mega-heart img {
  width: auto;
  max-width: 128px;
  height: auto;
  max-height: 158px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-bottom: 10px;
}

.zs-mega-heart h2 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
}

.zs-mega-heart p {
  color: var(--zs-muted);
  font-size: 13px;
  line-height: 1.35;
}

.zs-language img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.zs-language .zs-lang-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 12px;
  border: 1px solid #d8d8d8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.zs-order-btn {
  flex: 0 0 9%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  background: #ef2b2d;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 3px;
}

.zs-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.zs-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--zs-secondary);
}

.zs-footer-main {
  background: #1f2630;
  padding: 68px 0 48px;
  color: rgba(255, 255, 255, 0.82);
}

.zs-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 40px;
}

.zs-footer-brand p,
.zs-footer-contact,
.zs-footer-map p {
  font-size: 15px;
  line-height: 1.9;
}

.zs-footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.zs-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.zs-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  color: #1f2630;
}

.zs-socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.zs-footer-contact h2,
.zs-footer-map h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.zs-contact-form,
.zs-popup-form {
  display: grid;
  gap: 14px;
}

.zs-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zs-contact-form input,
.zs-contact-form textarea,
.zs-popup-form input,
.zs-popup-form textarea {
  width: 100%;
  border: 1px solid #ef2b2d;
  background: #fff;
  color: var(--zs-secondary);
  padding: 10px 12px;
  border-radius: 2px;
}

.zs-popup-form input,
.zs-popup-form textarea {
  background: #f4f5f7;
  color: var(--zs-secondary);
  border-color: #dfe3e8;
}

.zs-contact-form input::placeholder,
.zs-contact-form textarea::placeholder {
  color: #7a7a7a;
}

.zs-popup-form input::placeholder,
.zs-popup-form textarea::placeholder {
  color: #7a7a7a;
}

.zs-quiz {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zs-quiz-stack {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.zs-quiz-stack span {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.zs-quiz span {
  flex: 0 0 auto;
}

.zs-contact-form button,
.zs-popup-form button {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  background: #ef2b2d;
  color: #fff;
  text-transform: lowercase;
  cursor: pointer;
}

.zs-map-card {
  display: grid;
  gap: 16px;
}

.zs-map-embed {
  position: relative;
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce8ef, #eef3f7);
}

.zs-map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.zs-map-visual {
  position: relative;
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(64, 162, 227, 0.35), transparent 35%),
    radial-gradient(circle at 72% 62%, rgba(64, 162, 227, 0.28), transparent 32%),
    linear-gradient(135deg, #dce8ef, #eef3f7);
}

.zs-map-visual::before,
.zs-map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.zs-map-visual::before {
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.6) 18% 21%, transparent 21% 38%, rgba(255, 255, 255, 0.6) 38% 41%, transparent 41% 65%, rgba(255, 255, 255, 0.6) 65% 68%, transparent 68%),
    linear-gradient(0deg, transparent 0 22%, rgba(255, 255, 255, 0.6) 22% 25%, transparent 25% 48%, rgba(255, 255, 255, 0.6) 48% 51%, transparent 51% 74%, rgba(255, 255, 255, 0.6) 74% 77%, transparent 77%);
  mix-blend-mode: screen;
}

.zs-map-visual::after {
  inset: 38% auto auto 52%;
  width: 26px;
  height: 26px;
  border: 6px solid #ff5a4f;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: transparent;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.zs-footer-bottom {
  background: #ef2b2d;
  color: rgba(255, 255, 255, 0.8);
}

.zs-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.zs-footer-bottom-inner p,
.zs-footer-menu {
  font-size: 14px;
  line-height: 1.6;
}

.zs-footer-bottom a:hover {
  color: #000;
}

.zs-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.zs-footer-menu li + li::before {
  content: "|";
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.zs-fixed-tools {
  position: fixed;
  right: 18px;
  bottom: 120px;
  z-index: 42;
  display: grid;
  gap: 8px;
}

.zs-fixed-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #ef2b2d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.zs-scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #ef2b2d;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.zs-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zs-scroll-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: rotate(180deg);
}

.zs-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 21, 31, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.zs-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.zs-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: 34px;
  background: #fff;
  color: var(--zs-secondary);
  box-shadow: var(--zs-shadow);
}

.zs-modal-panel-sm {
  width: min(420px, 100%);
  text-align: center;
}

.zs-modal-media {
  width: min(920px, 100%);
}

.zs-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  color: var(--zs-secondary);
  cursor: pointer;
}

.zs-modal-panel h2,
.zs-modal-panel h3 {
  margin-bottom: 22px;
  color: var(--zs-secondary);
  line-height: 1.25;
}

.zs-modal-panel h2 {
  font-size: 34px;
}

.zs-modal-panel h3 {
  font-size: 28px;
}

.zs-phone-link {
  margin-bottom: 18px;
}

.zs-phone-link a {
  color: var(--zs-primary);
  font-size: 26px;
  font-weight: 700;
}

body.is-locked {
  overflow: hidden;
}

@media (max-width: 1440px) {
  .zs-topbar-text {
    padding-left: 40px;
  }

  .zs-shell {
    width: min(calc(100% - 80px), 1440px);
  }

  .zs-menu > li > a {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .zs-mega-heart {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  :root {
    --zs-header-offset: 64px;
  }

  .zs-header {
    background: #fff;
  }

  .zs-topbar {
    display: none;
  }

  .zs-navbar-inner {
    position: relative;
    flex-wrap: nowrap;
    min-height: 64px;
    padding: 0;
  }

  .zs-logo-title {
    flex: 1 1 auto;
    max-width: 190px;
  }

  .zs-mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .zs-order-btn {
    display: none;
  }

  .zs-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 12;
    flex: none;
    max-width: none;
    display: none;
    padding-bottom: 12px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  }

  .zs-nav.is-open {
    display: block;
  }

  .zs-menu {
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--zs-border);
    margin-top: 0;
    width: 100%;
    max-height: calc(100vh - var(--zs-header-offset) - 16px);
    overflow-y: auto;
    background: #fff;
  }

  .zs-menu > li {
    width: 100%;
  }

  .zs-menu > li > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px solid var(--zs-border);
  }

  .zs-menu > li.is-open > a {
    color: var(--zs-primary);
  }

  .zs-menu > li.is-open > a::after {
    transform: rotate(225deg) translateY(2px);
  }

.zs-has-submenu:hover > .zs-submenu, .zs-has-mega:hover > .zs-mega-panel, .zs-submenu .zs-has-submenu:hover > .zs-submenu{transform: translate(0%, 0);}

  .zs-submenu,
  .zs-mega-panel,
  .zs-submenu .zs-submenu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
    display: none;
    box-shadow: none;
    border: 0;
    background: #fff;
    width: 100%;
  }

  .zs-submenu.is-open,
  .zs-mega-panel.is-open {
    display: block;
  }

  .zs-submenu {
    margin-top: 0;
    padding-bottom: 4px;
  }

  .zs-submenu a {
    display: flex;
    width: 100%;
    padding: 12px 10px 12px 18px;
    font-size: 14px;
  }

  .zs-submenu .zs-submenu a {
    padding-left: 28px;
  }

  .zs-mega-grid,
  .zs-mega-grid-generators,
  .zs-mega-grid-outdoors {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 10px 10px 16px;
    width: 100%;
  }

  .zs-mega-col h2,
  .zs-mega-heart h2 {
    font-size: 22px;
  }

  .zs-footer-grid,
  .zs-footer-bottom-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .zs-footer-bottom-inner {
    padding: 18px 0;
  }

  .zs-footer-menu {
    gap: 12px 18px;
  }
}

@media (max-width: 767px) {
  :root {
    --zs-header-offset: 78px;
  }

  .zs-shell {
    width: min(calc(100% - 32px), 100%);
  }

  .zs-navbar-inner {
    min-height: 64px;
  }

  .zs-logo-title {
    max-width: 150px;
  }

  .zs-footer-main {
    padding-top: 54px;
  }

  .zs-contact-row {
    grid-template-columns: 1fr;
  }

  .zs-footer-contact h2,
  .zs-footer-map h2,
  .zs-modal-panel h2 {
    font-size: 28px;
  }

  .zs-map-visual {
    min-height: 260px;
  }

  .zs-map-embed {
    min-height: 260px;
  }

  .zs-map-embed iframe {
    height: 260px;
  }

  .zs-fixed-tools {
    right: 12px;
    bottom: 96px;
  }

  .zs-fixed-tool,
  .zs-scroll-top {
    width: 46px;
    height: 46px;
  }

  .zs-modal-panel {
    padding: 26px 18px;
  }
}

