/* Electro HUB — Garden Robots Prototype */
:root {
  --eh-red: #E10600;
  --eh-red-dark: #B80500;
  --eh-red-light: #FF3B33;
  --eh-red-muted: rgba(225, 6, 0, 0.14);
  --eh-dark: #000000;
  --eh-dark-2: #0a0a0a;
  --eh-dark-3: #141414;
  --eh-card: #1a1a1a;
  --eh-border: rgba(255, 255, 255, 0.1);
  --eh-text: #ffffff;
  --eh-muted: #a3a3a3;
  --eh-accent: #E10600;
  --eh-warn: #f5a623;
  --eh-danger: #ef4444;
  --eh-radius: 16px;
  --eh-radius-sm: 10px;
  --eh-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --eh-max: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --eh-glow: 0 0 24px rgba(225, 6, 0, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--eh-dark);
  color: var(--eh-text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

.container { width: min(100% - 2rem, var(--eh-max)); margin-inline: auto; }

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #000000;
  backdrop-filter: none;
  border-bottom: 1px solid var(--eh-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding: 0.85rem 0;
}
.nav-desktop { flex: 1 1 auto; justify-content: center; min-width: 0; }
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em;
  flex: 0 0 auto;
  max-width: none;
  overflow: visible;
}
.site-header .logo {
  position: relative;
  z-index: 3;
  flex: 0 1 auto;
  min-width: 0;
}
.site-header .logo .custom-logo-link,
.site-header .logo .custom-logo-link img,
.site-header .logo .custom-logo,
.site-header .logo .logo-img {
  max-width: min(220px, 34vw);
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-brand .logo {
  max-width: none;
  overflow: visible;
}
.footer-brand .logo .custom-logo-link img,
.footer-brand .logo .custom-logo,
.footer-brand .logo-img {
  height: 36px !important;
  width: auto !important;
  max-width: min(220px, 70vw) !important;
  object-fit: contain !important;
}
.logo-img {
  height: 36px; width: auto; max-width: min(200px, 48vw); object-fit: contain; display: block;
}
.nav-desktop { display: none; gap: 0.25rem; align-items: center; }
.nav-desktop a, .nav-desktop .eh-more-toggle {
  padding: 0.4rem 0.55rem; border-radius: 8px;
  color: var(--eh-muted); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-desktop .eh-more-toggle {
  background: transparent; border: 0; cursor: pointer; font: inherit;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-desktop .eh-more-toggle::after {
  content: ""; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; opacity: 0.7;
}
.nav-desktop a:hover, .nav-desktop a.active, .nav-desktop .eh-more-toggle:hover, .nav-desktop .eh-nav-more.is-open > .eh-more-toggle { color: var(--eh-red); background: var(--eh-red-muted); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
}
.header-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 10px;
  color: rgba(255,255,255,0.82);
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  flex-shrink: 0;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.header-icon-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  transform: none;
  filter: none;
  box-shadow: none;
}
.header-icon {
  display: block;
}
.header-phone-btn {
  /* quiet phone icon — no red plate */
}
.header-phone-btn::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 30;
}
.header-phone-btn:hover::after,
.header-phone-btn:focus-visible::after {
  opacity: 1;
}
.eh-header-cart .count {
  position: absolute;
  top: 4px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #E10600;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.header-podbor-btn {
  height: 40px;
  min-height: 40px;
  padding: 0 1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
}
.header-podbor-btn:hover {
  box-shadow: none !important;
}
.burger {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: none;
}
.burger span { display: block; width: 16px; height: 1.7px; background: currentColor; border-radius: 2px; }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--eh-border);
  max-height: calc(100dvh - 4.25rem);
  max-height: calc(100vh - 4.25rem);
  overflow: hidden;
}
.mobile-nav.open { display: flex; }
.eh-mobile-nav-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.35rem 0 0.5rem;
}
.mobile-nav a {
  padding: 0.55rem 0.85rem; border-radius: 10px; color: var(--eh-muted); font-weight: 500;
  font-size: 0.95rem;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--eh-red-muted); color: var(--eh-red); }

