:root {
  --eco-bg: #f5f7f8;
  --eco-surface: #ffffff;
  --eco-surface-soft: #eef1f2;
  --eco-ink: #0b0d0f;
  --eco-muted: #5e6870;
  --eco-line: rgba(11, 13, 15, 0.13);
  --eco-green: #8fae35;
  --eco-green-deep: #617920;
  --eco-green-soft: #eef3e4;
  --eco-warm: #9b6b20;
  --eco-warm-soft: #f7efe1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--eco-bg);
  color: var(--eco-ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--eco-green);
  color: var(--eco-ink);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(143, 174, 53, 0.58);
  outline-offset: 3px;
}

.ecoflow-main {
  min-height: 100vh;
  padding-top: 76px;
}

.ecoflow-container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.ecoflow-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--eco-line);
  background: #edf1ed;
}

.ecoflow-hero-inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding-block: 68px 52px;
}

.ecoflow-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.ecoflow-hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.ecoflow-hero p {
  max-width: 64ch;
  margin: 28px 0 0;
  color: #465159;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.55;
}

.ecoflow-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: #263039;
  font-size: 14px;
  font-weight: 750;
}

.ecoflow-hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ecoflow-hero-notes span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--eco-green);
  content: "";
}

.ecoflow-stage {
  position: relative;
  min-height: 370px;
  isolation: isolate;
}

.ecoflow-stage::before {
  position: absolute;
  inset: auto 4% 7% 0;
  height: 1px;
  background: rgba(11, 13, 15, 0.18);
  content: "";
}

.ecoflow-stage::after {
  position: absolute;
  right: 3%;
  bottom: 7%;
  width: 38%;
  height: 20px;
  border-radius: 50%;
  background: rgba(11, 13, 15, 0.14);
  filter: blur(16px);
  content: "";
  z-index: -1;
}

.ecoflow-stage img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(11, 13, 15, 0.12));
}

.ecoflow-stage-main {
  right: 0;
  bottom: 8%;
  width: 74%;
  height: 92%;
}

.ecoflow-stage-side {
  left: -3%;
  bottom: 9%;
  width: 45%;
  height: 56%;
}

.ecoflow-catalog {
  padding-block: 58px 96px;
}

.ecoflow-catalog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.ecoflow-catalog-header h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.ecoflow-catalog-header p {
  max-width: 60ch;
  margin: 14px 0 0;
  color: var(--eco-muted);
  font-size: 16px;
}

.ecoflow-count {
  flex: 0 0 auto;
  color: #39444c;
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.ecoflow-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-block: 18px;
  border-top: 1px solid var(--eco-line);
  border-bottom: 1px solid var(--eco-line);
}

.ecoflow-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ecoflow-filter-group[aria-label="Наявність"] {
  justify-content: flex-end;
}

.ecoflow-filter-group button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--eco-line);
  border-radius: 999px;
  background: transparent;
  color: #49545c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ecoflow-filter-group button:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 13, 15, 0.28);
  color: var(--eco-ink);
}

.ecoflow-filter-group button[aria-pressed="true"] {
  border-color: var(--eco-ink);
  background: var(--eco-ink);
  color: #fff;
}

.ecoflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ecoflow-static-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 20px;
  border: 1px solid var(--eco-line);
  border-radius: 8px;
}

.ecoflow-static-index a {
  color: var(--eco-ink);
  font-size: 14px;
  line-height: 1.35;
}

.ecoflow-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--eco-line);
  border-radius: 8px;
  background: var(--eco-surface);
  cursor: default;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ecoflow-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.ecoflow-card-link:focus-visible {
  outline: 3px solid rgba(143, 174, 53, 0.72);
  outline-offset: -3px;
}

.ecoflow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(97, 121, 32, 0.5);
  box-shadow: 0 18px 42px rgba(11, 13, 15, 0.1);
}

.ecoflow-card-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
}

.ecoflow-family {
  color: #273138;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.ecoflow-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4a555d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.ecoflow-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.ecoflow-status--available {
  color: var(--eco-green-deep);
}

.ecoflow-status--expected {
  color: var(--eco-warm);
}

