/* ============================================================
   AlerteMeteo.ro — Theme 2026 Premium
   Se încarcă DUPĂ stilurile fiecărei pagini; le rafinează.
   ============================================================ */
:root {
  --radius: 22px;
  --radius-sm: 14px;
  --t26-line: rgba(124,196,240,0.10);
  --t26-line-strong: rgba(124,196,240,0.18);
  --t26-glass: rgba(16,24,40,0.55);
  --t26-glass-2: rgba(24,35,56,0.45);
  --t26-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(233,238,248,0.05);
  --nav-bg: rgba(7,12,23,0.72);
}

/* ---------- Fundal atmosferic + strat meteo ---------- */
html { background: #070C17; }
body {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(88,166,232,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(124,88,232,0.06), transparent 60%),
    radial-gradient(700px 700px at 50% 110%, rgba(70,168,120,0.04), transparent 60%),
    #070C17;
  background-attachment: fixed;
}
/* Variantă LIGHT — când tema efectivă a aplicației e light */
body.thm26-light {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(88,166,232,0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(240,181,66,0.10), transparent 60%),
    #EEF3FA;
  background-attachment: fixed;
  --t26-line: rgba(20,50,95,0.10);
  --t26-line-strong: rgba(20,50,95,0.20);
  --t26-glass: rgba(255,255,255,0.66);
  --t26-glass-2: rgba(255,255,255,0.5);
  --t26-shadow: 0 8px 28px rgba(30,60,110,0.10), inset 0 1px 0 rgba(255,255,255,0.8);
}
body.thm26-light ~ * {}
html:has(body.thm26-light) { background: #EEF3FA; }
#wxLayer {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden; opacity: 0.9;
  transition: opacity 1.2s ease;
}
#wxLayer::before, #wxLayer::after {
  content: ''; position: absolute; inset: -20%;
  transition: opacity 1.5s ease; opacity: 0;
}

/* Soare / senin */
body.wx-clear #wxLayer::before {
  opacity: 1;
  background: radial-gradient(600px 400px at 78% -6%, rgba(240,181,66,0.16), transparent 65%);
  animation: t26-breathe 9s ease-in-out infinite;
}
/* Noapte senină — stele */
body.wx-night #wxLayer::before {
  opacity: 0.8;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(233,238,248,0.8), transparent 100%),
    radial-gradient(1px 1px at 32% 8%, rgba(233,238,248,0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 22%, rgba(233,238,248,0.7), transparent 100%),
    radial-gradient(1px 1px at 72% 12%, rgba(233,238,248,0.5), transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 26%, rgba(233,238,248,0.7), transparent 100%),
    radial-gradient(1px 1px at 44% 32%, rgba(233,238,248,0.4), transparent 100%),
    radial-gradient(1px 1px at 64% 38%, rgba(233,238,248,0.5), transparent 100%);
  animation: t26-twinkle 5s ease-in-out infinite alternate;
}
/* Nori */
body.wx-cloud #wxLayer::before, body.wx-fog #wxLayer::before {
  opacity: 1;
  background:
    radial-gradient(500px 220px at 20% 10%, rgba(124,139,168,0.10), transparent 70%),
    radial-gradient(600px 260px at 75% 20%, rgba(124,139,168,0.08), transparent 70%);
  animation: t26-drift 26s ease-in-out infinite alternate;
}
/* Ploaie */
body.wx-rain #wxLayer::before, body.wx-storm #wxLayer::before {
  opacity: 0.5;
  background: repeating-linear-gradient(
    112deg,
    transparent 0px, transparent 46px,
    rgba(124,196,240,0.10) 46px, rgba(124,196,240,0.10) 47px,
    transparent 47px, transparent 96px
  );
  background-size: 200% 300%;
  animation: t26-rain 0.9s linear infinite;
}
body.thm26-light.wx-rain #wxLayer::before, body.thm26-light.wx-storm #wxLayer::before {
  background: repeating-linear-gradient(112deg, transparent 0px, transparent 46px, rgba(62,118,184,0.14) 46px, rgba(62,118,184,0.14) 47px, transparent 47px, transparent 96px);
  background-size: 200% 300%;
}
body.thm26-light.wx-night #wxLayer::before { opacity: 0; }
body.wx-rain #wxLayer::after {
  opacity: 1;
  background: radial-gradient(800px 400px at 50% -10%, rgba(88,166,232,0.10), transparent 70%);
}
/* Furtună — puls discret */
body.wx-storm #wxLayer::after {
  opacity: 1;
  background: radial-gradient(700px 380px at 60% -10%, rgba(124,139,168,0.14), transparent 70%);
  animation: t26-flash 7s ease-in-out infinite;
}
/* Ninsoare */
body.wx-snow #wxLayer::before {
  opacity: 0.85;
  background-image:
    radial-gradient(2px 2px at 12% 12%, rgba(233,238,248,0.7), transparent 100%),
    radial-gradient(1.5px 1.5px at 34% 28%, rgba(233,238,248,0.5), transparent 100%),
    radial-gradient(2px 2px at 56% 8%, rgba(233,238,248,0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 74% 24%, rgba(233,238,248,0.5), transparent 100%),
    radial-gradient(2px 2px at 90% 14%, rgba(233,238,248,0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 22% 44%, rgba(233,238,248,0.4), transparent 100%),
    radial-gradient(2px 2px at 66% 40%, rgba(233,238,248,0.5), transparent 100%);
  background-size: 100% 100vh;
  animation: t26-snow 14s linear infinite;
}
@keyframes t26-breathe { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.06);opacity:0.85} }
@keyframes t26-twinkle { from{opacity:0.55} to{opacity:0.9} }
@keyframes t26-drift { from{transform:translateX(-2%)} to{transform:translateX(2%)} }
@keyframes t26-rain { from{background-position:0 0} to{background-position:-80px 140px} }
@keyframes t26-snow { from{background-position:0 -100vh} to{background-position:-40px 100vh} }
@keyframes t26-flash { 0%,92%,100%{opacity:0.5} 94%{opacity:1} 96%{opacity:0.6} 98%{opacity:0.9} }