/* Mobile header: logo | cart | Подобрать | burger */
@media (max-width: 899px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.7rem 0;
  }
  .site-header .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(148px, calc(100vw - 9.5rem));
    overflow: hidden;
  }
  .site-header .logo .custom-logo-link,
  .site-header .logo .custom-logo-link img,
  .site-header .logo .custom-logo,
  .site-header .logo .logo-img,
  .site-header .logo-img,
  .site-header .custom-logo-link img,
  .site-header .custom-logo {
    height: 30px !important;
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: left center;
  }
  .footer-brand .logo-img,
  .footer-brand .custom-logo-link img,
  .footer-brand .custom-logo {
    height: 36px !important;
    max-width: min(220px, 70vw) !important;
    width: auto !important;
    object-fit: contain !important;
  }
  .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
  }
  .header-phone-btn {
    display: inline-flex; /* logo · phone · … · burger */
  }
  .header-icon-btn,
  .burger,
  .header-podbor-btn {
    height: 40px;
    min-height: 40px;
  }
  .header-icon-btn,
  .burger {
    width: 40px;
    min-width: 40px;
  }
  .header-podbor-btn {
    padding: 0 0.8rem !important;
    font-size: 0.82rem !important;
  }
  .header-phone-btn { order: 0; }
  .eh-header-cart { order: 1; }
  .header-podbor-btn { order: 2; }
  .burger {
    display: inline-flex;
    order: 3;
  }
  .eh-mobile-extra {
    display: grid;
    gap: 0.5rem;
    flex: 0 0 auto;
    margin: 0;
    padding: 0.65rem 0 0.85rem;
    border-top: 1px solid var(--eh-border);
    background: #000;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }
  .eh-mobile-extra .eh-mobile-call {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    font-size: 0.92rem;
  }
  .eh-mobile-extra .eh-msg-row,
  .eh-mobile-extra .eh-mobile-msg {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .eh-mobile-extra .eh-msg-btn {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    font-size: 0.88rem;
  }
}
@media (max-width: 560px) {
  .header-podbor-btn { display: none !important; }
  .site-header .logo {
    max-width: min(140px, calc(100vw - 8.25rem));
  }
}


@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .burger { display: none; }
  .eh-mobile-extra { display: none; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.35rem; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--eh-red);
  color: #fff; box-shadow: 0 4px 16px rgba(225, 6, 0, 0.22);
}
.btn-primary:hover { background: var(--eh-red-dark); box-shadow: 0 6px 20px rgba(225, 6, 0, 0.3); }
.btn-secondary {
  background: var(--eh-dark-3); border: 1px solid var(--eh-border); color: var(--eh-text);
}
.btn-secondary:hover { border-color: var(--eh-red); }
.btn-outline {
  border: 1.5px solid var(--eh-red); color: var(--eh-red-light); background: transparent;
}
.btn-outline:hover { background: var(--eh-red-muted); }
.btn-ghost { color: var(--eh-muted); }
.btn-ghost:hover { color: var(--eh-text); }
.btn-max {
  background: linear-gradient(135deg, #1a1a24 0%, #12121a 55%, #0e0e14 100%);
  color: #fff;
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12), 0 8px 24px rgba(0,0,0,0.35);
  gap: 0.45rem;
}
.btn-max:hover {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25), 0 8px 28px rgba(0,0,0,0.4);
  filter: brightness(1.06);
}
.btn-max-ico {
  width: 20px; height: 20px; border-radius: 6px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.btn-max .btn-max-label { font-weight: 750; letter-spacing: 0.02em; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* —— Hero (photo banner) —— */
.hero {
  position: relative; overflow: hidden;
  padding: 0;
  background: var(--eh-dark);
}
.hero-banner {
  min-height: clamp(460px, 78vw, 640px);
  display: flex; align-items: center;
}
@media (min-width: 900px) {
  .hero-banner { min-height: clamp(520px, 56vh, 720px); }
}
.hero-banner-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-banner-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.hero-banner-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.68) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-banner-content {
  position: relative; z-index: 2;
  padding: 3.5rem 0 3.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 900px) {
  .hero-banner-content { padding: 5.5rem 0 5.75rem; max-width: 44rem; }
}
.hero-kicker {
  display: inline-block;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
  margin-bottom: 1.35rem;
  padding: 0; border: none; background: none;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.78);
  font-size: 0.75rem; font-weight: 500; margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero h1 {
  font-size: clamp(2.05rem, 5vw, 3.35rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.18;
  margin: 0 auto 1.35rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal; font-weight: 700;
  color: #fff;
  background: none; -webkit-background-clip: unset; background-clip: unset;
}
.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.85rem;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
}
.hero-lead-line {
  display: block;
  max-width: 26rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0;
  justify-content: center;
}

/* Hero CTAs: messengers on top, red Подобрать below */
.hero-ctas--stack {
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-ctas--stack .hero-ctas-msg,
.hero-ctas--stack .eh-msg-row.hero-ctas-msg {
  width: 100%;
  max-width: 22.5rem;
  justify-content: center;
}
.hero-ctas--stack .hero-ctas-msg .eh-msg-btn,
.hero-ctas--stack .eh-msg-row.hero-ctas-msg .eh-msg-btn {
  flex: 1 1 0;
  min-width: 0;
}
.hero-ctas--stack .hero-ctas-primary {
  width: 100%;
  max-width: 22.5rem;
  justify-content: center;
  text-align: center;
}
@media (max-width: 420px) {
  .hero-ctas--stack .hero-ctas-msg,
  .hero-ctas--stack .eh-msg-row.hero-ctas-msg {
    max-width: 100%;
  }
  .hero-ctas--stack .hero-ctas-primary {
    max-width: 100%;
  }
}


/* Messenger CTAs — dark glass, white thin icons */
.eh-msg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.eh-msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  min-width: 148px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  flex: 0 0 auto;
}
.eh-msg-btn--lg {
  min-height: 52px;
  min-width: 160px;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  border-radius: 12px;
}
.eh-msg-btn:hover {
  border-color: #fff;
  background: rgba(30, 30, 30, 0.72);
  color: #fff;
  transform: translateY(-1px);
}
.eh-msg-icon {
  display: block;
  flex-shrink: 0;
  color: #fff;
  opacity: 0.95;
}
.hero-ctas,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.cta-band-actions {
  justify-content: flex-start;
}

.hero-banner .btn-secondary {
  background: rgba(20,20,20,0.55);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.hero-banner .btn-secondary:hover { border-color: #fff; background: rgba(30,30,30,0.7); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--eh-border);
}
.hero-stats strong { display: block; font-size: 1.25rem; color: var(--eh-red-light); }
.hero-stats span { font-size: 0.75rem; color: var(--eh-muted); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-visual {
  position: relative; aspect-ratio: 1 / 0.95; border-radius: 24px;
  background: linear-gradient(160deg, var(--eh-dark-3), var(--eh-dark-2));
  border: 1px solid var(--eh-border); overflow: hidden; box-shadow: var(--eh-shadow);
}
.hero-visual-inner { position: absolute; inset: 0; display: grid; place-items: center; padding: 1.5rem; }
.robot-svg { width: 85%; max-width: 340px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.hero-float { display: none; }

/* —— Sections —— */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--eh-dark-2); }

/* Home pillars under hero */
.eh-home-pillars {
  padding: 3.25rem 0 3.5rem;
  background: var(--eh-dark);
  border-bottom: 1px solid var(--eh-border);
  text-align: center;
}
.eh-home-pillars-title {
  margin: 0 auto 2.25rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--eh-text);
  max-width: 22rem;
}
.eh-home-pillars-grid {
  display: grid;
  gap: 1.75rem;
  max-width: 58rem;
  margin: 0 auto;
}
.eh-home-pillar {
  padding: 0 0.75rem;
}
.eh-home-pillar h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--eh-text);
}
.eh-home-pillar p {
  margin: 0 auto;
  max-width: 18rem;
  color: var(--eh-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
@media (min-width: 760px) {
  .eh-home-pillars {
    padding: 4rem 0 4.25rem;
  }
  .eh-home-pillars-title {
    margin-bottom: 2.75rem;
  }
  .eh-home-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.section-head { margin-bottom: 2.35rem; max-width: 36rem; }
.section-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 650;
  letter-spacing: -0.025em; margin-bottom: 0.55rem;
}
.section-head p { color: var(--eh-muted); font-size: 0.98rem; }
.section-head.center { text-align: center; margin-inline: auto; }

/* —— Trust —— */
.trust-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card {
  padding: 1.5rem 1.35rem; border-radius: 14px;
  background: var(--eh-card); border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, transform 0.2s;
}
.trust-card:hover { border-color: rgba(255,255,255,0.16); transform: translateY(-1px); }
.trust-icon {
  width: 28px; height: 2px; border-radius: 1px;
  background: var(--eh-red); color: transparent;
  display: block; margin-bottom: 1rem;
  font-size: 0; line-height: 0;
}
.trust-grid-calm .trust-card { background: transparent; border-color: rgba(255,255,255,0.08); }
.trust-card h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.trust-card p { font-size: 0.85rem; color: var(--eh-muted); }

/* —— Product cards —— */
.products-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  display: flex; flex-direction: column;
  border-radius: var(--eh-radius);
  background: var(--eh-card); border: 1px solid var(--eh-border);
  overflow: hidden; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  border-color: rgba(225, 6, 0, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.product-card-img {
  aspect-ratio: 16/11; background: linear-gradient(145deg, #141414, #0a0a0a);
  display: grid; place-items: center; position: relative; padding: 1.5rem;
}
.product-card-img svg { width: 70%; max-width: 200px; opacity: 0.95; }
.product-badge {
  position: absolute; top: 0.85rem; left: 0.85rem;
  padding: 0.25rem 0.6rem; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-hit { background: var(--eh-red); color: #fff; }
.badge-sale { background: var(--eh-warn); color: #111; }
.badge-soon { background: var(--eh-dark-3); color: var(--eh-muted); border: 1px solid var(--eh-border); }
.badge-premium { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.badge-new { background: #0ea5e9; color: #fff; }
.product-card-body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 0.75rem; color: var(--eh-red-light); font-weight: 600; margin-bottom: 0.25rem; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.product-meta { font-size: 0.85rem; color: var(--eh-muted); margin-bottom: 0.85rem; flex: 1; }
.product-price-row { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.price { font-size: 1.25rem; font-weight: 750; color: var(--eh-text); }
.price-old { font-size: 0.9rem; color: var(--eh-muted); text-decoration: line-through; }
.product-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* —— Tech compare (LiDAR vs RTK) —— */
.tech-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 768px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
.tech-card {
  padding: 1.5rem; border-radius: var(--eh-radius);
  background: var(--eh-card); border: 1px solid var(--eh-border);
  position: relative; overflow: hidden;
}
.tech-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tech-accent, var(--eh-red));
}
.tech-card h3 { font-size: 1.1rem; margin: 0.75rem 0 0.5rem; }
.tech-card p { font-size: 0.9rem; color: var(--eh-muted); margin-bottom: 1rem; }
.tech-card ul { font-size: 0.85rem; color: var(--eh-muted); }
.tech-card li { padding: 0.3rem 0 0.3rem 1.1rem; position: relative; }
.tech-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--eh-red-light); font-weight: 700;
}
.tech-tag {
  display: inline-block; padding: 0.2rem 0.55rem; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  background: var(--eh-red-muted); color: var(--eh-red-light);
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  background: var(--eh-dark-3);
  border: 1px solid rgba(225, 6, 0, 0.35);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-band { grid-template-columns: 1.4fr 1fr; padding: 3rem; }
}
.cta-band h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
  color: #fff;
}
.cta-band p {
  color: rgba(255,255,255,0.62);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  max-width: 34rem;
}
.cta-band-visual {
  display: none; justify-content: center;
}
@media (min-width: 768px) { .cta-band-visual { display: flex; } }

/* Photo CTA — homepage bottom banner */
.cta-band--photo {
  display: block;
  padding: 0;
  min-height: 280px;
  border: 1px solid rgba(225, 6, 0, 0.4);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.cta-band-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  filter: brightness(0.72) saturate(0.9);
}
.cta-band-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.9) 26%,
      rgba(0, 0, 0, 0.68) 48%,
      rgba(196, 30, 58, 0.58) 76%,
      rgba(196, 30, 58, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      transparent 42%,
      rgba(0, 0, 0, 0.32) 100%
    );
}
.cta-band-content {
  position: relative;
  z-index: 2;
  padding: 2.4rem 1.6rem 2.5rem;
  max-width: 34rem;
  text-align: left;
}
@media (min-width: 768px) {
  .cta-band--photo { min-height: 320px; }
  .cta-band-content {
    padding: 3rem 3rem 3.15rem;
    max-width: 36rem;
  }
}
.cta-band--photo h2 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  margin-bottom: 0.65rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.cta-band--photo p {
  color: rgba(220, 220, 220, 0.78);
  margin-bottom: 1.45rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cta-band--photo .btn-secondary {
  background: rgba(20, 20, 20, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  color: #fff;
}
.cta-band--photo .btn-secondary:hover {
  border-color: #fff;
  background: rgba(30, 30, 30, 0.7);
  color: #fff;
}

/* —— Contacts strip —— */
.contacts-strip {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) { .contacts-strip { grid-template-columns: repeat(3, 1fr); } }
.contact-item {
  padding: 1.25rem; border-radius: var(--eh-radius-sm);
  background: var(--eh-card); border: 1px solid var(--eh-border);
}
.contact-item h4 { font-size: 0.8rem; color: var(--eh-muted); margin-bottom: 0.35rem; font-weight: 500; }
.contact-item a, .contact-item p { font-weight: 600; font-size: 1.05rem; }
.contact-item a:hover { color: var(--eh-red-light); }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--eh-border);
  padding: 3rem 0 2rem; background: #000000;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--eh-muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 22rem; }
.footer-col h4 { font-size: 0.85rem; margin-bottom: 0.85rem; color: var(--eh-text); }
.footer-col a, .footer-col p {
  display: block; color: var(--eh-muted); font-size: 0.9rem; padding: 0.25rem 0;
}
.footer-col a:hover { color: var(--eh-red-light); }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid var(--eh-border);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.8rem; color: var(--eh-muted);
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(225, 6, 0, 0.12), transparent),
    var(--eh-dark);
  border-bottom: 1px solid var(--eh-border);
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 750;
  letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.page-hero p { color: var(--eh-muted); max-width: 36rem; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-size: 0.85rem; color: var(--eh-muted); margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--eh-red-light); }
.breadcrumb span { opacity: 0.5; }

/* —— Quiz —— */
.quiz-wrap { max-width: 640px; margin: 0 auto; padding: 2.5rem 0 4rem; }
.quiz-progress {
  display: flex; gap: 0.5rem; margin-bottom: 2rem;
}
.quiz-progress .step {
  flex: 1; height: 4px; border-radius: 4px;
  background: var(--eh-dark-3); transition: background 0.3s;
}
.quiz-progress .step.done, .quiz-progress .step.active { background: var(--eh-red); }
.quiz-card {
  background: var(--eh-card); border: 1px solid var(--eh-border);
  border-radius: 20px; padding: 1.75rem; box-shadow: var(--eh-shadow);
}
.quiz-card h2 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.quiz-card .hint { color: var(--eh-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.quiz-options { display: grid; gap: 0.75rem; }
.quiz-option {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.15rem; border-radius: 14px;
  border: 1.5px solid var(--eh-border); background: var(--eh-dark-2);
  text-align: left; transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.quiz-option:hover { border-color: rgba(225, 6, 0, 0.4); }
.quiz-option.selected {
  border-color: var(--eh-red); background: var(--eh-red-muted);
}
.quiz-option .opt-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--eh-dark-3); display: grid; place-items: center;
  font-size: 1.2rem;
}
.quiz-option.selected .opt-icon { background: rgba(225, 6, 0, 0.3); }
.quiz-option strong { display: block; margin-bottom: 0.15rem; }
.quiz-option span { font-size: 0.85rem; color: var(--eh-muted); }
.quiz-nav { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: 1.5rem; }
.quiz-result { display: none; }
.quiz-result.show { display: block; }
.quiz-panel { display: none; }
.quiz-panel.active { display: block; }
.result-card {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.25rem; border-radius: 14px;
  background: var(--eh-dark-2); border: 1px solid var(--eh-border);
  margin-bottom: 1rem;
}
@media (min-width: 560px) {
  .result-card { flex-direction: row; align-items: center; }
}
.result-card .rc-img {
  width: 100%; max-width: 140px; aspect-ratio: 1;
  border-radius: 12px; background: var(--eh-dark-3);
  display: grid; place-items: center; flex-shrink: 0;
}
.result-card .rc-img svg { width: 70%; }
.result-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.result-card .why { font-size: 0.85rem; color: var(--eh-muted); margin-bottom: 0.5rem; }
.result-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }

/* —— Catalog filters —— */
.catalog-layout {
  display: grid; gap: 1.5rem; padding: 2rem 0 4rem;
}
@media (min-width: 900px) {
  .catalog-layout { grid-template-columns: 260px 1fr; align-items: start; }
}
.filters {
  background: var(--eh-card); border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius); padding: 1.25rem;
  position: sticky; top: 80px;
}
.filters h3 { font-size: 0.95rem; margin-bottom: 1rem; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label.group-label {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--eh-muted); margin-bottom: 0.6rem; font-weight: 600;
}
.filter-check {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.35rem 0; font-size: 0.9rem; cursor: pointer; color: var(--eh-muted);
}
.filter-check:hover { color: var(--eh-text); }
.filter-check input {
  appearance: none; width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--eh-border); background: var(--eh-dark-2);
  position: relative; flex-shrink: 0;
}
.filter-check input:checked {
  background: var(--eh-red); border-color: var(--eh-red);
}
.filter-check input:checked::after {
  content: "✓"; position: absolute; inset: 0;
  display: grid; place-items: center; font-size: 0.7rem; color: #fff; font-weight: 700;
}
.catalog-toolbar {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 0.75rem; margin-bottom: 1.25rem;
}
.catalog-count { color: var(--eh-muted); font-size: 0.9rem; }
.catalog-empty {
  text-align: center; padding: 3rem 1rem; color: var(--eh-muted);
  grid-column: 1 / -1;
}

