.floating-bar {
    position: fixed;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    pointer-events: auto;
}
.floating-inner{
    display:flex;
    gap:8px;
    align-items:center;
    padding:10px 14px;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(10,16,24,0.9), rgba(6,12,20,0.85));
    box-shadow:0 8px 40px rgba(3,7,18,0.6);
    border:1px solid rgba(255,255,255,0.03);
}
.floating-inner input{
    background:transparent;
    border:none;
    outline:none;
    color:inherit;
}
#city-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}
#city-modal .modal-content {
    border-radius: 12px;
    padding: 20px;
    width: 350px;
    max-height: 80%;
    overflow-y: auto;
    background: var(--panel-bg, #0a1018);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
#city-modal select {
    width: 100%;
    padding: 12px 14px;
    margin-top: 10px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #111a25;
    color: #fff;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border 0.2s, background 0.2s;
}
#city-modal select:hover {
    background: #16222f;
    border-color: #666;
}
#city-modal select:focus {
    border-color: #0af;
    background: #1b2a3b;
}
#city-modal option {
    background: #0a1018;
    color: #fff;
}
.store-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: #0a1018;
    border-radius: 10px;
    align-items: center;
}
.store-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.store-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.store-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.favorite {
    cursor: pointer;
    font-size: 18px;
}
.call {
    text-decoration: none;
    font-size: 18px;
}