.city-switcher {
    position: relative;
    display: inline-block;
}

.city-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.city-switcher-toggle:hover {
    border-color: #2271b1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-label {
    color: #666;
    font-weight: 400;
}

.city-name {
    font-weight: 600;
    color: #2271b1;
}

.city-icon {
    color: #2271b1;
}

.chevron-icon {
    color: #666;
    transition: transform 0.3s ease;
}

.city-switcher-toggle.active .chevron-icon {
    transform: rotate(180deg);
}

.city-switcher-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.city-switcher-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-switcher-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.city-switcher-item:first-child {
    border-radius: 8px 8px 0 0;
}

.city-switcher-item:last-child {
    border-radius: 0 0 8px 8px;
}

.city-switcher-item:hover {
    background: #f5f5f5;
}

.city-switcher-item.active {
    background: #e8f0fe;
    color: #2271b1;
    font-weight: 600;
}

.check-icon {
    margin-left: auto;
    color: #2271b1;
}

.city-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.city-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.city-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.city-phone {
    margin-top: 10px;
}

.city-phone a {
    font-size: 1.2em;
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.city-contacts {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-info {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 10px;
}

.city-map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .city-switcher-dropdown {
        position: static;
        box-shadow: none;
        border: none;
    }
}