/* FLOATING WHATSAPP BUTTON */
.kbn-wa-direct-btn {
  position: fixed;
  bottom: calc(75px + var(--kbn-safe-bottom));
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* MOBILE BOTTOM DOCK */
.kbn-mobile-dock-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 26, 16, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1.5px solid var(--kbn-gold-base);
  padding: 8px 12px calc(8px + var(--kbn-safe-bottom));
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
}
@media (min-width: 860px) {
  .kbn-mobile-dock-bottom { display: none; }
}
.dock-btn {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  gap: 3px;
}
.dock-btn i { font-size: 1.1rem; color: var(--kbn-gold-light); }
.dock-cta {
  background: var(--kbn-gold-gradient);
  color: var(--kbn-bg-dark) !important;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--kbn-radius);
}