/* Bottom nav - mobile only (glass like the header) */
.bottomNav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;

  /* като header-а: bg-white/70 */
  background: rgba(255, 255, 255, 0.70);

  /* glass ефект */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: center;
}

/* вътрешната решетка */
.bottomInner{
  width: min(1000px, 100%);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* БУТОНИТЕ – тук беше “убиецът” на ефекта */
.bnBtn{
  border: 1px solid rgba(15, 23, 42, 0.10);

  /* вместо плътно бяло */
  background: rgba(255, 255, 255, 0.55);

  /* да е леко прозрачна и самата карта */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 14px;
  padding: 10px 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}

.bnBtn small{font-weight:700;color:#475569}
.bnBtn:active{transform:scale(.98)}

/* On desktop: hide bottom nav */
@media (min-width:768px){
  .bottomNav{display:none}
}