.ecoflow-status--inquiry {
  color: #6a6460;
}

.ecoflow-image-wrap {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin: 0 14px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--eco-surface-soft);
}

.ecoflow-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ecoflow-card:hover .ecoflow-image-wrap img {
  transform: scale(1.035);
}

.ecoflow-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 14px 14px;
}

.ecoflow-card h2 {
  min-height: 2.48em;
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.ecoflow-sku {
  min-height: 2.6em;
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  color: #737c82;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
}

.ecoflow-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 17px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--eco-line);
}

.ecoflow-specs div {
  min-width: 0;
}

.ecoflow-specs dt {
  color: #737c82;
  font-size: 11px;
  font-weight: 700;
}

.ecoflow-specs dd {
  margin: 3px 0 0;
  color: #20272c;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.ecoflow-buy-row {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.ecoflow-price {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.ecoflow-card-action,
.ecoflow-dialog-action {
  position: relative;
  z-index: 2;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  background: var(--eco-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.ecoflow-card-action:hover,
.ecoflow-dialog-action:hover {
  transform: translateY(-1px);
  background: #252a2e;
}

.ecoflow-card-action svg,
.ecoflow-dialog-action svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.ecoflow-empty {
  margin: 28px 0 0;
  padding: 40px 0;
  border-top: 1px solid var(--eco-line);
  border-bottom: 1px solid var(--eco-line);
  color: var(--eco-muted);
  text-align: center;
}

.ecoflow-lead {
  padding-block: 76px;
  border-top: 1px solid rgba(97, 121, 32, 0.22);
  border-bottom: 1px solid var(--eco-line);
  background: #e8ede8;
}

.ecoflow-lead .lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr) !important;
  align-items: start !important;
  gap: clamp(40px, 5vw, 76px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ecoflow-lead .lead-copy {
  display: grid;
  gap: 28px !important;
}

.ecoflow-lead .section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--eco-green-deep);
  font-size: 13px;
  font-weight: 850;
}

.ecoflow-lead .lead-copy h2 {
  max-width: 680px !important;
  margin: 0 0 18px !important;
  font-size: clamp(40px, 4.7vw, 66px) !important;
  font-weight: 900;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.ecoflow-lead .lead-copy p {
  max-width: 620px !important;
  margin: 0 !important;
  color: rgba(26, 29, 33, 0.68) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.ecoflow-lead .contact-facts {
  counter-reset: ecoflow-fact;
  display: grid;
  gap: 0 !important;
  width: min(100%, 560px);
  margin-top: 4px !important;
  border-top: 1px solid rgba(43, 49, 55, 0.14);
}

.ecoflow-lead .contact-facts span {
  counter-increment: ecoflow-fact;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(43, 49, 55, 0.14);
  color: rgba(26, 29, 33, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.ecoflow-lead .contact-facts span::before {
  content: "0" counter(ecoflow-fact);
  color: #76941f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.ecoflow-lead .lead-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: clamp(22px, 2.5vw, 30px) !important;
  border: 1px solid rgba(43, 49, 55, 0.14) !important;
  border-radius: 8px !important;
  background: #f5f7f8 !important;
  box-shadow: 0 14px 34px rgba(11, 13, 15, 0.07) !important;
}

.ecoflow-lead .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ecoflow-lead .lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(11, 13, 15, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.ecoflow-lead .lead-form input,
.ecoflow-lead .lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgba(43, 49, 55, 0.16);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.76);
  color: var(--eco-ink);
  font-size: 16px;
  font-weight: 650;
}

.ecoflow-lead .lead-form textarea {
  min-height: 122px;
  resize: vertical;
}

.ecoflow-lead .lead-form input:focus,
.ecoflow-lead .lead-form textarea:focus {
  border-color: rgba(143, 174, 53, 0.74);
  box-shadow: 0 0 0 4px rgba(143, 174, 53, 0.13);
}

.ecoflow-lead .form-grid .lead-contact-preference {
  grid-column: 1 / -1;
}

.ecoflow-lead .lead-form .btn {
  width: 100% !important;
  min-height: 56px !important;
  border-radius: 8px !important;
}

.ecoflow-lead .form-note {
  min-height: 1.4em;
  margin: 0;
  color: rgba(26, 29, 33, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.ecoflow-site .site-footer,
.ecoflow-site .site-footer p,
.ecoflow-site .site-footer a,
.ecoflow-site .footer-links a,
.ecoflow-site .footer-meta,
.ecoflow-site .legal-text {
  font-size: clamp(0.8125rem, 0.79rem + 0.08vw, 0.875rem) !important;
  line-height: 1.5 !important;
}

.ecoflow-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: var(--eco-surface);
  color: var(--eco-ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.ecoflow-dialog::backdrop {
  background: rgba(11, 13, 15, 0.72);
}

.ecoflow-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--eco-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--eco-ink);
  cursor: pointer;
}

.ecoflow-dialog-close svg {
  width: 20px;
  height: 20px;
}

.ecoflow-dialog-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.ecoflow-dialog-media {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 46px;
  background: var(--eco-surface-soft);
}

.ecoflow-dialog-media img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}

.ecoflow-dialog-content {
  padding: 54px 46px 42px;
}

.ecoflow-dialog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ecoflow-dialog h2 {
  margin: 26px 0 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.ecoflow-dialog-sku {
  margin: 10px 0 0;
  color: #737c82;
  font-size: 12px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.ecoflow-dialog-description {
  margin: 24px 0 0;
  color: #4f5a62;
  font-size: 16px;
  line-height: 1.55;
}

.ecoflow-dialog-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--eco-line);
  border-left: 1px solid var(--eco-line);
}

.ecoflow-dialog-specs div {
  min-height: 78px;
  padding: 14px;
  border-right: 1px solid var(--eco-line);
  border-bottom: 1px solid var(--eco-line);
}

.ecoflow-dialog-specs dt {
  color: #737c82;
  font-size: 11px;
  font-weight: 700;
}

.ecoflow-dialog-specs dd {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.ecoflow-dialog-buy {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.ecoflow-dialog-price {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ecoflow-dialog-action {
  width: 100%;
  min-height: 56px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(760px, calc(100% - 40px));
  margin-left: auto;
  padding: 18px;
  border-radius: 8px;
  background: var(--eco-ink);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner h3,
.cookie-banner p {
  margin: 0;
}

.cookie-banner h3 {
  font-size: 16px;
}

.cookie-banner p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.cookie-banner p a {
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions .cookie-accept {
  border-color: var(--eco-green);
  background: var(--eco-green);
  color: var(--eco-ink);
}

@media (max-width: 1180px) {
  .ecoflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ecoflow-hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 980px) {
  .ecoflow-main {
    padding-top: 86px;
  }

  .ecoflow-hero-inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 26px;
    padding-block: 56px 44px;
  }

  .ecoflow-hero h1 {
    font-size: 48px;
  }

  .ecoflow-hero p {
    font-size: 17px;
  }

  .ecoflow-stage {
    min-height: 300px;
  }

  .ecoflow-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .ecoflow-filter-group[aria-label="Наявність"] {
    justify-content: flex-start;
  }

  .ecoflow-lead .lead-panel {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
}

@media (max-width: 780px) {
  .ecoflow-container {
    width: min(100% - 30px, 1360px);
  }

  .ecoflow-hero-inner {
    grid-template-columns: 1fr;
    padding-block: 44px 30px;
  }

  .ecoflow-hero h1 {
    font-size: 44px;
  }

  .ecoflow-stage {
    min-height: 260px;
  }

  .ecoflow-stage-main {
    right: 6%;
    width: 66%;
  }

  .ecoflow-stage-side {
    left: 3%;
    width: 42%;
  }

  .ecoflow-catalog {
    padding-block: 44px 72px;
  }

  .ecoflow-catalog-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .ecoflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecoflow-lead {
    padding-block: 58px;
  }

  .ecoflow-lead .lead-copy h2 {
    font-size: clamp(38px, 8vw, 52px) !important;
  }

  .ecoflow-dialog-layout {
    grid-template-columns: 1fr;
  }

  .ecoflow-dialog-media {
    min-height: 310px;
    padding: 34px;
  }

  .ecoflow-dialog-media img {
    max-height: 270px;
  }

  .ecoflow-dialog-content {
    padding: 36px 28px 30px;
  }

  .ecoflow-dialog h2 {
    margin-top: 20px;
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .ecoflow-container {
    width: min(100% - 24px, 1360px);
  }

  .ecoflow-hero-inner {
    padding-top: 36px;
  }

  .ecoflow-hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .ecoflow-hero p {
    margin-top: 20px;
    font-size: 16px;
  }

  .ecoflow-hero-notes {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .ecoflow-stage {
    min-height: 224px;
  }

  .ecoflow-catalog-header h2 {
    font-size: 32px;
  }

  .ecoflow-toolbar {
    padding-block: 14px;
  }

  .ecoflow-filter-group {
    width: 100%;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
  }

  .ecoflow-filter-group::-webkit-scrollbar {
    display: none;
  }

  .ecoflow-filter-group button {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .ecoflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ecoflow-card {
    border-radius: 7px;
  }

  .ecoflow-card-head {
    min-height: 56px;
    align-items: flex-start;
    gap: 5px;
    padding: 9px 8px 8px;
  }

  .ecoflow-family {
    padding-top: 2px;
    font-size: 10px;
  }

  .ecoflow-status {
    max-width: 104px;
    justify-content: flex-end;
    gap: 4px;
    font-size: 9px;
    line-height: 1.2;
    text-align: right;
    white-space: normal;
  }

  .ecoflow-status i {
    width: 5px;
    height: 5px;
  }

  .ecoflow-image-wrap {
    aspect-ratio: 4 / 3;
    margin-inline: 8px;
    border-radius: 5px;
  }

  .ecoflow-card-body {
    padding: 11px 8px 8px;
  }

  .ecoflow-card h2 {
    min-height: 88px;
    font-size: 16px !important;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .ecoflow-sku {
    min-height: 3.9em;
    display: block;
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.3;
  }

  .ecoflow-specs {
    gap: 4px;
    margin-top: 10px;
    padding-top: 9px;
  }

  .ecoflow-specs dt {
    font-size: 9px;
    line-height: 1.15;
  }

  .ecoflow-specs dd {
    margin-top: 3px;
    font-size: 11px;
    white-space: normal;
  }

  .ecoflow-buy-row {
    gap: 10px;
    padding-top: 13px;
  }

  .ecoflow-price {
    font-size: 20px;
  }

  .ecoflow-card-action {
    min-height: 52px;
    gap: 5px;
    padding: 6px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
  }

  .ecoflow-card-action svg {
    width: 15px;
    height: 15px;
  }

  .ecoflow-lead {
    padding-block: 48px;
  }

  .ecoflow-lead .lead-panel {
    gap: 30px !important;
  }

  .ecoflow-lead .lead-copy h2 {
    font-size: clamp(35px, 10vw, 44px) !important;
  }

  .ecoflow-lead .lead-copy p {
    font-size: 15px !important;
  }

  .ecoflow-lead .form-grid {
    grid-template-columns: 1fr;
  }

  .ecoflow-lead .lead-form {
    padding: 18px 14px !important;
  }

  .ecoflow-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - 12px);
    margin: auto 0 0;
    border-radius: 8px 8px 0 0;
  }

  .ecoflow-dialog-media {
    min-height: 250px;
    padding: 28px 24px;
  }

  .ecoflow-dialog-media img {
    max-height: 210px;
  }

  .ecoflow-dialog-content {
    padding: 30px 20px 26px;
  }

  .ecoflow-dialog h2 {
    padding-right: 34px;
    font-size: 28px;
  }

  .cookie-banner,
  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .ecoflow-site .call-widget {
    display: block !important;
  }

  .ecoflow-site .call-widget.is-visible:not(.is-open) {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .ecoflow-site .call-widget.elx-user-open.is-open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
  }

  .ecoflow-site.menu-open .call-widget,
  .ecoflow-site:has(.lead-modal.is-open) .call-widget,
  .ecoflow-site:has(.cookie-banner.is-visible) .call-widget {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