/* —— Product page —— */
.product-layout {
  display: grid; gap: 2rem; padding: 2rem 0 4rem;
}
@media (min-width: 900px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.product-gallery {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, var(--eh-dark-3), var(--eh-dark-2));
  border: 1px solid var(--eh-border);
  aspect-ratio: 1; display: grid; place-items: center; padding: 2rem;
  position: relative;
}
.product-gallery svg { width: 75%; max-width: 380px; }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.product-info .lead { color: var(--eh-muted); margin-bottom: 1.25rem; }
.variant-picker { margin-bottom: 1.5rem; }
.variant-picker h4 { font-size: 0.85rem; color: var(--eh-muted); margin-bottom: 0.6rem; font-weight: 500; }
.variants { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-btn {
  padding: 0.65rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--eh-border); background: var(--eh-dark-2);
  font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.variant-btn:hover { border-color: rgba(225, 6, 0, 0.5); }
.variant-btn.active {
  border-color: var(--eh-red); background: var(--eh-red-muted); color: var(--eh-red-light);
}
.variant-btn .v-price { display: block; font-size: 0.75rem; font-weight: 500; color: var(--eh-muted); margin-top: 0.15rem; }
.variant-btn.active .v-price { color: var(--eh-accent); }
.spec-list { margin: 1.5rem 0; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--eh-border);
  font-size: 0.9rem;
}
.spec-list li span:first-child { color: var(--eh-muted); }
.spec-list li span:last-child { font-weight: 600; text-align: right; }
.product-cta-box {
  padding: 1.25rem; border-radius: 14px;
  background: var(--eh-card); border: 1px solid var(--eh-border);
  margin-top: 1rem;
}
.product-cta-box .big-price { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.25rem; }
.product-cta-box .warranty { font-size: 0.85rem; color: var(--eh-muted); margin-bottom: 1rem; }
.product-cta-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.specs-section { padding-bottom: 4rem; }
.specs-table {
  width: 100%; border-collapse: collapse;
  background: var(--eh-card); border-radius: var(--eh-radius); overflow: hidden;
  border: 1px solid var(--eh-border);
}
.specs-table th, .specs-table td {
  padding: 0.85rem 1.15rem; text-align: left; font-size: 0.9rem;
  border-bottom: 1px solid var(--eh-border);
}
.specs-table th { background: var(--eh-dark-3); color: var(--eh-muted); font-weight: 600; width: 40%; }
.specs-table tr:last-child td, .specs-table tr:last-child th { border-bottom: none; }

