/* Topbar */

.topbar {
    background-color: #0f172a;
    color: #e2e8f0;
    font-size: 0.92rem;
    padding: 0.45rem 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.topbar-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: #fbbf24;
    align-items: center;
    justify-content: center;
}

.topbar-link {
    color: #f8fafc;
    text-decoration: none;
}

.topbar-link:hover {
    text-decoration: underline;
}

.topbar-locations {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.topbar-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 600;
}

.topbar-location-link:hover,
.topbar-location-link:focus-visible {
    color: #f8fafc;
}

.topbar-location-icon {
    display: inline-flex;
    color: #f97316;
}

.topbar-location-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.topbar-separator {
    width: 1px;
    height: 18px;
    background: rgba(248, 250, 252, 0.35);
    display: inline-block;
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .topbar-item-phone,
    .topbar-item-email {
        display: none;
    }
    .topbar-locations {
        width: 100%;
        justify-content: center;
    }
}
