/* =============================================
   NAV — Promo Bar, Navigation, Floating Chat Button
   ============================================= */

/* === PROMO BAR === */
.pb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--em);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wh);
}
.pb .pt {
  background: rgba(0, 0, 0, .2);
  padding: 2px 8px;
  border-radius: 5px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 12px;
}
.pb a { color: var(--gold-l); text-decoration: underline; font-weight: 800 }

/* === NAV === */
nav {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 247, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 164, 78, .1);
  transition: all .3s;
}
nav.sc { padding: 8px 32px; box-shadow: 0 2px 20px rgba(0, 0, 0, .06) }

.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer }
.logo-i {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  object-fit: contain;
}
.logo-t { font-family: var(--fd); font-size: 20px; color: var(--ch) }
.logo-t span { color: var(--em) }

.nl { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap }
.nl a {
  text-decoration: none;
  color: var(--sl);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.nl a:hover { color: var(--em); background: var(--em-s) }
.nl a.act { color: var(--em) }
.nl .sep { width: 1px; height: 16px; background: rgba(200, 164, 78, .2); margin: 0 2px }
.nl .cta { background: var(--em) !important; color: var(--wh) !important; padding: 8px 16px !important }
.nl .cta:hover { background: var(--em-d) !important }

.np {
  font-size: 12px;
  font-weight: 700;
  color: var(--em);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bur { display: none; background: none; border: none; cursor: pointer; color: var(--ch); padding: 4px }

/* === FLOATING CHAT BUTTON === */
.fchat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  background: var(--em);
  color: var(--wh);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(13, 107, 78, .35);
  transition: all .3s;
  text-decoration: none;
}
.fchat:hover {
  background: var(--em-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(13, 107, 78, .4);
}
.fchat-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