/* —— Compare —— */
.compare-table-wrap { overflow-x: auto; padding: 2rem 0 4rem; }
.compare-table {
  width: 100%; min-width: 700px; border-collapse: collapse;
  background: var(--eh-card); border-radius: var(--eh-radius);
  border: 1px solid var(--eh-border); overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 0.9rem 1rem; text-align: center; font-size: 0.85rem;
  border-bottom: 1px solid var(--eh-border); vertical-align: middle;
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left; position: sticky; left: 0;
  background: var(--eh-card); font-weight: 600; color: var(--eh-muted);
  min-width: 140px;
}
.compare-table thead th {
  background: var(--eh-dark-3); font-weight: 700; color: var(--eh-text);
}
.compare-table thead th:first-child { background: var(--eh-dark-3); }
.compare-table .price-cell { color: var(--eh-red-light); font-weight: 700; }
.compare-check { color: var(--eh-red-light); font-weight: 700; }
.compare-no { color: var(--eh-muted); opacity: 0.5; }

/* —— Sticky header polish —— */
/* Sticky header polish */
.site-header {
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(225, 6, 0, 0.2);
}
.burger {
  min-width: 44px; min-height: 44px;
}
.mobile-nav a {
  min-height: 44px;
  display: flex; align-items: center;
}


/* —— Footer social —— */
.footer-social {
  display: flex; align-items: center; gap: 0.65rem;
  margin-top: 0.85rem;
}
.footer-social-link {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.footer-social-link img {
  width: 100%; height: 100%; object-fit: cover;
}
.footer-social-link:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.35), 0 8px 20px rgba(0,0,0,0.4);
}
.footer-social-link[aria-label="MAX"]:hover {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.4), 0 0 8px rgba(34, 211, 238, 0.2);
}
.footer-social-link[aria-label="Telegram"]:hover {
  border-color: rgba(34, 158, 217, 0.55);
  box-shadow: 0 0 18px rgba(34, 158, 217, 0.4);
}

/* —— WP content / entry —— */
.site-main { min-height: 40vh; }
.entry-content, .eh-content {
  color: var(--eh-text);
  font-size: 1.02rem;
  line-height: 1.65;
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content p, .eh-content p { margin-bottom: 1rem; color: rgba(255,255,255,0.85); }
.entry-content h2, .entry-content h3, .eh-content h2, .eh-content h3 {
  letter-spacing: -0.02em; margin: 1.75rem 0 0.75rem;
}
.entry-content a, .eh-content a { color: var(--eh-red-light); }
.entry-content a:hover, .eh-content a:hover { text-decoration: underline; }
.entry-content ul, .entry-content ol { margin: 0 0 1rem 1.25rem; list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.35rem; color: var(--eh-muted); }
.entry-content img { border-radius: var(--eh-radius-sm); }
.page-content-wrap { padding: 2.5rem 0 4rem; }
.text-accent { color: var(--eh-red); }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Nav menu WP classes */
.nav-desktop .current-menu-item > a,
.nav-desktop .current_page_item > a,
.mobile-nav .current-menu-item > a,
.mobile-nav .current_page_item > a {
  color: var(--eh-red); background: var(--eh-red-muted);
}
.nav-desktop ul,
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Keep real flex items (no display:contents) so menu never overlaps logo */
.nav-desktop .eh-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-desktop .eh-menu > li {
  display: flex;
  position: relative;
  flex: 0 0 auto;
}
.mobile-nav .eh-menu {
  display: flex;
  flex-direction: column;
}
.mobile-nav .eh-menu > li {
  display: block;
  position: relative;
}
.nav-desktop a, .mobile-nav a { /* inherited from prototype */ }

/* Cart icon in header — icon only */
.eh-header-cart {
  /* uses .header-icon-btn */
}
.eh-header-cart:hover {
  color: #fff;
}

/* —— WooCommerce: shop / archive —— */
.woocommerce-page .site-main,
.woocommerce .site-main { padding-bottom: 3rem; }

.woocommerce .woocommerce-products-header,
.woocommerce-products-header {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--eh-border);
  margin-bottom: 1.5rem;
}
.woocommerce-products-header .woocommerce-products-header__title,
.woocommerce-products-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 750; letter-spacing: -0.02em; color: #fff;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--eh-muted); font-size: 0.9rem;
}
.woocommerce .woocommerce-ordering select {
  background: var(--eh-card); border: 1px solid var(--eh-border);
  color: var(--eh-text); border-radius: 10px; padding: 0.5rem 0.85rem;
}

