/*
 * ZiarMedical — main.css v5.0
 * Header, footer, butoane, toast, back-to-top, weather band, newsletter, video overlay
 * Light mode only — dark mode eliminat complet
 */

/* ══ PROGRESS BAR ══════════════════════════════════ */
.zm-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 3px; background: transparent; pointer-events: none;
}
.zm-progress-bar {
  height: 100%; width: 0%;
  background: var(--zm-ac-grad);
  transition: width .1s linear;
}

/* ══ SKIP LINK ══════════════════════════════════════ */
.zm-skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--zm-ac); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; z-index: 9999;
  transition: top .15s;
}
.zm-skip-link:focus { top: 16px; }

/* ══ WEATHER BAND ══════════════════════════════════ */
.zm-weather-band {
  background: #FFFFFF;
  border-bottom: 1px solid var(--zm-bd);
  font-family: var(--zm-font-b);
  font-size: 11.5px;
  color: var(--zm-t2);
}

.zm-wb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.zm-wb-left {
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0; overflow: hidden; flex: 1; min-width: 0;
}
.zm-wb-left svg { flex-shrink: 0; }

.zm-wb-loc {
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.zm-wb-loc strong { font-weight: 700; color: var(--zm-t1); }

.zm-wb-wx {
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; flex-shrink: 0; color: var(--zm-t2);
}

.zm-wb-sep {
  width: 1px; height: 14px;
  background: var(--zm-bd2); flex-shrink: 0;
}

.zm-wb-item {
  display: flex; align-items: center; gap: 3px;
  white-space: nowrap; color: var(--zm-t2); flex-shrink: 0;
}
.zm-wb-item strong { color: var(--zm-t1); font-weight: 700; }
.zm-wb-sub { color: var(--zm-t4); margin-left: 2px; font-size: 10.5px; }
.zm-wb-wind { display: none; }
@media (min-width: 640px) { .zm-wb-wind { display: flex; } }
@media (max-width: 639px) {
  .zm-wb-item:nth-child(n+4) { display: none; }
  .zm-wb-sep:nth-child(n+4)  { display: none; }
  .zm-wb-wx { display: none; }
}

.zm-wb-right {
  display: flex; align-items: center; gap: 12px;
  margin-left: 14px; overflow: hidden; flex-shrink: 0;
}
@media (max-width: 799px) { .zm-wb-right { display: none; } }

.zm-wb-alert {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  white-space: nowrap; max-width: 360px;
  overflow: hidden; text-overflow: ellipsis; flex-shrink: 0;
}
.zm-wb-alert + .zm-wb-alert { display: none; }
@media (min-width: 1100px) { .zm-wb-alert + .zm-wb-alert { display: flex; } }

.zm-wb-warn  { color: #c2410c; }
.zm-wb-info  { color: #1d4ed8; }
.zm-wb-good  { color: #15803d; }

.zm-wb-close {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  border: 1px solid var(--zm-bd); background: transparent;
  color: var(--zm-t4); cursor: pointer; margin-left: 8px; flex-shrink: 0;
  transition: background .12s, color .12s;
}
.zm-wb-close:hover { background: var(--zm-bg3); color: var(--zm-t1); }

/* ══ HEADER ══════════════════════════════════════════ */

.zm-hdr {
  position: sticky; top: 0; z-index: 500;
  height: 62px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(200%) blur(20px);
  -webkit-backdrop-filter: saturate(200%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow .2s;
}

.zm-hdr.zm-hdr-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
}

.zm-hdr-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center; gap: 0;
}

/* Logo */
.zm-hdr-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
}
.zm-hdr-logo img { height: 34px; width: auto; display: block; }
.zm-hdr-logo:hover { text-decoration: none; opacity: .88; }

/* Nav central */
.zm-hdr-nav {
  display: none; align-items: center; gap: 2px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px; padding: 3px 5px;
  margin: 0 auto; flex-shrink: 0;
}
@media (min-width: 900px) {
  .zm-hdr-logo { margin-right: 0; }
  .zm-hdr-nav  { display: flex; }
}

.zm-hdr-nav a {
  font-family: var(--zm-font-b);
  font-size: 13px; font-weight: 700; color: var(--zm-t2);
  padding: 5px 13px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  transition: background .14s, color .14s; line-height: 1;
  min-height: 34px; display: flex; align-items: center;
}
.zm-hdr-nav a:hover {
  background: rgba(76, 34, 173, 0.08); color: var(--zm-ac);
  text-decoration: none;
}
.zm-hdr-nav a.zm-nav-active {
  background: var(--zm-ac-grad); color: #fff !important;
  box-shadow: 0 2px 8px rgba(76, 34, 173, 0.22);
}

/* Actions dreapta */
.zm-hdr-right {
  display: flex; align-items: center; gap: 5px;
  margin-left: auto; flex-shrink: 0;
}
@media (min-width: 900px) { .zm-hdr-right { margin-left: 20px; } }

/* Buton icon */
.zm-hdr-btn {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  min-width: 38px; height: 38px; padding: 0 9px;
  border-radius: 9px; border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(0, 0, 0, 0.025); color: var(--zm-t1);
  cursor: pointer; text-decoration: none;
  font-family: var(--zm-font-b); font-size: 12px; font-weight: 700;
  transition: background .14s, border-color .14s, color .14s, transform .14s;
  flex-shrink: 0; line-height: 1;
}
.zm-hdr-btn svg { width: 17px; height: 17px; stroke: currentColor; flex-shrink: 0; display: block; }
.zm-hdr-btn:hover {
  background: var(--zm-ac-light); border-color: rgba(76, 34, 173, 0.25);
  color: var(--zm-ac); text-decoration: none; transform: translateY(-1px);
}
.zm-hdr-btn:focus-visible { outline: 3px solid var(--zm-ac); outline-offset: 2px; }

/* A- / A+ group */
.zm-font-ctrl { display: flex; align-items: center; gap: 2px; }
.zm-font-ctrl .zm-hdr-btn { font-family: var(--zm-font-m); font-size: 10px; padding: 0 8px; min-width: 40px; }
.zm-hdr-btn-label { font-family: var(--zm-font-b); font-size: 13px; font-weight: 700; color: currentColor; }

/* CTA */
.zm-hdr-cta {
  display: none; align-items: center;
  padding: 0 16px; height: 38px; border-radius: 999px;
  background: var(--zm-ac-grad); color: #fff !important;
  font-family: var(--zm-font-b); font-size: 13px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 3px 12px rgba(76, 34, 173, 0.28);
  transition: opacity .14s, transform .14s, box-shadow .14s; flex-shrink: 0;
}
.zm-hdr-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(76, 34, 173, 0.38); text-decoration: none; }
@media (min-width: 640px) { .zm-hdr-cta { display: flex; } }
.zm-hdr-cta:focus-visible { outline: 3px solid var(--zm-ac); outline-offset: 2px; }

/* Hamburger */
.zm-hdr-burger { display: flex; }
@media (min-width: 900px) { .zm-hdr-burger { display: none; } }

.zm-hdr-logo:focus-visible, .zm-hdr-nav a:focus-visible {
  outline: 3px solid var(--zm-ac); outline-offset: 2px;
}

/* ══ MOBILE MENU ════════════════════════════════════ */
.zm-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(0, 0, 0, 0.45); backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.zm-mobile-overlay.zm-open { display: block; }

.zm-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 700;
  width: min(300px, 85vw); background: var(--zm-bg2);
  border-left: 1px solid var(--zm-bd);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.14);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .26s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}
