@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Georgian', 'Inter', sans-serif;
  background: linear-gradient(155deg, #0a3d5c 0%, #0369a1 45%, #0284c7 75%, #0c4a6e 100%);
  min-height: 100vh;
  color: #fff;
}

/* ANIMATIONS */
@keyframes floatAnim  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes fadeUp     { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes cloudDrift {
  0%   { transform:translateX(-200px); opacity:0; }
  8%   { opacity:1; }
  92%  { opacity:1; }
  100% { transform:translateX(calc(100vw + 200px)); opacity:0; }
}
@keyframes dotPulse   { 0%,100%{opacity:.35;transform:scale(.7)} 50%{opacity:1;transform:scale(1)} }

.float-anim { animation: floatAnim 4s ease-in-out infinite; }
.page-enter { animation: fadeUp .45s ease forwards; }

/* CLOUD LAYER */
.cloud-layer { position:fixed; inset:0; pointer-events:none; overflow:hidden; z-index:0; }
.cloud {
  position:absolute; background:rgba(255,255,255,.055); border-radius:60px;
  animation: cloudDrift linear infinite;
}

/* LAYOUT */
#app { position:relative; z-index:1; min-height:100vh; display:flex; flex-direction:column; }
.container { max-width:1100px; margin:0 auto; padding:0 18px; width:100%; }
main { max-width:1100px; margin:0 auto; padding:0 18px; flex:1; width:100%; }

/* GLASS */
.glass {
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.26); border-radius:20px;
}
.glass-sm {
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.20); border-radius:14px;
}