/* ---------- Carduri: sticlă, adâncime ---------- */
.weather-hero, .aqi-card, .daily-card, .sun-card, .health-card, .nowcast-card,
.greeting-card, .community-premium, .support-banner, .push-optin, .install-banner,
#crowdsourceGrid, .hero-metric, .depth-card, .agro-daily, .alert-card, .city-card,
.settings-group, .pc-price, .ad-card, .rain-card, .header-back {
  background: var(--t26-glass);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border: 1px solid var(--t26-line);
  box-shadow: var(--t26-shadow);
}
.weather-hero, .aqi-card, .daily-card, .sun-card, .health-card, .nowcast-card,
.greeting-card, .hero-metric, .depth-card, .agro-daily, .alert-card, .city-card, .settings-group {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, box-shadow 0.25s;
}
@media (hover: hover) {
  .weather-hero:hover, .aqi-card:hover, .sun-card:hover, .health-card:hover,
  .nowcast-card:hover, .greeting-card:hover, .hero-metric:hover, .depth-card:hover,
  .alert-card:hover, .city-card:hover {
    transform: translateY(-2px);
    border-color: var(--t26-line-strong);
    box-shadow: 0 14px 44px rgba(0,0,0,0.45), inset 0 1px 0 rgba(233,238,248,0.07);
  }
}
.hour-card, .planner-card {
  background: var(--t26-glass-2);
  border: 1px solid var(--t26-line);
  transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), border-color 0.2s, background 0.2s;
}
@media (hover: hover) {
  .hour-card:hover, .planner-card:hover { transform: translateY(-3px); border-color: var(--t26-line-strong); background: rgba(24,35,56,0.7); }
}
.hour-card.now {
  background: linear-gradient(160deg, rgba(88,166,232,0.20), rgba(88,166,232,0.08));
  border-color: rgba(88,166,232,0.45);
  box-shadow: 0 0 24px rgba(88,166,232,0.15);
}