.woocommerce ul.products {
  display: grid !important;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 0 0 2rem !important;
  padding: 0 !important;
  list-style: none;
}
@media (min-width: 640px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1000px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; content: none !important; }

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  display: flex; flex-direction: column;
  border-radius: var(--eh-radius);
  background: var(--eh-card); border: 1px solid var(--eh-border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover {
  border-color: rgba(225, 6, 0, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.woocommerce ul.products li.product a img {
  width: 100%; height: auto; aspect-ratio: 16/11; object-fit: cover;
  margin: 0; background: linear-gradient(145deg, #141414, #0a0a0a);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1rem !important; padding: 0 1.25rem !important;
  color: #fff; letter-spacing: -0.01em; margin: 0.85rem 0 0.35rem !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 1.25rem; color: var(--eh-text) !important;
  font-size: 1.2rem; font-weight: 750;
}
.woocommerce ul.products li.product .price del {
  color: var(--eh-muted) !important; opacity: 0.8; font-size: 0.9rem; font-weight: 500;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none; color: var(--eh-red-light) !important;
}
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0.85rem 1.25rem 1.25rem !important;
  padding: 0.65rem 1.15rem !important;
  border-radius: 12px !important;
  background: var(--eh-red) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(225, 6, 0, 0.22);
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--eh-red-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.woocommerce span.onsale {
  background: var(--eh-warn) !important; color: #111 !important;
  border-radius: 6px !important; font-weight: 700 !important;
  min-height: auto !important; line-height: 1.4 !important;
  padding: 0.25rem 0.55rem !important;
  top: 0.85rem !important; left: 0.85rem !important; right: auto !important;
}

/* —— WooCommerce: single product —— */
body.single-product,
body.single-product .site-main,
body.single-product .eh-woo-wrap {
  background: #000 !important;
  color: #fff !important;
}
/* Long-form Electro HUB PDP: never force WC 2-column grid */
.woocommerce div.product.eh-pdp,
.single-product div.product.eh-pdp {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  background: #000 !important;
  color: #fff !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
}
.woocommerce div.product.eh-pdp .woocommerce-tabs,
.woocommerce div.product.eh-pdp .related,
.woocommerce div.product.eh-pdp .upsells {
  display: none !important;
}
.woocommerce div.product:not(.eh-pdp) {
  margin-bottom: 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .woocommerce div.product:not(.eh-pdp) {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .woocommerce div.product:not(.eh-pdp) .woocommerce-tabs,
  .woocommerce div.product:not(.eh-pdp) .related {
    grid-column: 1 / -1;
  }
  .woocommerce div.product.eh-pdp {
    display: block !important;
    grid-template-columns: none !important;
  }
}
.woocommerce div.product div.images {
  margin: 0 !important;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, var(--eh-dark-3), var(--eh-dark-2));
  border: 1px solid var(--eh-border);
  float: none !important; width: 100% !important;
}
.woocommerce div.product div.summary {
  float: none !important; width: 100% !important; margin: 0 !important;
}
.woocommerce div.product .product_title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 750;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 0.5rem;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--eh-text) !important; font-size: 1.75rem; font-weight: 800;
  margin-bottom: 1rem;
}
.woocommerce div.product p.price del { color: var(--eh-muted) !important; font-size: 1rem; }
.woocommerce div.product p.price ins { color: var(--eh-red-light) !important; text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--eh-muted); margin-bottom: 1.25rem;
}
.woocommerce div.product form.cart {
  margin-bottom: 1.5rem;
  padding: 1.25rem; border-radius: 14px;
  background: var(--eh-card); border: 1px solid var(--eh-border);
}
/* Custom PDP buy column — flush with messenger row, no padded WC card */
.woocommerce div.product .eh-pdp-cart form.cart,
.woocommerce .eh-pdp .eh-pdp-cart form.cart {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.woocommerce div.product form.cart .quantity .qty {
  background: var(--eh-dark-2); border: 1px solid var(--eh-border);
  color: #fff; border-radius: 10px; padding: 0.55rem 0.75rem; width: 4.5rem;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  margin: 0 0 0 0.5rem !important;
  padding: 0.75rem 1.5rem !important;
}
.woocommerce div.product .eh-pdp-cart form.cart .single_add_to_cart_button,
.woocommerce .eh-pdp .eh-pdp-cart form.cart .single_add_to_cart_button {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.woocommerce div.product .product_meta {
  color: var(--eh-muted); font-size: 0.85rem;
  padding-top: 1rem; border-top: 1px solid var(--eh-border);
}
.woocommerce div.product .product_meta a { color: var(--eh-red-light); }

.woocommerce div.product .woocommerce-tabs {
  margin-top: 1rem;
  border-radius: var(--eh-radius);
  background: var(--eh-card); border: 1px solid var(--eh-border);
  overflow: hidden;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important; margin: 0 !important;
  background: var(--eh-dark-3);
  border-bottom: 1px solid var(--eh-border) !important;
  display: flex; flex-wrap: wrap; list-style: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important; border: none !important;
  margin: 0 !important; padding: 0 !important;
  border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block; padding: 0.9rem 1.25rem; color: var(--eh-muted);
  font-weight: 600; font-size: 0.9rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--eh-red-light);
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 1.5rem 1.25rem; margin: 0 !important;
  background: transparent !important; color: var(--eh-muted);
  box-shadow: none !important; border: none !important;
}
.woocommerce table.shop_attributes {
  border-color: var(--eh-border) !important;
}
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  border-color: var(--eh-border) !important;
  color: var(--eh-muted); padding: 0.75rem 1rem !important;
  background: transparent !important;
}
.woocommerce table.shop_attributes th { color: var(--eh-text); width: 40%; }

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  font-size: 1.5rem; font-weight: 650; letter-spacing: -0.02em;
  margin: 2rem 0 1.25rem; color: #fff;
}

/* —— Cart —— */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  padding: 2rem 0 4rem;
}
.woocommerce table.shop_table {
  border: 1px solid var(--eh-border) !important;
  border-radius: var(--eh-radius);
  background: var(--eh-card);
  color: var(--eh-text);
  border-collapse: separate; border-spacing: 0;
  overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--eh-border) !important;
  padding: 1rem !important;
  background: transparent !important;
  color: var(--eh-text);
}
.woocommerce table.shop_table thead th {
  background: var(--eh-dark-3) !important;
  color: var(--eh-muted); font-weight: 600; font-size: 0.85rem;
}
.woocommerce-cart table.cart img { width: 64px; border-radius: 8px; }
.woocommerce a.remove {
  color: var(--eh-red) !important; font-size: 1.4rem !important;
}
.woocommerce a.remove:hover {
  background: var(--eh-red) !important; color: #fff !important;
}
.woocommerce .cart_totals,
.woocommerce-checkout #order_review {
  background: var(--eh-card); border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius); padding: 1.5rem;
}
.woocommerce .cart_totals h2,
.woocommerce-checkout-review-order-table,
#order_review_heading {
  color: #fff; font-size: 1.25rem;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block !important; text-align: center;
  margin: 1rem 0 0 !important; padding: 0.95rem 1.5rem !important;
  font-size: 1.05rem !important;
}

/* —— Checkout —— */
.woocommerce form .form-row label {
  color: var(--eh-muted); font-size: 0.85rem; font-weight: 500;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-selection {
  background: var(--eh-dark-2) !important;
  border: 1px solid var(--eh-border) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.7rem 0.9rem !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--eh-red) !important;
  outline: none;
  box-shadow: 0 0 0 2px var(--eh-red-muted);
}
.woocommerce-checkout #payment {
  background: var(--eh-card) !important;
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: var(--eh-border) !important;
  background: transparent !important;
}
.woocommerce-checkout #payment div.payment_box {
  background: var(--eh-dark-2) !important;
  color: var(--eh-muted) !important;
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--eh-dark-2) !important;
}
.woocommerce #payment #place_order {
  width: 100%; margin-top: 1rem !important;
  padding: 0.95rem 1.5rem !important; font-size: 1.05rem !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--eh-card) !important;
  border-top-color: var(--eh-red) !important;
  color: var(--eh-text) !important;
  border-radius: var(--eh-radius-sm);
}
.woocommerce-message::before { color: var(--eh-red) !important; }
.woocommerce-info::before { color: var(--eh-red-light) !important; }
.woocommerce-error { border-top-color: var(--eh-danger) !important; }
.woocommerce-error::before { color: var(--eh-danger) !important; }
.woocommerce-message a, .woocommerce-info a { color: var(--eh-red-light) !important; }

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  color: var(--eh-muted); font-size: 0.85rem; margin-bottom: 1rem;
  padding: 1.25rem 0 0;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--eh-muted); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--eh-red-light); }

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex; gap: 0.35rem; justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important; overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--eh-card) !important;
  border: 1px solid var(--eh-border) !important;
  color: var(--eh-muted) !important;
  border-radius: 10px !important;
  min-width: 42px; min-height: 42px;
  display: inline-flex !important; align-items: center; justify-content: center;
  margin: 0 !important; padding: 0.5rem 0.75rem !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--eh-red-muted) !important;
  border-color: var(--eh-red) !important;
  color: var(--eh-red-light) !important;
}

/* Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--eh-card); border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius); padding: 1rem;
  margin-bottom: 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block; padding: 0.65rem 0.85rem; border-radius: 8px;
  color: var(--eh-muted); font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--eh-red-muted); color: var(--eh-red);
}
.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--eh-card); border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius); padding: 1.5rem;
}

/* Featured products shortcode on front */
.eh-featured .woocommerce ul.products { margin-top: 0 !important; }
.eh-section-cta { text-align: center; margin-top: 2rem; }

/* Align WP menu fallback links */
/* fallback styles handled via .eh-menu */
.eh-mobile-fallback { display: flex; flex-direction: column; gap: 0.25rem; }
.eh-mobile-fallback a {
  padding: 0.75rem 1rem; border-radius: 10px; color: var(--eh-muted); font-weight: 500;
}
.eh-mobile-fallback a:hover { background: var(--eh-red-muted); color: var(--eh-red); }

/* Custom logo sizing */
.custom-logo-link img, .custom-logo { height: 36px; width: auto; max-width: min(220px, 34vw); object-fit: contain; }
.footer-brand .custom-logo-link img, .footer-brand .custom-logo { height: 36px; max-width: min(220px, 70vw); object-fit: contain; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* WP nav menu list — real flex items so «Ещё» dropdown works */
.nav-desktop .eh-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.nav-desktop .eh-menu > li {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-desktop .eh-menu > li > a,
.nav-desktop .eh-menu > li > .eh-more-toggle {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  margin: 0;
  box-sizing: border-box;
}
.nav-desktop .eh-more-toggle {
  appearance: none;
  -webkit-appearance: none;
  height: auto;
  min-height: 0;
  vertical-align: middle;
}
.nav-desktop .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 12rem;
  background: #0a0a0a;
  border: 1px solid var(--eh-border);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 80;
}
.nav-desktop .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.nav-desktop .menu-item-has-children:hover > .sub-menu,
.nav-desktop .eh-nav-more.is-open > .sub-menu,
.nav-desktop .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-desktop .sub-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--eh-muted);
  white-space: nowrap;
}
.nav-desktop .sub-menu a:hover {
  color: #fff;
  background: var(--eh-red-muted);
}

.mobile-nav .eh-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav .eh-menu > li { display: block; }
.mobile-nav .sub-menu {
  list-style: none;
  margin: 0.15rem 0 0.35rem 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 1px solid var(--eh-border);
  padding-left: 0.65rem;
}

.eh-nav-fallback { display: flex; }
.logo .custom-logo-link { display: flex; align-items: center; }



/* Utility */
.mt-2 { margin-top: 1rem; }
.gap-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
/* Reveal: visible by default so pages never look "broken" if JS lags */
.reveal { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s ease; }
html.js-reveal .reveal:not(.is-visible) { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


.quiz-options { counter-reset: opt; }
.quiz-option .opt-icon {
  counter-increment: opt;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--eh-muted);
}
.quiz-option .opt-icon::before { content: counter(opt); }
.quiz-option.selected .opt-icon { color: #fff; }

/* ===== Ported page styles: club / brands / dealers / service / contacts / quiz extras ===== */

/* lines 603-680 */
.contacts-layout {
  display: grid; gap: 2rem; padding: 2rem 0 4rem;
}
@media (min-width: 800px) {
  .contacts-layout { grid-template-columns: 1fr 1fr; }
}
.contact-card-lg {
  padding: 1.75rem; border-radius: 20px;
  background: var(--eh-card); border: 1px solid var(--eh-border);
}
.contact-card-lg h3 { margin-bottom: 1.25rem; }
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid var(--eh-border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ci {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--eh-red-muted); color: var(--eh-red-light);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-row strong { display: block; margin-bottom: 0.15rem; }
.contact-row span, .contact-row a { font-size: 0.9rem; color: var(--eh-muted); }
.contact-row a:hover { color: var(--eh-red-light); }

/* —— Forms —— */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.85rem; color: var(--eh-muted); margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px;
  background: var(--eh-dark-2); border: 1.5px solid var(--eh-border);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--eh-red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.25);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* —— Modal —— */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  width: min(100%, 420px); background: var(--eh-card);
  border: 1px solid var(--eh-border); border-radius: 20px;
  padding: 1.75rem; box-shadow: var(--eh-shadow);
}
.modal h3 { margin-bottom: 0.35rem; }
.modal .modal-sub { color: var(--eh-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.modal-close {
  float: right; width: 32px; height: 32px; border-radius: 8px;
  background: var(--eh-dark-3); color: var(--eh-muted);
  display: grid; place-items: center; font-size: 1.1rem;
}
.modal-close:hover { color: var(--eh-text); }

/* —— Toast —— */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
  z-index: 300; padding: 0.9rem 1.35rem; border-radius: 12px;
  background: var(--eh-red-dark); color: #fff; font-weight: 600;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; align-items: center; gap: 0.5rem; max-width: calc(100% - 2rem);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* —— Tease —— */
.tease-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem;
}
.tease-chip {

/* lines 915-957 */
.info-tip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  margin-left: 0.35rem; vertical-align: middle;
  border-radius: 50%;
  background: var(--eh-dark-3); border: 1px solid var(--eh-border);
  color: var(--eh-muted); font-size: 0.7rem; font-weight: 700;
  cursor: help; position: relative;
}
.info-tip:hover, .info-tip:focus, .info-tip.is-open {
  color: var(--eh-red-light); border-color: rgba(225, 6, 0, 0.5);
  background: var(--eh-red-muted);
}
.info-tip[data-tip]::after {
  content: attr(data-tip);
  position: absolute; z-index: 80;
  left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%) scale(0.96);
  width: max(180px, min(260px, 70vw));
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #111; border: 1px solid rgba(225, 6, 0, 0.35);
  color: var(--eh-text); font-size: 0.75rem; font-weight: 500;
  line-height: 1.4; text-align: left; white-space: normal;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.info-tip.is-open::after,
.info-tip:hover::after,
.info-tip:focus::after {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) scale(1);
}
@media (max-width: 480px) {
  .info-tip[data-tip]::after {
    left: auto; right: -8px;
    transform: translateX(0) scale(0.96);
  }
  .info-tip.is-open::after,
  .info-tip:hover::after,
  .info-tip:focus::after {
    transform: translateX(0) scale(1);

/* lines 962-990 */
.faq-list { display: grid; gap: 0.65rem; max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--eh-border);
  border-radius: 14px;
  background: var(--eh-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--eh-red-light); font-size: 1.25rem; font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--eh-muted); font-size: 0.9rem;
}

/* Catalog mobile filter drawer/sheet */
.filters-toggle {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 44px;

/* lines 1045-1060 */
.quiz-option {
  min-height: 56px; padding: 1.05rem 1.15rem;
}
.quiz-option .opt-icon {
  width: 44px; height: 44px;
}
.quiz-nav .btn { min-width: 120px; min-height: 48px; }
@media (max-width: 559px) {
  .quiz-wrap { padding: 1.25rem 0 5rem; }
  .quiz-card { padding: 1.35rem 1.1rem; }
  .quiz-card h2 { font-size: 1.25rem; }
}

/* Service page */
.service-grid {
  display: grid; gap: 1rem;

/* lines 1059-1082 */
.service-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 1.5rem; border-radius: var(--eh-radius);
  background: var(--eh-card); border: 1px solid var(--eh-border);
  transition: border-color 0.25s, transform 0.3s var(--reveal-ease), box-shadow 0.3s;
}
.service-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.service-card .svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--eh-red-muted); color: var(--eh-red-light);
  display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 0.85rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.9rem; color: var(--eh-muted); }


