/* Premium Header Location Bar */
.header-location-bar {
    background: rgba(248, 250, 252, 0.95);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
    display: block;
    width: 100%;
}

.header-location-bar:hover {
    background: rgba(240, 247, 255, 0.98);
    box-shadow: inset 0 -2px 0 rgba(0, 98, 172, 0.1);
}

.location-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 500;
}

.location-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
}

.location-bar-pin {
    color: #0062ac;
    font-size: 0.9rem;
    animation: pinFloat 2s infinite ease-in-out;
}

@keyframes pinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.location-bar-label {
    color: #64748b;
    font-weight: 500;
}

.location-bar-city {
    color: #0f172a;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.location-bar-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.location-bar-badge.serviceable {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.location-bar-badge.unserviceable {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.location-bar-right {
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-location-bar:hover .location-bar-right {
    color: #0062ac;
    transform: translateX(2px);
}

.location-bar-change-action {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
}

.animate-chevron {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-location-bar:hover .animate-chevron {
    transform: rotate(180deg);
}

@media (max-width: 576px) {
    .header-location-bar {
        padding: 6px 0;
    }
    .location-bar-wrapper {
        font-size: 0.78rem;
    }
    .location-bar-label {
        display: none;
    }
    .location-bar-badge {
        font-size: 0.68rem;
        padding: 1px 6px;
    }
}
