/* Same styling as v1 (liquid glass) */
:root {
  --lbn-bg: rgba(255,255,255,0.82);
  --lbn-border: rgba(0,0,0,0.08);
  --lbn-shadow: 0 10px 30px rgba(0,0,0,0.10);
  --lbn-radius: 18px;
  --lbn-icon: #111;
  --lbn-text: #111;
}

.lbn-wrap{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 9999;
  display: grid;
  grid-auto-flow: column;
  gap: 22px;
  align-items: center;
  background: var(--lbn-bg);
  border: 1px solid var(--lbn-border);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-radius: var(--lbn-radius);
  padding: 10px 18px;
  box-shadow: var(--lbn-shadow);
}

.lbn-item{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  gap:6px;
  padding:8px 12px;
  text-decoration:none;
  color:var(--lbn-text);
  font-size:12px;
  font-weight:600;
  line-height:1;
  border-radius: 14px;
  transition: transform .15s ease, background .15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lbn-item svg{ color: var(--lbn-icon); }
.lbn-item:hover{ background: rgba(0,0,0,0.05); transform: translateY(-2px); }
.lbn-item:active{ transform: translateY(0); }

.lbn-badge{
  position:absolute;
  margin-left: 22px;
  margin-top: -32px;
  font-size:11px;
  font-weight:700;
  background:#111;
  color:#fff;
  border-radius:999px;
  min-width:22px;
  height:22px;
  display:grid;
  place-items:center;
  padding:0 6px;
}

.lbn-search-overlay{
  position: fixed;
  inset:0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display:none;
  z-index:10000;
}
.lbn-search-overlay.is-open{ display:block; }

.lbn-search-card{
  position:absolute;
  left:50%;
  top:12%;
  transform: translateX(-50%);
  width:min(860px, calc(100% - 28px));
  background: var(--lbn-bg);
  border:1px solid var(--lbn-border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--lbn-shadow);
}

.lbn-close{
  position:absolute;
  right:12px;
  top:8px;
  background: transparent;
  border:none;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  color:#222;
}

.lbn-search{ width:100%; }
.lbn-field{
  display:flex;
  gap:8px;
  align-items:center;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--lbn-border);
  border-radius: 16px;
  padding: 10px 12px;
}
.lbn-input{
  flex:1;
  background: transparent;
  border:none;
  outline:none;
  font-size:16px;
  color:#111;
}
.lbn-btn{
  display:grid;
  place-items:center;
  border:none;
  background:#111;
  color:#fff;
  width:40px;
  height:40px;
  border-radius: 12px;
  cursor:pointer;
}
.lbn-tip{ margin:8px 6px 0; font-size:12px; opacity:.7; }

@media (max-width: 768px){
  .lbn-wrap{
    width: calc(100% - 18px);
    bottom: 10px;
    gap:16px;
    padding: 10px 12px;
  }
  .lbn-item{ font-size:11px; padding:8px 10px; }
  .lbn-badge{ margin-left: 18px; margin-top: -30px; }
}