/* ---------- Hero meteo ---------- */
.weather-hero { overflow: hidden; }
.weather-hero::before {
  width: 320px; height: 320px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(88,166,232,0.14) 0%, transparent 70%);
}
.hero-temp { font-size: 6.5rem; letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFFFFF 20%, #A9C6E8 110%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
body.thm26-light .hero-temp { background: linear-gradient(180deg, #14233C 20%, #3E76B8 110%); -webkit-background-clip: text; background-clip: text; }
.hero-temp .degree { -webkit-text-fill-color: #58A6E8; }
.hero-condition {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(88,166,232,0.12); border: 1px solid rgba(88,166,232,0.22);
  margin-bottom: 10px;
}
.hero-icon { filter: drop-shadow(0 6px 18px rgba(88,166,232,0.25)); }

/* ---------- Navigație ---------- */
.top-nav-desktop { border-bottom: 1px solid var(--t26-line) !important; }
.top-nav-link { border-radius: 999px !important; }
.top-nav-link.active {
  background: rgba(88,166,232,0.14) !important;
  color: #9CCBF2 !important;
  box-shadow: inset 0 0 0 1px rgba(88,166,232,0.28);
}
.bottom-nav {
  left: 10px !important; right: 10px !important; bottom: 10px !important;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid var(--t26-line) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  padding-bottom: calc(10px + var(--safe-bottom)) !important;
  padding-top: 10px !important;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .bottom-nav { left: 50% !important; right: auto !important; transform: translateX(-50%); border-radius: 26px !important; }
}
.nav-item { transition: color 0.2s, transform 0.2s; }
.nav-item:active { transform: scale(0.92); }
.nav-item.active::before { top: -10px; box-shadow: 0 0 12px rgba(88,166,232,0.8); }

/* ---------- Butoane & micro-interacțiuni ---------- */
.share-btn {
  background: linear-gradient(135deg, #3E8FD8, #6FB4EE);
  box-shadow: 0 8px 28px rgba(88,166,232,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  border-radius: 16px;
  transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s;
}
@media (hover: hover) { .share-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 34px rgba(88,166,232,0.45), inset 0 1px 0 rgba(255,255,255,0.25); } }
.report-fab {
  background: linear-gradient(135deg, #3E8FD8, #6FB4EE);
  box-shadow: 0 8px 28px rgba(88,166,232,0.5);
}
.icon-btn, .top-nav-right button { transition: transform 0.2s, background 0.2s, color 0.2s; }
.icon-btn:active, .top-nav-right button:active { transform: scale(0.9); }
button, .city-option, .daily-row, .report-btn { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid rgba(88,166,232,0.7); outline-offset: 2px; border-radius: 8px; }

/* ---------- Modale ---------- */
.modal-sheet, .report-sheet {
  background: rgba(13,20,35,0.85);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid var(--t26-line-strong);
  box-shadow: 0 -12px 48px rgba(0,0,0,0.5);
}
body.thm26-light .modal-sheet, body.thm26-light .report-sheet {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 -12px 48px rgba(30,60,110,0.18);
}
.modal-overlay, .report-overlay { background: rgba(3,6,12,0.6); }

/* ---------- Diverse rafinamente ---------- */
.section-title { color: #9CCBF2; letter-spacing: 0.1em; }
body.thm26-light .section-title { color: #3E76B8; }
body.thm26-light .top-nav-link.active { background: rgba(88,166,232,0.16) !important; color: #2C68A8 !important; }
body.thm26-light ::-webkit-scrollbar-thumb { border-color: #EEF3FA; background: rgba(60,90,140,0.3); }
.daily-bar { height: 5px; }
.daily-bar-fill { background: linear-gradient(90deg, #58A6E8, #F0B542); box-shadow: 0 0 8px rgba(88,166,232,0.4); }
.aqi-bar-track { height: 7px; border-radius: 4px; }
.aqi-bar-dot { box-shadow: 0 0 10px rgba(255,255,255,0.35); }
.loader-bar::after { background: linear-gradient(90deg, #58A6E8, #7CC4F0); }
.seo-footer { border-top: 1px solid var(--t26-line); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(124,139,168,0.25); border-radius: 5px; border: 2px solid #070C17; }
::-webkit-scrollbar-track { background: transparent; }
::selection { background: rgba(88,166,232,0.35); }

/* Pagini legale */
.legal-body h1, .legal h1 { font-family: 'Instrument Serif', Georgia, serif; }

/* ---------- Interactivitate: intrare în cascadă + apăsare ---------- */
.t26-anim { opacity: 0; transform: translateY(16px) scale(0.99); }
.t26-in { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.t26-press { transition: transform 0.15s cubic-bezier(0.22,1,0.36,1); }
.t26-press:active { transform: scale(0.98) !important; }

/* ---------- Nowcast viu ---------- */
.nowcast-timeline .nowcast-bar { transform-origin: bottom; animation: t26-bar-in 0.7s cubic-bezier(0.22,1,0.36,1) backwards; }
@keyframes t26-bar-in { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.nowcast-bar:first-child { animation: t26-bar-in 0.7s cubic-bezier(0.22,1,0.36,1) backwards, t26-now-pulse 2.4s ease-in-out 1s infinite; }
@keyframes t26-now-pulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.7); } }

/* ---------- Icoane meteo animate ---------- */
.hero-icon { display: inline-block; }
body.wx-clear .hero-icon, body.wx-night .hero-icon { animation: t26-sun-float 5s ease-in-out infinite; }
body.wx-cloud .hero-icon, body.wx-fog .hero-icon { animation: t26-cloud-drift 7s ease-in-out infinite; }
body.wx-rain .hero-icon, body.wx-snow .hero-icon { animation: t26-rain-bob 3.2s ease-in-out infinite; }
body.wx-storm .hero-icon { animation: t26-storm-shake 6s ease-in-out infinite; }
@keyframes t26-sun-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(6deg); } }
@keyframes t26-cloud-drift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
@keyframes t26-rain-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes t26-storm-shake { 0%,88%,100% { transform: translate(0,0); } 90% { transform: translate(-2px,1px); } 92% { transform: translate(2px,-1px); } 94% { transform: translate(-1px,0); } }

/* ---------- Tilt 3D pe hero ---------- */
.weather-hero { transform-style: preserve-3d; will-change: transform; }

/* ---------- Parallax ---------- */
#wxLayer { will-change: transform; }

/* ---------- Pull-to-refresh ---------- */
#t26Ptr {
  position: fixed; top: calc(8px + var(--safe-top, 0px)); left: 50%; z-index: 300;
  width: 44px; height: 44px; margin-left: -22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--t26-glass); border: 1px solid var(--t26-line-strong);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-70px); opacity: 0; pointer-events: none;
  transition: transform 0.2s, opacity 0.2s;
}
#t26Ptr.pull { transition: none; }
#t26Ptr.spin { animation: t26-ptr-spin 0.9s linear infinite; }
@keyframes t26-ptr-spin { to { transform: translateY(12px) rotate(360deg); } }

/* ---------- Tranziții între pagini ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: t26-vt-out 0.22s ease both; }
::view-transition-new(root) { animation: t26-vt-in 0.3s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes t26-vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes t26-vt-in { from { opacity: 0; transform: translateY(10px); } }

/* ---------- UX: scroll orizontal cu snap + fade la margini ---------- */
.hourly-scroll, .planner-scroll, [class*="-scroll"] { scroll-snap-type: x proximity; scrollbar-width: none; }
.hourly-scroll::-webkit-scrollbar, .planner-scroll::-webkit-scrollbar { display: none; }
.hour-card, .planner-card { scroll-snap-align: start; }

/* ---------- UX: buton înapoi sus ---------- */
#t26Top {
  position: fixed; right: 14px; bottom: calc(96px + var(--safe-bottom, 0px)); z-index: 250;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--t26-line-strong);
  background: var(--t26-glass); color: inherit; font-size: 18px; cursor: pointer;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
#t26Top.show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- UX: toast online/offline ---------- */
#t26Toast {
  position: fixed; left: 50%; bottom: calc(104px + var(--safe-bottom, 0px)); z-index: 400;
  transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
  padding: 10px 18px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: var(--t26-glass); border: 1px solid var(--t26-line-strong); color: inherit;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}
#t26Toast.show { opacity: 1; transform: translate(-50%, 0); }
#t26Toast.off { border-color: rgba(224,90,68,0.5); }
#t26Toast.on { border-color: rgba(70,168,120,0.5); }

/* ---------- UX: shimmer pe date neîncărcate ---------- */
.t26-skel { position: relative; overflow: hidden; border-radius: 8px; color: transparent !important; background: var(--t26-glass-2) !important; }
.t26-skel::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(160,190,230,0.14), transparent);
  animation: t26-skel 1.3s ease infinite; }
@keyframes t26-skel { to { transform: translateX(100%); } }

/* ---------- UX 2026: sheet-uri, scrub, comparare, personalizare ---------- */
#t26Custom, #t26Cmp { position: fixed; inset: 0; z-index: 500; pointer-events: none; }
#t26Custom .t26c-overlay, #t26Cmp .t26c-overlay { position: absolute; inset: 0; background: rgba(3,6,12,0.6); opacity: 0; transition: opacity 0.3s; }
#t26Custom .t26c-sheet, #t26Cmp .t26c-sheet {
  position: absolute; left: 0; right: 0; bottom: 0; max-width: 560px; margin: 0 auto;
  border-radius: 24px 24px 0 0; padding: 14px 20px calc(24px + var(--safe-bottom, 0px));
  background: rgba(13,20,35,0.92); backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid var(--t26-line-strong); border-bottom: none;
  transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  max-height: 80vh; overflow-y: auto;
}
body.thm26-light #t26Custom .t26c-sheet, body.thm26-light #t26Cmp .t26c-sheet { background: rgba(255,255,255,0.94); }
#t26Custom.open, #t26Cmp.open { pointer-events: auto; }
#t26Custom.open .t26c-overlay, #t26Cmp.open .t26c-overlay { opacity: 1; }
#t26Custom.open .t26c-sheet, #t26Cmp.open .t26c-sheet { transform: none; }
.t26c-handle { width: 40px; height: 4px; border-radius: 2px; background: rgba(126,139,168,0.4); margin: 0 auto 14px; }
.t26c-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.t26c-sub { font-size: 0.8rem; opacity: 0.65; margin-bottom: 14px; }
.t26c-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 2px; border-bottom: 1px solid var(--t26-line); font-size: 0.9rem; }
.t26c-row:last-child { border-bottom: none; }
.t26c-tgl { width: 46px; height: 27px; border-radius: 999px; border: none; cursor: pointer; position: relative; background: rgba(126,139,168,0.35); transition: background 0.25s; flex: 0 0 auto; }
.t26c-tgl::after { content: ''; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; transition: transform 0.25s cubic-bezier(0.22,1,0.36,1); box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.t26c-tgl.on { background: #58A6E8; }
.t26c-tgl.on::after { transform: translateX(19px); }
#t26CustomBtn {
  display: block; margin: 8px auto 20px; padding: 11px 22px; border-radius: 999px;
  background: var(--t26-glass); border: 1px solid var(--t26-line-strong); color: inherit;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
#t26Tip {
  position: fixed; z-index: 350; padding: 8px 14px; border-radius: 12px; font-size: 0.85rem;
  background: rgba(13,20,35,0.92); border: 1px solid var(--t26-line-strong); color: #E9EEF8;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); pointer-events: none;
  opacity: 0; transform: translateY(4px); transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
#t26Tip.show { opacity: 1; transform: none; }
.hour-card.t26-focus { transform: translateY(-4px) scale(1.06); border-color: rgba(88,166,232,0.5) !important; z-index: 2; }
#t26CmpBtn {
  display: block; width: 100%; margin-top: 12px; padding: 13px; border-radius: 14px;
  background: rgba(88,166,232,0.12); border: 1px solid rgba(88,166,232,0.3); color: inherit;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
}
.t26cmp-inputs { display: flex; gap: 10px; margin-bottom: 10px; }
.t26cmp-in {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: 12px; font-size: 0.9rem;
  background: var(--t26-glass-2); border: 1px solid var(--t26-line-strong); color: inherit; outline: none;
}
.t26cmp-in:focus { border-color: #58A6E8; }
#t26CmpGo {
  width: 100%; padding: 13px; border-radius: 14px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #3E8FD8, #6FB4EE); color: #fff; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(88,166,232,0.3);
}
#t26CmpOut { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.t26cmp-card {
  flex: 1 1 40%; min-width: 150px; padding: 14px; border-radius: 16px; text-align: center;
  background: var(--t26-glass-2); border: 1px solid var(--t26-line);
}
.t26cmp-city { font-size: 0.78rem; opacity: 0.7; margin-bottom: 6px; }
.t26cmp-main { font-size: 1.6rem; }
.t26cmp-det { font-size: 0.72rem; opacity: 0.75; margin-top: 6px; line-height: 1.4; }
.t26cmp-diff { flex: 1 1 100%; text-align: center; font-size: 0.85rem; opacity: 0.85; padding-top: 4px; }
.t26cmp-err, .t26cmp-load { flex: 1 1 100%; text-align: center; font-size: 0.85rem; opacity: 0.75; padding: 8px 0; }
#t26Cloth {
  display: inline-block; margin-top: 8px; padding: 6px 14px; border-radius: 999px; font-size: 0.8rem;
  background: rgba(240,181,66,0.12); border: 1px solid rgba(240,181,66,0.28);
}
#t26Summary { margin-top: 6px; font-size: 0.8rem; opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  #wxLayer::before, #wxLayer::after { animation: none !important; }
  .t26-anim { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* fix: butonul de închidere nu mai suprapune titlul */
.support-banner .sb-content { padding-right: 34px; }
.support-banner .sb-title, .support-banner .sb-text { padding-right: 0; }