/* lines 1705-2076 */
.club-page { overflow-x: clip; }

.club-hero {
  position: relative;
  padding: 3.25rem 0 3.5rem;
  isolation: isolate;
  overflow: hidden;
}
.club-hero-glow {
  position: absolute; inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%, rgba(225, 6, 0, 0.38), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(225, 6, 0, 0.12), transparent 65%),
    radial-gradient(ellipse 35% 35% at 15% 40%, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none; z-index: 0;
}
.club-hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
  opacity: 0.55;
}
.club-hero .container { position: relative; z-index: 1; }
.club-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .club-hero { padding: 4.5rem 0 5rem; }
  .club-hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.club-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(225, 6, 0, 0.18);
  border: 1px solid rgba(225, 6, 0, 0.45);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.25);
  margin-bottom: 1.15rem;
}
.club-badge::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--eh-red);
  box-shadow: 0 0 10px var(--eh-red);
}
.club-hero h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.15rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 1rem; max-width: 16ch;
}
.club-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 30%, #FF3B33 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.club-hero-lead {
  color: var(--eh-muted); font-size: 1.05rem; max-width: 36rem;
  margin-bottom: 1.75rem;
}
.club-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.club-hero-note {
  font-size: 0.85rem; color: var(--eh-muted);
  display: flex; align-items: flex-start; gap: 0.5rem;
  max-width: 28rem;
}
.club-hero-note span { color: var(--eh-red-light); font-weight: 700; }

/* Scarcity strip */
.club-scarcity {
  border-block: 1px solid var(--eh-border);
  background: linear-gradient(90deg, rgba(225,6,0,0.08), transparent 40%, transparent 60%, rgba(225,6,0,0.08));
  padding: 1rem 0;
}
.club-scarcity-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1.5rem; text-align: center;
  font-size: 0.92rem; font-weight: 600;
}
.club-scarcity-inner strong { color: var(--eh-red-light); }
.club-scarcity-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--eh-red); opacity: 0.7;
  display: none;
}
@media (min-width: 700px) { .club-scarcity-dot { display: block; } }

/* VIP card mock */
.club-card-stage {
  display: grid; place-items: center;
  perspective: 900px;
  min-height: 220px;
}
.vip-card {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1.586 / 1;
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  background:
    linear-gradient(145deg, #1c1c1c 0%, #0d0d0d 45%, #1a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(225, 6, 0, 0.18);
  overflow: hidden;
  transform: none;
  transition: transform 0.45s var(--reveal-ease);
}
.vip-card:hover { transform: translateY(-3px); }
.vip-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(225, 6, 0, 0.35), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}
.vip-card-shine {
  position: absolute; inset: -40% -60%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(225, 6, 0, 0.15) 55%,
    transparent 65%
  );
  animation: vipShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes vipShine {
  0%, 100% { transform: translateX(-30%) rotate(12deg); opacity: 0.35; }
  50% { transform: translateX(30%) rotate(12deg); opacity: 0.9; }
}
.vip-card-chip {
  width: 36px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, #d4af37, #f5e6a3 40%, #b8860b 70%, #e8d48b);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  margin-bottom: 1.1rem; position: relative; z-index: 1;
}
.vip-card-chip::after {
  content: "";
  position: absolute; inset: 4px 6px;
  border: 1px solid rgba(0,0,0,0.25); border-radius: 3px;
}
.vip-card-brand {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.85rem;
}
.vip-card-brand img {
  height: 28px; width: auto; border-radius: 4px; opacity: 0.95;
}
.vip-card-brand span {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.vip-card-title {
  position: relative; z-index: 1;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.vip-card-sub {
  position: relative; z-index: 1;
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  margin-bottom: auto;
}
.vip-card-footer {
  position: absolute; left: 1.35rem; right: 1.35rem; bottom: 1.15rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 1;
}
.vip-card-footer small {
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.vip-card-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
}
.vip-card-holo {
  position: absolute; right: -10%; bottom: -20%;
  width: 55%; height: 70%;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(225,6,0,0.0), rgba(255,100,80,0.25), rgba(255,255,255,0.12),
    rgba(120,80,255,0.15), rgba(225,6,0,0.2), transparent);
  filter: blur(18px); opacity: 0.7; pointer-events: none;
  animation: vipHolo 8s ease-in-out infinite alternate;
}
@keyframes vipHolo {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-8%, -6%) scale(1.08); }
}

/* Benefits */
.club-benefits {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .club-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .club-benefits { grid-template-columns: repeat(3, 1fr); } }
.club-benefit {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: var(--eh-radius);
  background: var(--eh-card);
  border: 1px solid var(--eh-border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.club-benefit:hover {
  border-color: rgba(225, 6, 0, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.club-benefit-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--eh-red-muted); color: var(--eh-red-light);
  font-size: 1.25rem; margin-bottom: 1rem;
}
.club-benefit h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.club-benefit p { font-size: 0.88rem; color: var(--eh-muted); }
.club-benefit-tag {
  display: inline-flex; margin-top: 0.9rem;
  padding: 0.28rem 0.65rem; border-radius: 999px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5e6a3;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* How to join steps */
.club-steps {
  display: grid; gap: 1rem;
  counter-reset: clubstep;
}
@media (min-width: 768px) { .club-steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.club-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem;
  border-radius: var(--eh-radius);
  background: var(--eh-dark-3);
  border: 1px solid var(--eh-border);
}
.club-step::before {
  counter-increment: clubstep;
  content: "0" counter(clubstep);
  display: block;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--eh-red); margin-bottom: 0.75rem;
}
.club-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.club-step p { font-size: 0.88rem; color: var(--eh-muted); }

/* Social proof placeholders */
.club-proof {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) { .club-proof { grid-template-columns: repeat(2, 1fr); } }
.club-proof-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: var(--eh-radius);
  background: linear-gradient(145deg, #161616, #0f0f0f);
  border: 1px solid var(--eh-border);
}
.club-proof-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--eh-red-muted); font-size: 1.15rem;
}
.club-proof-card h3 { font-size: 0.98rem; margin-bottom: 0.3rem; }
.club-proof-card p { font-size: 0.85rem; color: var(--eh-muted); }
.club-proof-card .soon {
  display: inline-block; margin-top: 0.55rem;
  font-size: 0.7rem; font-weight: 700; color: var(--eh-red-light);
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* Final CTA */
.club-final {
  position: relative;
  border-radius: calc(var(--eh-radius) + 4px);
  padding: 2.25rem 1.5rem;
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(225,6,0,0.28), transparent 55%),
    linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(225, 6, 0, 0.35);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .club-final { padding: 3rem 2.5rem; } }
.club-final h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}
.club-final p {
  color: var(--eh-muted); max-width: 36rem;
  margin: 0 auto 1.5rem;
}
.club-final-ctas {
  display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center;
}

/* Index teaser */
.club-teaser {
  display: grid; gap: 1.5rem; align-items: center;
  padding: 1.75rem;
  border-radius: var(--eh-radius);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(225,6,0,0.2), transparent 55%),
    var(--eh-card);
  border: 1px solid rgba(225, 6, 0, 0.28);
  overflow: hidden;
}
@media (min-width: 768px) {
  .club-teaser { grid-template-columns: 1fr auto; padding: 2rem 2.25rem; }
}
.club-teaser-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--eh-red-light);
  margin-bottom: 0.5rem;
}
.club-teaser h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 750; letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.club-teaser p { color: var(--eh-muted); font-size: 0.92rem; max-width: 36rem; }
.club-teaser-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }

/* Nav accent for club link (optional subtle) */
.nav-desktop a[href*="club.html"],
.mobile-nav a[href*="club.html"] {
  color: #e8c4c2;
}
.nav-desktop a[href*="club.html"]:hover,
.nav-desktop a[href*="club.html"].active,
.mobile-nav a[href*="club.html"]:hover,
.mobile-nav a[href*="club.html"].active {
  color: var(--eh-red);
}

@media (prefers-reduced-motion: reduce) {
  .vip-card-shine, .vip-card-holo { animation: none !important; }
  .vip-card { transform: none; }
  .vip-card:hover { transform: none; }
  .club-benefit:hover { transform: none; }
}

/* ============================================================
   Brands + Dealers (v4)
   ============================================================ */


/* lines 2078-2096 */
.brand-mono {
  display: inline-flex; align-items: center; gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.brand-mono-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(225, 6, 0, 0.45);
  color: var(--eh-red-light);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 8px 24px rgba(225,6,0,0.12);
}
.brand-mono-word {
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff;
}

/* —— Homepage brands carousel —— */

/* lines 2298-2306 */
.page-hero { padding: 2rem 0 1rem; }
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; margin: 0.5rem 0 0.75rem;
}
.page-hero h1 em {
  font-style: normal; color: var(--eh-red-light);
}
.page-hero-lead { color: var(--eh-muted); max-width: 36rem; font-size: 1.05rem; }

/* lines 2307-2455 */
.brands-hub-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .brands-hub-grid { grid-template-columns: 1fr 1fr; } }
.brands-hub-card {
  display: block; padding: 1.5rem 1.35rem;
  border-radius: var(--eh-radius);
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(225,6,0,0.18), transparent 55%),
    var(--eh-card);
  border: 1px solid var(--eh-border);
  transition: border-color 0.25s, transform 0.25s;
}
.brands-hub-card:hover {
  border-color: rgba(225,6,0,0.5);
  transform: translateY(-3px);
}
.brands-hub-card h2 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.brands-hub-card p { color: var(--eh-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.brands-hub-link { font-weight: 650; color: var(--eh-red-light); font-size: 0.9rem; }

/* —— Dealers B2B —— */
.dealers-hero {
  position: relative; padding: 2.5rem 0 3rem; overflow: hidden;
}
.dealers-hero-glow {
  position: absolute; inset: -10% 30% auto -15%; height: 60%;
  background: radial-gradient(ellipse, rgba(225,6,0,0.3), transparent 65%);
  pointer-events: none;
}
.dealers-hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .dealers-hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.dealers-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.dealers-hero h1 em {
  font-style: normal; color: var(--eh-red-light);
}
.dealers-hero-lead {
  color: var(--eh-muted); font-size: 1.05rem; max-width: 36rem;
  margin-bottom: 1.5rem;
}
.dealers-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1rem; }
.dealers-hero-note { font-size: 0.82rem; color: var(--eh-muted); }

.dealers-hero-card {
  padding: 1.5rem;
  border-radius: var(--eh-radius);
  background: linear-gradient(160deg, #1c1c1c, #0c0c0c);
  border: 1px solid rgba(225, 6, 0, 0.35);
  box-shadow: var(--eh-shadow);
}
.dealers-hero-card-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--eh-red-light);
  margin-bottom: 1rem;
}
.dealers-hero-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--eh-border);
  font-size: 0.95rem;
}
.dealers-hero-card-row strong { color: var(--eh-red-light); }
.dealers-hero-card-foot {
  margin-top: 1rem; font-size: 0.78rem; color: var(--eh-muted);
}

.dealers-benefits {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .dealers-benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .dealers-benefits { grid-template-columns: repeat(4, 1fr); } }
.dealers-benefit {
  padding: 1.35rem 1.2rem;
  border-radius: var(--eh-radius);
  background: var(--eh-card);
  border: 1px solid var(--eh-border);
}
.dealers-benefit-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 0.75rem;
  background: var(--eh-red-muted); font-size: 1.2rem;
}
.dealers-benefit h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.dealers-benefit p { font-size: 0.88rem; color: var(--eh-muted); }

.dealers-final {
  text-align: center; padding: 2.25rem 1.5rem;
  border-radius: calc(var(--eh-radius) + 4px);
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(225,6,0,0.25), transparent 55%),
    linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(225, 6, 0, 0.35);
}
.dealers-final h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 800; margin-bottom: 0.55rem; }
.dealers-final p { color: var(--eh-muted); margin-bottom: 1.35rem; }
.dealers-final-ctas { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

/* Auth forms */
.dealers-auth { max-width: 520px; }
.dealers-auth-card {
  margin-top: 1rem; padding: 1.75rem 1.35rem;
  border-radius: var(--eh-radius);
  background: var(--eh-card);
  border: 1px solid var(--eh-border);
}
@media (min-width: 640px) { .dealers-auth-card { padding: 2rem 2rem; } }
.dealers-auth-card h1 {
  font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.dealers-auth-sub { color: var(--eh-muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
.dealers-form .form-group { margin-bottom: 1rem; }
.dealers-form label {
  display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem;
}
.dealers-form .optional { font-weight: 400; color: var(--eh-muted); font-size: 0.8rem; }
.dealers-form input {
  width: 100%; padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: var(--eh-dark-2);
  border: 1px solid var(--eh-border);
  transition: border-color 0.2s;
}
.dealers-form input:focus {
  outline: none; border-color: var(--eh-red);
  box-shadow: 0 0 0 3px var(--eh-red-muted);
}
.form-row-2 {
  display: grid; gap: 0.85rem;
}
@media (min-width: 520px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.dealers-auth-switch {
  text-align: center; margin-top: 1.25rem;
  font-size: 0.9rem; color: var(--eh-muted);
}
.dealers-auth-switch a { color: var(--eh-red-light); font-weight: 600; }
#dealer-demo-login { margin-top: 0.75rem; }


/* lines 2553-2570 */
.quiz-options { counter-reset: opt; }
.quiz-option .opt-icon {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--eh-muted); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.quiz-option .opt-icon::before {
  counter-increment: opt; content: counter(opt, decimal-leading-zero);
}
.quiz-option.selected .opt-icon {
  color: var(--eh-red-light);
  background: rgba(225, 6, 0, 0.12);
  border-color: rgba(225, 6, 0, 0.28);
}
.svc-icon,
.pdp-trust-icon,
.pdp-benefit-icon,
.pdp-box-ico,

.eh-msg-icon--max {
  width: 18px;
  height: 18px;
}
.eh-msg-btn--lg .eh-msg-icon--max {
  width: 20px;
  height: 20px;
}


.footer-brand-desc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--eh-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 22rem;
  line-height: 1.5;
}
.footer-social--text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
}
.footer-social--text a {
  display: inline;
  color: var(--eh-muted);
  font-weight: 500;
  font-size: 0.92rem;
  background: none;
  border: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
}
.footer-social--text a:hover {
  color: var(--eh-red-light);
  background: none;
  border: 0;
  transform: none;
  box-shadow: none;
}
.footer-bottom {
  justify-content: flex-start;
}


/* Legal link in footer */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.footer-legal {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  text-decoration: none;
}
.footer-legal:hover { color: #ff8a80; }

/* Back to top — always above sticky bar */
.eh-to-top {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 200;
  width: 46px;
  height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(196, 30, 58, 0.55);
  background: rgba(18, 18, 18, 0.95);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.15s ease;
}
.eh-to-top[hidden] {
  display: inline-flex !important;
}
.eh-to-top.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.eh-to-top:hover,
.eh-to-top:focus-visible {
  border-color: #c41e3a;
  background: #1a1a1a;
  color: #fff;
  outline: none;
}
body.single-product .eh-to-top {
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  .eh-to-top {
    right: 1.5rem;
    bottom: 1.75rem;
    width: 48px;
    height: 48px;
  }
  body.single-product .eh-to-top {
    bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }
}