/* HEADER */
#site-header {
  position:sticky; top:0; z-index:100;
  background:rgba(5,36,58,.85);
  backdrop-filter:blur(26px); -webkit-backdrop-filter:blur(26px);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.header-inner {
  max-width:1100px; margin:0 auto; padding:0 18px;
  display:flex; align-items:center; justify-content:space-between; height:60px;
}
.logo-btn {
  background:none; border:none; cursor:pointer;
  display:flex; align-items:center; gap:10px; text-decoration:none;
}
.logo-text { color:#fff; font-size:16px; font-weight:900; font-family:'Inter',sans-serif; letter-spacing:-.3px; }
.logo-text span { color:#7DD3FC; }

.desktop-nav { display:flex; align-items:center; gap:4px; }
.desktop-nav nav { display:flex; gap:2px; }
.nav-divider { width:1px; height:22px; background:rgba(255,255,255,.18); margin:0 8px; }
.lang-group { display:flex; gap:3px; }

.nav-btn {
  padding:8px 17px; border-radius:50px;
  color:rgba(255,255,255,.85); font-weight:600; font-size:14px;
  cursor:pointer; border:none; background:transparent;
  font-family:'Noto Sans Georgian','Inter',sans-serif;
  transition:all .22s; letter-spacing:.2px; text-decoration:none; display:inline-block;
}
.nav-btn:hover  { background:rgba(255,255,255,.16); color:#fff; }
.nav-btn.active { background:rgba(255,255,255,.22); color:#fff; }

.lang-btn {
  padding:5px 9px; border-radius:7px; font-size:11px; font-weight:800;
  border:1.5px solid rgba(255,255,255,.28); background:transparent;
  color:rgba(255,255,255,.7); cursor:pointer; transition:all .2s;
  font-family:'Inter',sans-serif; letter-spacing:.5px; text-decoration:none;
}
.lang-btn:hover  { background:rgba(255,255,255,.14); color:#fff; }
.lang-btn.active { background:rgba(255,255,255,.24); color:#fff; border-color:rgba(255,255,255,.55); }

/* MOBILE */
.mobile-toggle { display:none; align-items:center; gap:6px; }
.mobile-menu-btn { background:none; border:none; color:#fff; font-size:24px; cursor:pointer; line-height:1; padding:4px 6px; }
#mobile-nav { display:none; background:rgba(5,36,58,.97); border-top:1px solid rgba(255,255,255,.09); padding:12px 18px 16px; }
#mobile-nav.open { display:block; }
#mobile-nav a {
  display:block; width:100%; text-align:left;
  background:none; border:none; color:#fff; padding:11px 15px; border-radius:10px;
  font-family:'Noto Sans Georgian','Inter',sans-serif; font-size:14px; font-weight:600;
  cursor:pointer; margin-bottom:3px; text-decoration:none; transition:background .2s;
}
#mobile-nav a:hover  { background:rgba(255,255,255,.1); }
#mobile-nav a.active { background:rgba(255,255,255,.13); }

/* PAGE HEADER */
.page-header { text-align:center; padding:32px 0 24px; color:#fff; }
.page-header h1 { font-size:clamp(24px,5vw,50px); font-weight:900; margin-bottom:8px; text-shadow:0 2px 22px rgba(0,0,0,.38); line-height:1.15; }
.page-header p  { font-size:16px; opacity:.78; }

/* CHIPS */
.chip {
  padding:8px 16px; border-radius:50px;
  border:1.5px solid rgba(255,255,255,.28); background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.9); font-family:'Noto Sans Georgian','Inter',sans-serif;
  font-size:13px; font-weight:500; cursor:pointer; transition:all .22s;
}
.chip:hover  { background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.5); transform:translateY(-2px); }
.chip.active { background:#fff; color:#0369a1; border-color:#fff; font-weight:700; }

/* SEARCH */
.search-wrap { position:relative; max-width:560px; margin:0 auto 22px; }
.search-icon { position:absolute; left:17px; top:50%; transform:translateY(-50%); opacity:.55; pointer-events:none; }
.search-input {
  width:100%; padding:14px 20px 14px 48px;
  background:rgba(255,255,255,.14); border:1.5px solid rgba(255,255,255,.32);
  border-radius:50px; color:#fff; font-family:'Noto Sans Georgian','Inter',sans-serif;
  font-size:15px; outline:none; transition:all .3s;
}
.search-input::placeholder { color:rgba(255,255,255,.52); }
.search-input:focus { border-color:rgba(255,255,255,.68); background:rgba(255,255,255,.2); }
.search-drop {
  position:absolute; top:calc(100% + 8px); left:0; right:0;
  background:rgba(5,38,62,.97); backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.18); border-radius:16px;
  max-height:260px; overflow-y:auto; z-index:300;
  box-shadow:0 20px 60px rgba(0,0,0,.45); display:none;
}
.search-drop.open { display:block; }
.search-drop-item {
  padding:12px 20px; cursor:pointer; color:#fff;
  font-family:'Noto Sans Georgian','Inter',sans-serif; font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.07); transition:background .15s;
}
.search-drop-item:hover { background:rgba(255,255,255,.13); }
.search-drop-item:last-child { border-bottom:none; }

/* WEATHER HERO */
.weather-hero { max-width:600px; margin:0 auto 26px; padding:32px 24px; text-align:center; }
.city-label { font-size:11px; font-weight:700; letter-spacing:2.5px; opacity:.6; text-transform:uppercase; margin-bottom:6px; }
.weather-icon-wrap { display:flex; justify-content:center; margin:16px 0 10px; }
.weather-temp { font-size:clamp(58px,13vw,84px); font-weight:900; line-height:1; text-shadow:0 4px 30px rgba(0,0,0,.32); }
.weather-temp sup { font-size:.42em; font-weight:400; opacity:.75; vertical-align:super; }
.weather-cond { font-size:19px; margin-top:8px; opacity:.9; font-weight:500; }
.weather-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:22px; }
.stat-box { background:rgba(255,255,255,.11); border-radius:12px; padding:12px 6px; text-align:center; }
.stat-ico { font-size:22px; margin-bottom:4px; }
.stat-lbl { font-size:10px; opacity:.6; margin-bottom:3px; }
.stat-val { font-size:16px; font-weight:700; }

/* FORECAST */
.forecast-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(105px,1fr)); gap:8px; }
.forecast-title { color:#fff; font-size:18px; font-weight:700; text-align:center; margin-bottom:14px; opacity:.9; }
.fday {
  background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.18);
  border-radius:15px; padding:14px 8px; text-align:center; color:#fff; transition:all .28s;
}
.fday:hover { background:rgba(255,255,255,.19); transform:translateY(-4px); box-shadow:0 10px 28px rgba(0,0,0,.22); }
.fday.today { background:rgba(255,255,255,.21); border-color:rgba(255,255,255,.46); }
.day-label { font-size:11px; font-weight:700; opacity:.68; margin-bottom:5px; letter-spacing:.4px; }
.day-icon  { display:flex; justify-content:center; margin:4px 0; }
.day-cond  { font-size:10px; opacity:.62; margin:6px 0; min-height:26px; line-height:1.3; }
.day-max   { font-weight:800; font-size:17px; }
.day-min   { font-size:13px; opacity:.55; }
.day-precip{ font-size:10px; opacity:.48; margin-top:4px; }

/* LOADING DOTS */
.dot { display:inline-block; width:8px; height:8px; border-radius:50%; background:#fff; animation:dotPulse 1.2s ease-in-out infinite; margin:0 3px; }
.dot:nth-child(2){animation-delay:.2s}
.dot:nth-child(3){animation-delay:.4s}

/* SEO BLOCK */
.seo-block {
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.13);
  border-radius:18px; padding:26px 28px; color:rgba(255,255,255,.78); margin-top:36px;
}
.seo-block b { color:#fff; font-weight:700; }
.seo-block h2 { color:#fff; font-size:20px; font-weight:800; margin-bottom:14px; }

/* CURRENCY */
.rate-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:15px 20px; border-radius:13px; margin-bottom:9px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); transition:all .22s;
}
.rate-row:hover { background:rgba(255,255,255,.15); transform:translateX(4px); }
.rate-flag { font-size:28px; }
.rate-code { color:#fff; font-weight:700; font-size:16px; }
.rate-name { color:rgba(255,255,255,.55); font-size:12px; }
.rate-value{ color:#fff; font-weight:900; font-size:26px; text-align:right; }
.rate-sub  { color:rgba(255,255,255,.55); font-size:12px; }
.nbg-note  { color:rgba(255,255,255,.35); font-size:11px; text-align:right; margin-top:6px; }

/* FORMS */
.form-in {
  width:100%; padding:13px 17px;
  background:rgba(255,255,255,.11); border:1.5px solid rgba(255,255,255,.26);
  border-radius:12px; color:#fff; font-family:'Noto Sans Georgian','Inter',sans-serif;
  font-size:14px; outline:none; transition:all .28s;
}
.form-in::placeholder { color:rgba(255,255,255,.48); }
.form-in:focus { border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.17); }
.form-sel {
  width:100%; padding:13px 15px;
  background:rgba(255,255,255,.11); border:1.5px solid rgba(255,255,255,.26);
  border-radius:12px; color:#fff; font-family:'Noto Sans Georgian','Inter',sans-serif;
  font-size:14px; font-weight:600; outline:none; cursor:pointer;
}
.form-sel option { background:#054060; color:#fff; }
.form-num {
  width:100%; padding:13px 15px;
  background:rgba(255,255,255,.11); border:1.5px solid rgba(255,255,255,.26);
  border-radius:12px; color:#fff; font-family:'Inter',sans-serif;
  font-size:20px; font-weight:700; outline:none;
}
.form-label { color:rgba(255,255,255,.7); font-size:13px; font-weight:600; display:block; margin-bottom:6px; }
.conv-grid  { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:14px; }
.conv-result {
  margin-top:18px; padding:16px; background:rgba(255,255,255,.12);
  border-radius:13px; text-align:center; border:1px solid rgba(255,255,255,.22); display:none;
}
.conv-result .res-label { color:rgba(255,255,255,.6); font-size:12px; margin-bottom:5px; }
.conv-result .res-val   { color:#fff; font-size:26px; font-weight:800; }

/* BUTTONS */
.btn-white {
  background:#fff; color:#0369a1; border:none;
  padding:13px 28px; border-radius:50px;
  font-family:'Noto Sans Georgian','Inter',sans-serif;
  font-size:15px; font-weight:700; cursor:pointer; transition:all .28s; width:100%;
}
.btn-white:hover    { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.28); }
.btn-white:disabled { opacity:.72; cursor:not-allowed; }
.btn-ghost {
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.26);
  color:#fff; padding:9px 20px; border-radius:50px; cursor:pointer; font-size:13px;
  font-family:'Noto Sans Georgian','Inter',sans-serif; transition:all .2s; display:inline-block;
}
.btn-ghost:hover { background:rgba(255,255,255,.2); }

/* HOROSCOPE */
.zodiac-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(185px,1fr)); gap:12px; }
.zcard {
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.17);
  border-radius:17px; padding:19px; color:#fff; transition:all .28s; cursor:pointer;
}
.zcard:hover  { background:rgba(255,255,255,.17); transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.22); }
.zcard.active { border-color:rgba(255,255,255,.46); background:rgba(255,255,255,.19); }
.zcard-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:8px; }
.zcard-emoji  { font-size:30px; }
.zcard-dot    { width:7px; height:7px; border-radius:50%; margin-top:5px; }
.zcard h3     { font-size:16px; font-weight:700; margin-bottom:3px; }
.zcard-dates  { font-size:11px; opacity:.5; margin-bottom:9px; }
.zcard-preview{
  font-size:12px; opacity:.7; line-height:1.7;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.zcard-more   { margin-top:9px; font-size:12px; font-weight:600; }
.horo-detail  { padding:26px; margin-bottom:24px; color:#fff; }
.horo-detail-header { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.horo-emoji   { font-size:44px; }
.horo-bar     { width:32px; height:3px; border-radius:2px; margin-bottom:16px; }
.horo-detail p{ line-height:1.9; font-size:15px; opacity:.9; }

/* CONTACT */
.contact-info-item { display:flex; gap:11px; align-items:center; opacity:.8; font-size:14px; margin-bottom:8px; }
.form-email-hint { color:rgba(255,255,255,.38); font-size:11px; text-align:center; margin-top:12px; }

/* FOOTER */
footer {
  background:rgba(3,26,44,.88); backdrop-filter:blur(20px);
  border-top:1px solid rgba(255,255,255,.09); padding:36px 18px 24px; margin-top:auto;
}
.footer-inner { max-width:1100px; margin:0 auto; }
.footer-grid  { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:28px; margin-bottom:28px; }
.footer-nav   { display:flex; flex-direction:column; gap:7px; }
footer a { color:rgba(255,255,255,.6); text-decoration:none; transition:color .2s; font-size:13px; }
footer a:hover { color:#fff; }
.footer-brand      { display:flex; align-items:center; gap:9px; margin-bottom:11px; }
.footer-brand-name { color:#fff; font-weight:900; font-size:15px; font-family:'Inter',sans-serif; }
.footer-brand-name span { color:#7DD3FC; }
.footer-desc    { font-size:13px; line-height:1.8; color:rgba(255,255,255,.52); }
.footer-heading { color:#fff; font-weight:700; font-size:13px; margin-bottom:12px; font-family:'Noto Sans Georgian','Inter',sans-serif; }
.footer-info    { font-size:13px; line-height:2.1; color:rgba(255,255,255,.52); }
.footer-copy    { border-top:1px solid rgba(255,255,255,.08); padding-top:18px; text-align:center; font-size:13px; color:rgba(255,255,255,.38); }

/* SECTION TITLES */
.section-title { color:#fff; font-size:17px; font-weight:700; margin-bottom:16px; }

/* SCROLLBAR */
::-webkit-scrollbar       { width:5px; }
::-webkit-scrollbar-track { background:rgba(255,255,255,.04); }
::-webkit-scrollbar-thumb { background:rgba(255,255,255,.22); border-radius:3px; }

/* RESPONSIVE */
@media(max-width:640px){
  .desktop-nav  { display:none !important; }
  .mobile-toggle{ display:flex !important; }
}
@media(min-width:641px){
  .mobile-toggle{ display:none !important; }
  #mobile-nav   { display:none !important; }
}
@media(max-width:500px){
  .conv-grid { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════
   PUSH NOTIFICATION SYSTEM
═══════════════════════════════════════ */
/* Bell button */
.notif-bell-wrap { display:flex; align-items:center; }
.notif-bell {
  position:relative; width:38px; height:38px; border-radius:50%;
  background:rgba(252,211,77,.13); border:1.5px solid rgba(252,211,77,.45);
  color:#FCD34D; font-size:17px; cursor:pointer; display:flex;
  align-items:center; justify-content:center; transition:all .22s;
  flex-shrink:0; text-decoration:none;
}
.notif-bell:hover { background:rgba(252,211,77,.28); transform:scale(1.08); box-shadow:0 0 16px rgba(252,211,77,.3); }
.notif-bell.has-sub { background:rgba(252,211,77,.2); border-color:#FCD34D; animation:bellPulse 2.4s ease-in-out infinite; }
.notif-badge {
  position:absolute; top:-4px; right:-4px;
  background:#ef4444; color:#fff; font-size:9px; font-weight:800;
  min-width:16px; height:16px; border-radius:8px; padding:0 3px;
  display:flex; align-items:center; justify-content:center;
  border:2px solid rgba(5,36,58,.95); line-height:1;
}
@keyframes bellPulse {
  0%,100% { box-shadow:0 0 0 3px rgba(252,211,77,.12); }
  50%      { box-shadow:0 0 0 7px rgba(252,211,77,.28), 0 0 22px rgba(252,211,77,.18); }
}

/* Modal overlay */
.nm-overlay {
  position:fixed; inset:0; z-index:9999;
  background:rgba(3,20,38,.78); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  display:flex; align-items:center; justify-content:center; padding:16px;
  animation:nmFadeIn .2s ease;
}
@keyframes nmFadeIn { from{opacity:0} to{opacity:1} }

/* Modal card */
.nm-card {
  width:100%; max-width:460px;
  background:linear-gradient(145deg,rgba(5,50,82,.98),rgba(3,26,44,.99));
  border:1.5px solid rgba(255,255,255,.18); border-radius:24px;
  box-shadow:0 36px 90px rgba(0,0,0,.55);
  max-height:88vh; overflow-y:auto;
  animation:nmSlideUp .28s cubic-bezier(.34,1.48,.64,1);
}
.nm-card::-webkit-scrollbar { width:4px; }
.nm-card::-webkit-scrollbar-thumb { background:rgba(255,255,255,.18); border-radius:2px; }
@keyframes nmSlideUp { from{opacity:0;transform:translateY(28px) scale(.97)} to{opacity:1;transform:none} }

/* Modal header */
.nm-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 22px 16px;
  border-bottom:1px solid rgba(255,255,255,.09);
  background:linear-gradient(90deg,rgba(252,211,77,.09),transparent);
  position:sticky; top:0; z-index:2;
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
}
.nm-head-l { display:flex; align-items:center; gap:10px; }
.nm-head-icon { font-size:24px; }
.nm-head-title { font-size:17px; font-weight:800; color:#fff; }
.nm-head-sub { font-size:11px; color:rgba(255,255,255,.45); margin-top:1px; }
.nm-close-btn {
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,.1); border:none; color:#fff;
  font-size:17px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s;
}
.nm-close-btn:hover { background:rgba(255,255,255,.22); }

/* Permission banner */
.nm-body { padding:18px 22px 22px; }
.nm-perm {
  display:flex; align-items:center; gap:12px;
  padding:12px 16px; border-radius:14px; margin-bottom:20px; border:1.5px solid;
}
.nm-perm.granted { background:rgba(34,197,94,.1); border-color:rgba(34,197,94,.3); }
.nm-perm.pending { background:rgba(252,211,77,.1); border-color:rgba(252,211,77,.3); }
.nm-perm.blocked { background:rgba(239,68,68,.1); border-color:rgba(239,68,68,.3); }
.nm-perm-ico { font-size:20px; flex-shrink:0; }
.nm-perm-txt { flex:1; font-size:12px; color:rgba(255,255,255,.82); line-height:1.5; }
.nm-perm-btn {
  padding:7px 14px; border-radius:50px; font-size:12px; font-weight:700;
  background:#FCD34D; color:#0c4a6e; border:none; cursor:pointer;
  white-space:nowrap; transition:all .2s; font-family:inherit;
}
.nm-perm-btn:hover { transform:scale(1.05); box-shadow:0 4px 14px rgba(252,211,77,.35); }

/* Notif rows */
.nm-row {
  display:flex; align-items:flex-start; gap:14px;
  padding:15px 0; border-bottom:1px solid rgba(255,255,255,.07);
}
.nm-row:last-child { border-bottom:none; }
.nm-row-icon { font-size:28px; flex-shrink:0; margin-top:1px; }
.nm-row-body { flex:1; min-width:0; }
.nm-row-top { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:3px; }
.nm-row-title { font-size:14px; font-weight:700; color:#fff; }
.nm-row-desc { font-size:12px; color:rgba(255,255,255,.5); line-height:1.55; }

/* Toggle switch */
.tog-wrap { position:relative; width:44px; height:25px; flex-shrink:0; cursor:pointer; }
.tog-wrap input { opacity:0; width:0; height:0; position:absolute; }
.tog-track {
  position:absolute; inset:0; border-radius:13px;
  background:rgba(255,255,255,.16); transition:background .25s; cursor:pointer;
}
.tog-track::after {
  content:''; position:absolute; top:3px; left:3px;
  width:19px; height:19px; border-radius:50%; background:#fff;
  transition:transform .25s; box-shadow:0 1px 5px rgba(0,0,0,.4);
}
.tog-wrap input:checked + .tog-track { background:#22c55e; }
.tog-wrap input:checked + .tog-track::after { transform:translateX(19px); }

/* City area */
.nm-city-area { margin-top:10px; }
.nm-city-search {
  width:100%; padding:8px 13px;
  background:rgba(255,255,255,.09); border:1.5px solid rgba(255,255,255,.2);
  border-radius:10px; color:#fff; font-size:13px; outline:none;
  font-family:'Noto Sans Georgian','Inter',sans-serif; transition:border-color .2s;
}
.nm-city-search::placeholder { color:rgba(255,255,255,.38); }
.nm-city-search:focus { border-color:rgba(252,211,77,.55); background:rgba(255,255,255,.13); }
.nm-city-drop {
  max-height:150px; overflow-y:auto; margin-top:5px;
  background:rgba(3,20,36,.97); border:1px solid rgba(255,255,255,.14);
  border-radius:10px; display:none;
}
.nm-city-drop.open { display:block; }
.nm-city-opt {
  padding:9px 13px; font-size:13px; color:rgba(255,255,255,.78); cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,.05); transition:background .15s;
  font-family:'Noto Sans Georgian','Inter',sans-serif;
}
.nm-city-opt:hover { background:rgba(255,255,255,.11); }
.nm-city-opt:last-child { border-bottom:none; }
.nm-city-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; min-height:0; }
.nm-city-tag {
  display:flex; align-items:center; gap:5px;
  background:rgba(252,211,77,.14); border:1px solid rgba(252,211,77,.32);
  color:#FCD34D; font-size:11px; font-weight:700;
  padding:4px 10px; border-radius:50px; font-family:'Noto Sans Georgian','Inter',sans-serif;
}
.nm-city-rm { cursor:pointer; font-size:14px; line-height:1; opacity:.7; }
.nm-city-rm:hover { opacity:1; }

/* Footer note */
.nm-note {
  margin-top:18px; padding:12px 15px;
  background:rgba(255,255,255,.04); border-radius:10px;
  font-size:11px; color:rgba(255,255,255,.42); line-height:1.75;
  border:1px solid rgba(255,255,255,.07);
}