.zm-mobile-menu.zm-open { transform: translateX(0); }

.zm-mobile-menu-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--zm-bd);
}
.zm-mobile-menu-title { font-family: var(--zm-font-b); font-size: 15px; font-weight: 700; color: var(--zm-t1); }

.zm-mobile-menu a {
  display: flex; align-items: center; padding: 14px 20px;
  font-family: var(--zm-font-b); font-size: 15px; font-weight: 600; color: var(--zm-t1);
  text-decoration: none; border-bottom: 1px solid var(--zm-bd);
  transition: background .13s, color .13s; min-height: 52px;
}
.zm-mobile-menu a:hover { background: var(--zm-ac-light); color: var(--zm-ac); text-decoration: none; }
.zm-mobile-cta {
  margin: 20px; background: var(--zm-ac-grad) !important; color: #fff !important;
  border-radius: 999px !important; border: none !important;
  justify-content: center !important; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(76, 34, 173, 0.3);
}

/* ══ BREADCRUMB ════════════════════════════════════ */
.zm-breadcrumb { background: var(--zm-bg); border-bottom: 1px solid var(--zm-bd); padding: 10px 0; }
.zm-breadcrumb-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 12px; color: var(--zm-t3);
}
.zm-breadcrumb a { color: var(--zm-t3); text-decoration: none; }
.zm-breadcrumb a:hover { color: var(--zm-ac); }
.zm-breadcrumb-sep { opacity: .4; }
.zm-breadcrumb-cur { color: var(--zm-t2); font-weight: 600; }

