.city-tabs-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* Для плавной прокрутки на iOS */
            margin-bottom: 20px;
        }
        
        .city-tabs {
            display: inline-flex;
            white-space: nowrap;
            padding-bottom: 10px; /* Для видимости скролла */
            border-bottom: 1px solid #ddd;
        }
        
        .city-tab {
            padding: 10px 35px;
            cursor: pointer;
            border: none;
            background: none;
            font-size: 16px;
            white-space: nowrap;
        }
        
        .city-tab.active {
            border-bottom: 2px solid #ff5500;
            color: #000;
            font-weight: bold;
        }
        
        .shop-list {
            display: none;
            margin-top: 20px;
        }
        
        .shop-list.active {
            display: block;
        }
        
        .shop-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .shop-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .shop-address {
            margin: 0 0 10px 0;
            font-weight: bold;
        }
        
        .shop-phone {
            color: #ff5500;
            text-decoration: none;
            font-weight: bold;
        }
        
        .shop-phone a {
            color: #ff5500;
            text-decoration: none;
            font-weight: bold;
        }
        
        .shop-phone:hover {
            text-decoration: underline;
        }
        
        /* Скрыть стандартный скроллбар */
        .city-tabs-container::-webkit-scrollbar {
            display: none;
        }