/* ══ FOOTER ════════════════════════════════════════ */
.zm-footer { background: var(--zm-bg2); border-top: 1px solid var(--zm-bd); margin-top: 72px; }
.zm-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 20px 48px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 580px) { .zm-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (min-width: 960px) { .zm-footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.zm-footer-logo { display: block; height: 34px; width: auto; margin-bottom: 14px; }
.zm-footer-desc { font-size: 13px; color: var(--zm-t3); line-height: 1.75; margin-bottom: 20px; text-wrap: pretty; }

.zm-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.zm-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--zm-bd); background: var(--zm-bg3); color: var(--zm-t2);
  text-decoration: none; transition: all .15s;
}
.zm-social-link:hover { background: var(--zm-ac-light); border-color: rgba(76, 34, 173, .25); color: var(--zm-ac); text-decoration: none; transform: translateY(-2px); }
.zm-social-link svg { width: 17px; height: 17px; }

.zm-footer-col-title { font-family: var(--zm-font-b); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--zm-t4); margin-bottom: 14px; }
.zm-footer-col nav { display: flex; flex-direction: column; gap: 0; }
.zm-footer-col a {
  display: flex; align-items: center; font-size: 13px; color: var(--zm-t2);
  text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--zm-bd);
  transition: color .13s; min-height: 44px;
}
.zm-footer-col a:last-child { border-bottom: none; }
.zm-footer-col a:hover { color: var(--zm-ac); text-decoration: none; }

.zm-footer-bottom { border-top: 1px solid var(--zm-bd); background: var(--zm-bg3); }
.zm-footer-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 5px; align-items: center; text-align: center;
}
@media (min-width: 640px) { .zm-footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.zm-footer-copy { font-size: 12px; color: var(--zm-t3); margin: 0; }
.zm-footer-disclaimer { font-size: 11px; color: var(--zm-t4); margin: 0; max-width: 480px; text-wrap: pretty; }

/* ══ BUTOANE ══════════════════════════════════════ */
.zm-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 999px;
  font-family: var(--zm-font-b); font-size: 13px; font-weight: 700;
  cursor: pointer; border: 1.5px solid transparent;
  text-decoration: none; transition: all .16s; white-space: nowrap; min-height: 44px;
}
.zm-btn-primary { background: var(--zm-ac-grad); color: #fff; box-shadow: 0 4px 14px rgba(76, 34, 173, 0.25); }
.zm-btn-primary:hover { transform: translateY(-2px); color: #fff; text-decoration: none; box-shadow: 0 8px 24px rgba(76, 34, 173, 0.35); }
.zm-btn-secondary { background: transparent; color: var(--zm-t1); border-color: var(--zm-bd2); }
.zm-btn-secondary:hover { border-color: var(--zm-ac); color: var(--zm-ac); background: var(--zm-ac-light); text-decoration: none; }

/* ══ TOAST ════════════════════════════════════════ */
.zm-toast {
  position: fixed; bottom: 24px; left: 50%; z-index: 9000;
  transform: translateX(-50%) translateY(80px);
  background: var(--zm-t1); color: var(--zm-bg);
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), opacity .28s;
}
.zm-toast.zm-show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ══ BACK TO TOP ══════════════════════════════════ */
.zm-btt {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--zm-ac); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 16px rgba(76, 34, 173, 0.32);
  opacity: 0; pointer-events: none;
  transition: all .24s cubic-bezier(.34, 1.56, .64, 1);
}
.zm-btt.zm-show { opacity: 1; pointer-events: all; }
.zm-btt:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 24px rgba(76, 34, 173, 0.42); }
.zm-btt svg { stroke: #fff; }
.zm-btt:focus-visible { outline: 3px solid var(--zm-ac); outline-offset: 3px; }

/* ══ NEWSLETTER SECTION ════════════════════════════ */
.zm-newsletter-section { margin-top: 48px; padding: 0 20px 60px; }

.zm-nl-wrap {
  background: var(--zm-t1);
  border-radius: var(--zm-r-2xl);
  padding: 32px 28px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  box-shadow: var(--zm-sh-lg);
}

.zm-nl-wrap::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(76, 34, 173, .35); pointer-events: none;
}

.zm-nl-text {
  display: flex; align-items: flex-start; gap: 16px;
  flex: 1; min-width: 200px; position: relative; z-index: 1;
}

.zm-nl-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(124, 58, 237, .25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9); flex-shrink: 0;
}

.zm-nl-title {
  font-family: var(--zm-font-h);
  font-size: 20px; font-weight: 600; color: #fff; margin: 0 0 5px;
}
.zm-nl-sub { font-size: 13px; color: rgba(255,255,255,.68); margin: 0; line-height: 1.6; text-wrap: pretty; }

.zm-nl-form { flex: 1; min-width: 240px; max-width: 400px; position: relative; z-index: 1; }

.zm-nl-input-wrap {
  display: flex; gap: 0; border-radius: 999px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  transition: border-color .15s;
}
.zm-nl-input-wrap:focus-within { border-color: rgba(255,255,255,.45); }

.zm-nl-input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 11px 18px; color: #fff; font-size: 13px; font-family: var(--zm-font-b);
  min-height: 44px;
}
.zm-nl-input::placeholder { color: rgba(255,255,255,.45); }

.zm-nl-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 0 20px; background: linear-gradient(135deg, var(--zm-orange), var(--zm-orange-d));
  border: none; color: #fff; cursor: pointer;
  font-family: var(--zm-font-b); font-size: 13px; font-weight: 700;
  min-height: 44px; white-space: nowrap; flex-shrink: 0;
  transition: opacity .14s;
}
.zm-nl-btn:hover { opacity: .88; }
.zm-nl-btn:disabled { opacity: .5; cursor: not-allowed; }
.zm-nl-btn:focus-visible { outline: 3px solid rgba(255,255,255,.7); outline-offset: -3px; }

.zm-nl-status {
  margin-top: 8px; font-size: 12px; min-height: 18px;
  padding-left: 4px;
}
.zm-nl-status.zm-nl-ok   { color: #4ade80; }
.zm-nl-status.zm-nl-err  { color: #fca5a5; }

.zm-nl-gdpr {
  display: flex; align-items: center; gap: 5px;
  margin-top: 7px; font-size: 11px; color: rgba(255,255,255,.45);
  padding-left: 4px;
}

/* ══ VIDEO OVERLAY ════════════════════════════════ */
.zm-video-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8, 4, 20, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.zm-video-overlay-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.zm-video-overlay-close:hover { background: rgba(255,255,255,.22); }
.zm-video-overlay-close:focus-visible { outline: 3px solid rgba(255,255,255,.7); outline-offset: 2px; }
.zm-video-overlay-inner { width: 100%; max-width: 900px; }
.zm-video-ratio {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--zm-r-2xl); overflow: hidden; background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.zm-video-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.zm-video-overlay-title {
  margin-top: 14px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.8); text-align: center; text-wrap: balance;
}

/* ══ 404 ══════════════════════════════════════════ */
.zm-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.zm-404-num { font-family: var(--zm-font-h); font-size: clamp(80px, 15vw, 140px); font-weight: 700; background: var(--zm-ac-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.zm-404-title { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.zm-404-sub { font-size: 15px; color: var(--zm-t2); line-height: 1.7; margin-bottom: 32px; }

/* ══ SR-ONLY ══════════════════════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ══ FOCUS & WCAG ══════════════════════════════════ */
.zm-footer-col a:focus-visible, .zm-social-link:focus-visible {
  outline: 3px solid var(--zm-ac); outline-offset: 3px; border-radius: 4px;
}

/* ══ REDUCED MOTION ═══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════
   WEATHER BAND — MOBILE (complet reproiectat < 640px)
   Afișare pe 2 rânduri: date meteo + 1 alertă medicală
   ══════════════════════════════════════════════════════ */

@media (max-width: 639px) {
  .zm-weather-band {
    font-size: 12px;
  }

  .zm-wb-inner {
    height: auto;
    min-height: 44px;
    padding: 8px 14px 8px 14px;
    flex-wrap: wrap;
    gap: 0;
    align-items: flex-start;
  }

  /* Rândul 1: date meteo */
  .zm-wb-left {
    flex: 1 1 calc(100% - 46px);
    flex-wrap: wrap;
    gap: 5px 8px;
    min-width: 0;
    align-items: center;
  }

  .zm-wb-loc strong { font-size: 12px; }

  /* Pe mobile arătăm: locație · temp · presiune · umiditate */
  .zm-wb-wx        { display: none !important; }  /* ascunde descriere vreme (economie spațiu) */
  .zm-wb-item      { display: flex !important; }  /* arată toate item-urile */
  .zm-wb-sep       { display: none !important; }  /* fără separatori verticali */
  .zm-wb-sub       { display: none !important; }  /* fără "percepută X°C" */
  .zm-wb-wind      { display: none !important; }  /* fără vânt pe mobile */

  /* Rândul 2: alertă medicală */
  .zm-wb-right {
    display: flex !important;
    flex: 0 0 100%;
    margin-left: 0 !important;
    margin-top: 4px;
    padding: 5px 0 2px;
    border-top: 1px solid var(--zm-bd);
  }

  .zm-wb-alert {
    font-size: 11px;
    white-space: normal;       /* permite ruperea rândului pe mobile */
    max-width: 100%;
    line-height: 1.4;
  }

  /* Pe mobile arată max 1 alertă */
  .zm-wb-alert + .zm-wb-alert { display: none !important; }

  /* Buton CLOSE — mare și bine vizibil pe mobile */
  .zm-wb-close {
    flex-shrink: 0;
    width: 38px !important;
    height: 38px !important;
    background: rgba(0, 0, 0, 0.08) !important;
    border: 2px solid rgba(0, 0, 0, 0.22) !important;
    border-radius: 9px !important;
    color: var(--zm-t1) !important;
    margin-left: 6px;
    margin-top: -2px;
  }

  .zm-wb-close svg {
    width: 17px !important;
    height: 17px !important;
    stroke: var(--zm-t1) !important;
    stroke-width: 2.5 !important;
  }

  .zm-wb-close:active {
    background: rgba(0,0,0,0.14) !important;
    transform: scale(0.95);
  }
}

/* ══ HEADER MOBILE ══════════════════════════════════ */

@media (max-width: 640px) {
  .zm-hdr { height: 56px; }

  .zm-hdr-inner { padding: 0 14px; }

  .zm-hdr-logo img { height: 30px; }

  .zm-hdr-right { gap: 4px; }

  .zm-hdr-btn { min-width: 40px; height: 40px; border-radius: 10px; }

  .zm-hdr-cta {
    display: flex !important;    /* arată pe mobile dar mai compact */
    padding: 0 12px;
    height: 36px;
    font-size: 12px;
  }
}

/* ══ MOBILE NEWSLETTER ══════════════════════════════ */

@media (max-width: 640px) {
  .zm-nl-wrap {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }

  .zm-nl-text { min-width: unset; }
  .zm-nl-form { min-width: unset; max-width: 100%; width: 100%; }

  .zm-nl-title { font-size: 18px; }
  .zm-nl-sub   { font-size: 12.5px; }
}

/* ══ BUTON CLOSE — forțat vizibil pe orice fundal ════ */
.zm-wb-close {
  /* Forțăm stroke-ul SVG să fie întotdeauna vizibil */
  color: var(--zm-t2);
}
.zm-wb-close svg {
  stroke: currentColor;
  stroke-width: 2;
}

/* ══════════════════════════════════════════════════════
   WCAG 2.1 AA — FONT SIZE OVERRIDES v4.0.2 (main)
   ══════════════════════════════════════════════════════ */

/* ── Header nav links ── */
.zm-hdr-nav a {
  font-size: 14px !important;   /* was 13px */
}
.zm-hdr-btn-label {
  font-size: 14px !important;
}
.zm-hdr-cta {
  font-size: 14px !important;
}

/* ── Mobile menu ── */
.zm-mobile-menu a {
  font-size: 16px !important;   /* was 15px — touch + WCAG */
}

/* ── Breadcrumb ── */
.zm-breadcrumb-inner {
  font-size: 13px !important;   /* was 12px */
}

/* ── Footer ── */
.zm-footer-col a {
  font-size: 14px !important;   /* was 13px */
}
.zm-footer-col-title {
  font-size: 11px !important;   /* uppercase labels OK la 11px */
}
.zm-footer-desc {
  font-size: 14px !important;   /* was 13px */
}
.zm-footer-copy {
  font-size: 13px !important;   /* was 12px */
}
.zm-footer-disclaimer {
  font-size: 12px !important;   /* fine print, acceptable */
}

/* ── Weather band — compact UI, 12.5px OK ── */
.zm-weather-band {
  font-size: 12.5px !important;
}
.zm-wb-loc strong {
  font-size: 13px !important;
}
.zm-wb-item strong {
  font-size: 13px !important;
}
.zm-wb-alert {
  font-size: 12px !important;  /* compact medical alert bar */
}

/* ── Toast / notifications ── */
.zm-toast {
  font-size: 14px !important;  /* was 13px */
}

/* ── Newsletter ── */
.zm-nl-title {
  font-size: 22px !important;
}
.zm-nl-sub {
  font-size: 14px !important;   /* was 13px */
}
.zm-nl-input,
.zm-nl-btn .zm-nl-btn-text {
  font-size: 14px !important;
}
.zm-nl-gdpr {
  font-size: 12px !important;   /* fine print GDPR — OK */
}
.zm-nl-status {
  font-size: 13px !important;
}

